Torch
文章平均质量分 86
sunflower_Yolanda
积极乐观的程序媛
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Torch安装
curl -s https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bashgit clone https://github.com/torch/distro.git ~/torch - -recursive cd ~/torch ./install.sh # and enter “yes”原创 2016-06-09 22:51:14 · 2761 阅读 · 0 评论 -
Torch初学(一)
Tensor多维矩阵,可以使用LongStorage --- creation of a 4D-tensor 4x5x6x2 z = torch.Tensor(4,5,6,2) --- for more dimensions, (here a 6D tensor) one can do: s = torch.LongStorage(6) s[1] = 4; s[2] = 5; s[3] =原创 2016-06-21 13:32:19 · 13245 阅读 · 0 评论 -
Torch学习(二)
Modules are the bricks used to build neural networks. Each are themselves neural networks, but can be combined with other networks using containers to create complex neural networksCriterions compute原创 2016-06-21 18:03:16 · 3000 阅读 · 0 评论
分享