
pytorch
文章平均质量分 92
sunshinefcx
主要从事单片机开发、机器人、SLAM、计算机视觉等方向
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Jetson tx2 上源码安装 pytorch1.0.0(真. 血泪史)
Jetson tx2 上源码安装 pytorch1.0.0(真. 血泪史)在安装之前说明以下:重点一:平台Jetson TX2平台版本:Jetpack 3.3, cuda 9.0.252, cudnn7.6.5, TensorRT4.0.2, python2.7, python3.5系统内核:tegra-ubuntu 4.4.38-tegra aarch64, ubuntu 16.04...原创 2020-01-18 22:31:49 · 2993 阅读 · 3 评论 -
如何下载自己想要版本的pytorch
如何下载自己想要版本的pytorchpytorch就不过多的介绍了,想要安装pytorch的同胞们应该都知道这是个啥,但是我们在ubuntu上想使用pytorch的源码安装某个版本的pytorch,应该怎么办呢?首先贴出pytorch的github链接 http://github.com/pytorch/pytorch 打开后可以发现是下面这样的:可以发现现在所在的分支是mas...原创 2020-01-14 20:26:15 · 2796 阅读 · 0 评论 -
PyTorch 加载&使用预训练模型
学习啦这篇文章,写的还是很全面滴https://zhuanlan.zhihu.com/p/25980324转载 2019-01-15 10:56:43 · 6516 阅读 · 0 评论 -
pytorch 查看tensor中的数据类型
import torchx=torch.Tensor([1,2])print('x: ',x)print('type(x): ',type(x))print('x.dtype: ',x.dtype) # x的具体类型y=x.int()print('y: ',y)print('type(y): ',type(y))print('y.dtype: ',y....原创 2019-05-05 11:22:02 · 15358 阅读 · 0 评论 -
pytorch 中 反卷积(转置卷积) 输入特征图尺寸计算
转载自:https://zhuanlan.zhihu.com/p/39240159pytorch中反卷积的函数为:class torch.nn.ConvTranspose2d(in_channels, out_channels, kernel_size, stride=1, padding=0, ...转载 2019-04-25 17:35:52 · 4133 阅读 · 2 评论