
Torch
Torch
_沧海桑田_
ACL/NAACL/EMNLP/COLING审稿人,
MOD大侠梦/MOD禾下霸业作者。
github.com/guotong1988
展开
-
Ubuntu+GPU上Debug Torch项目fairseq
1,下载并启动zbstudio$ git clone https://github.com/soumith/zbs-torch.git $ cd zbs-torch $ ./zbstudio.sh 2,安装Torch http://torch.ch/docs/getting-started.html3,安装ncclgit clone https://github.com/NVIDIA/n原创 2017-06-03 20:15:37 · 1981 阅读 · 2 评论 -
Torch CMulTable 和 CAddTable 实例
th> a = torch.ones(5)*2th> a2 2 2 2 2th> b = torch.ones(5)*3th> b3 3 3 3 3th> nn.CMulTable():forward({a,b})6 6 6 6 6th> nn.CAddTable():forward({a,b})5 5 5 5 5原创 2017-06-04 09:35:46 · 2151 阅读 · 0 评论 -
Torch View 实例
th> a = torch.ones(5,2)th> a1 1 1 1 1 1 1 1 1 1th> b = nn.View(2,-1)(a)th> b1 1 1 1 1 1 1 1 1 1th> a = torch.ones(12,2)th> b = nn.View(4,3,2)(a)th> b(1,.,.) = 1 1 1原创 2017-06-04 09:59:25 · 4335 阅读 · 1 评论 -
Torch SpatialZeroPadding 实例
th> a = torch.ones(3,2,2)th> b = nn.SpatialZeroPadding(0, 0, 1)(a)th> b(1,.,.) = 0 0 1 1 1 1(2,.,.) = 0 0 1 1 1 1(3,.,.) = 0 0 1 1 1 1th> b = nn.SpatialZeroPadd原创 2017-06-04 10:30:44 · 1025 阅读 · 0 评论 -
Torch SpatialAveragePooling 实例
th> a = torch.ones(4,3,2)th> b = nn.SpatialAveragePooling(2,2)(a)th> b(1,.,.) = 1 1(2,.,.) = 1 1(3,.,.) = 1 1(4,.,.) = 1 1th> a = torch.ones(3,2,2)th> b = nn.SpatialAvera原创 2017-06-04 10:35:03 · 1967 阅读 · 0 评论 -
Torch nn.MM 实例
https://github.com/torch/nn/blob/master/doc/simple.md#nn.MMth> a = torch.ones(1,2,3)th> b = torch.ones(1,3,4)th> nn.MM()({a,b})(1,.,.) = 3 3 3 3 3 3 3 3th> a = torch.ones(1,2) th> b = t原创 2017-06-14 21:54:34 · 1330 阅读 · 0 评论 -
Torch API
https://github.com/torch/nn/tree/master/doc https://github.com/torch/torch7/tree/master/doc原创 2017-06-14 22:03:02 · 1479 阅读 · 0 评论 -
torch 的 forward 和 backward
Criterions有其forward和backward函数 https://github.com/torch/nn/blob/master/doc/criterion.md Module也有其forward和backward函数 https://github.com/torch/nn/blob/master/doc/module.mdModule的forward函数最简单,就是输入input原创 2018-01-01 11:31:17 · 5525 阅读 · 0 评论