默认是不对其求梯度的,除非声明为True 就是自动求导 Variable containing: 2 [torch.FloatTensor of size 1] Variable containing: 1 [torch.FloatTensor of size 1] Variable contain ...
分类:
其他好文 时间:
2018-01-21 11:10:03
阅读次数:
944
pycaffe简明文档 by ChrisZZ, imzhuo@foxmail.com 2018年01月18日19:00:56 说明 caffe的python接口没有官方说明文档,例如查看一个函数的用法,pytorch能查到所有的用法,而pycaffe则需要自行去查看源码。于是手动写了一个很粗糙的文档 ...
分类:
其他好文 时间:
2018-01-19 23:21:53
阅读次数:
403
http://blog.csdn.net/appleml/article/details/78664824 在理解CRF的时候费了一些功夫,将一些难以理解的地方稍微做了下标注,隔三差五看看加强记忆, 代码是pytorch文档上的example ...
分类:
其他好文 时间:
2018-01-13 20:46:32
阅读次数:
1030
学习资料: https://openreview.net/forum?id=r1Ue8Hcxg¬eId=rJ0FDEw4x "aussetg/nasnet.pytorch" "EN10/NASNet" "dhruvramani/Neural Architecture Search with R ...
分类:
其他好文 时间:
2018-01-13 19:02:24
阅读次数:
173
问题1:torch各个类型数据格式如何转换?数据类型在官方文档torch.Tensor中,有八种类型。 问题2:官方文档中sequence of tensors是什么意思?在torch.stack(sequence, dim=0, out=None). 是tensors构成的序列,可以为列表,也可以 ...
分类:
其他好文 时间:
2018-01-11 16:01:17
阅读次数:
1573
莫凡PyTorch视频教程 + https://morvanzhou.github.io/tutorials/machine learning/torch/ ...
分类:
其他好文 时间:
2018-01-06 16:06:02
阅读次数:
147
原文:http://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html 声明一个张量 x = torch.Tensor(5,3) 生成一个5*3的为初始化的张量 x = torch.rand(5,3) 生成一个5*3的全部元素随机的张量 ...
分类:
其他好文 时间:
2018-01-02 23:38:27
阅读次数:
303
参加了今年的ai challenger 的image caption比赛,最终很幸运的获得了第二名。这里小结一下。 Pytorch 越来越火了。。 前五名有三个pytoch, 两个tensorflow 关于哪个learning frame work 更适合图像nlp相关的应用 我觉得用户用脚投票使用... ...
分类:
其他好文 时间:
2017-12-23 17:08:34
阅读次数:
238
1、首先安装Anaconda(略) 2、在PyTorch的官网下http://pytorch.org/previous-versions/,找到对应于自己系统的安装命令,比如在mac(没有显卡,不需要Cuda),只需要在终端执行下面的命令就可以自动安装 3、安装完成后,在python的命令行下使用如 ...
分类:
其他好文 时间:
2017-12-19 19:40:37
阅读次数:
98
1. Tensor order for training images, [N, C, H, W] 2. Pytorch not returning gpu memory ( https://github.com/pytorch/pytorch/issues/1085 ) github replie ...
分类:
其他好文 时间:
2017-12-19 12:42:29
阅读次数:
262