Awesome Torch

This blog from:

A curated list of awesome Torch tutorials, projects and communities.

Table of Contents

Tutorials

Model Zoo

Codes and related articles. (#) means authors of code and paper are different.

Recurrent Networks

Convolutional Networks

Reinforcement Learning

  • Deep Q-networkDeepMind-Atari-Deep-Q-Learner

    • Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G. Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane Legg, Demis Hassabis, Human-Level Control through Deep Reinforcement Learning, Nature, [Paper]
  • Deep Attention Recurrent Q-Network
    • (#) Ivan Sorokin, Alexey Seleznev, Mikhail Pavlov, Aleksandr Fedorov, Anastasiia Ignateva, Deep Attention Recurrent Q-Network, NIPS 2015, [Paper]
  • Grid World DQN using torch7
    • (#) Marc G. Bellemare, Georg Ostrovski, Arthur Guez, Philip S. Thomas, Rémi Munos, Increasing the Action Gap: New Operators for Reinforcement Learning, arXiv:1512.04860, [Paper]
  • Deep Q-Networks for Accelerating the Training of Deep Neural Networks
    • Jie Fu, Zichuan Lin, Miao Liu, Nicholas Leonard, Jiashi Feng, Tat-Seng Chua, Deep Q-Networks for Accelerating the Training of Deep Neural Networks, arXiv:1606.01467, [Paper]
  • ActorMimic
    • Emilio Parisotto, Jimmy Lei Ba, Ruslan Salakhutdinov, Actor-Mimic: Deep Multitask and Transfer Reinforcement Learning, ICLR 2016, [Paper]
  • MazeBase: a sandbox for learning from games
    • Sainbayar Sukhbaatar, Arthur Szlam, Gabriel Synnaeve, Soumith Chintala, Rob Fergus, MazeBase: A Sandbox for Learning from Games, arXiv:1511.07401, [Paper]
  • mario-ai
    • This project contains code to train a model that automatically plays the first level of Super Mario World using only raw pixels as the input (no hand-engineered features).The used technique is deep Q-learning, as described in the Atari paper (Summary), combined with a Spatial Transformer.
  • Deep Successor Reinforcement Learning (DSR)
    • Tejas D. Kulkarni, Ardavan Saeedi, Simanta Gautam, Samuel J. Gershman, Deep Successor Reinforcement Learning, arXiv:1606.02396, [Paper]
  • ViZDoom
    • ViZDoom allows developing AI bots that play Doom using only the visual information (the screen buffer). It is primarily intended for research in machine visual learning, and deep reinforcement learning, in particular.
  • MIXER - Sequence Level Training with Recurrent Neural Networks
    • Marc'Aurelio Ranzato, Sumit Chopra, Michael Auli, Wojciech Zaremba, Sequence Level Training with Recurrent Neural Networks, ICLR 2016, [Paper]
  • TorchQLearning
    • Implementation of a simple example of Q learning in Torch.
  • rltorch
    • This package is a Reinforcement Learning package written in LUA for Torch.
  • Opponent Modeling in Deep Reinforcement Learning
    • He He, Jordan Boyd-Graber, Kevin Kwok, Hal Daumé III, Opponent Modeling in Deep Reinforcement Learning, ICML 2016, [Paper]

### ETC

Libraries

Model related

  • nn : an easy and modular way to build and train simple or complex neural networks [Code] [Documentation]
  • dpnn : extensions to the nn lib, more modules [Code]
  • nnx : extension to the nn lib, experimental neural network modules and criterions [Code]
  • nninit : weight initialisation schemes [Code]
  • rnn : Recurrent Neural Network library [Code]
  • optim : A numeric optimization package for Torch [Code]
  • dp : a deep learning library designed for streamlining research and development [Code] [Documentation]
  • nngraph : provides graphical computation for nn library [Code] [Oxford Introduction]
  • nnlr : Add layer-wise learning rate schemes to Torch [Code]
  • optnet: Memory optimizations for torch neural networks. [Code]
  • autograd : Autograd automatically differentiates native Torch code. [Code]
  • torchnet: framework for torch which provides a set of abstractions aiming at encouraging code re-use as well as encouraging modular programming [Code] [Paper]

GPU related

  • distro-cl: An OpenCL distribution for Torch [Code]
  • cutorch : A CUDA backend for Torch [Code]
  • cudnn : Torch FFI bindings for NVIDIA CuDNN [Code]
  • fbcunn : Facebook's extensions to torch/cunn [Code] [Documentation]

IDE related

  • iTorch : IPython kernel for Torch with visualization and plotting [Code]
  • Lua Development Tools (LDT) : based on Eclipse [Code]
  • zbs-torch : A lightweight Lua-based IDE for Lua with code completion, syntax highlighting, live coding, remote debugger, and code analyzer [Code]

ETC

  • fblualib : Facebook libraries and utilities for Lua [Code]
  • loadcaffe : Load Caffe networks in Torch [Code]
  • Purdue e-lab lib : A collection of snippets and libraries [Code]
  • torch-android : Torch for Android [Code]
  • torch-models : Implementation of state-of-art models in Torch. [Code]
  • lutorpy : Lutorpy is a libray built for deep learning with torch in python. [Code]
  • CoreNLP.lua : Lua client for Stanford CoreNLP. [Code]
  • Torchlib: Data structures and libraries for Torch. [Code]
  • THFFmpeg: Torch bindings for FFmpeg (reading videos only) [Code]
  • tunnel: Data Driven Framework for Distributed Computing in Torch 7, [Code]
  • pytorch: Python wrappers for torch and lua, [Code]
  • lutorpy: Use torch in python for deep learning., [Code]
  • torch-pcl: Point Cloud Library (PCL) bindings for Torch, [Code]
  • Moses: A Lua utility-belt library for functional programming. It complements the built-in Lua table library, making easier operations on arrays, lists, collections. [Cpde]

Links

Awesome Torch的更多相关文章

  1. Torch Problems: require some packages doesn't work

    I've recently got a problem. require 'cutorch' doesn't work. But it was ok yesterday, although I hav ...

  2. Torch学习笔记1--Torch简介

    Torch是什么 Torch是一个由Lua语言开发的深度学习框架,目前支持Mac OS X 和Ubuntu 12及以上,官网 ,github地址. 具有如下特点: 交互式开发工具 可视化式的工具 第三 ...

  3. 深度学习框架 Torch 7 问题笔记

    深度学习框架 Torch 7 问题笔记 1. 尝试第一个 CNN 的 torch版本, 代码如下: -- We now have 5 steps left to do in training our ...

  4. Torch 网络层 参数的初始化问题

    Torch 网络层 参数的初始化问题 参考链接: https://github.com/Kaixhin/nninit 从 Torch 中自带的包,可以看到:https://github.com/tor ...

  5. Torch 7 load saved model failed, 加载保存的模型失败

    Torch 7 load saved model failed, 加载保存的模型失败: 可以尝试下面的解决方案:  

  6. Torch 日志文件的保存 logroll

    Torch 日志文件的保存 logroll 怎样将 Torch 在终端显示的信息,保存到 log 文件中 ?   现在介绍一种方法:利用 logroll 的方式.  参考 https://github ...

  7. torch 入门

    torch 入门1.安装环境我的环境mac book pro 集成显卡 Intel Iris不能用 cunn 模块,因为显卡不支持 CUDA2.安装步骤: 官方文档 (1).git clone htt ...

  8. 对torch的一点感想

    torch是一个基于LuaJIT的科学计算框架,知乎上有个人回答说torch比较适合科研用途, torch与matlab的很多函数很相似

  9. torch基本操作

    1.在terminal中th进入troch,th+文件名.lua运行文件.进入torch之后,dofile+"文件名.lua"运行文件

  10. torch基本命令

    命令行输入th进入torch框架 命令行输入th + lua文件表示用torch执行lua文件

随机推荐

  1. Mysql事务及锁

    一.事务(Transaction)及其ACID属性 事务是由一组SQL语句组成的逻辑处理单元,事务具有以下4个属性,通常简称为事务的ACID属性:1.原子性(Atomicity):事务是一个原子操作单 ...

  2. html5-新元素新布局模板-完善中

    <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8&qu ...

  3. uvalive 3126 Taxi Cab Scheme

    题意: 有m个人要坐出租车,每个人给出出发时间,出发地点和目的地(以二维坐标表示),两个地点之间所花的时间计算方式是两点之间的哈密顿距离.现在需要排遣车出去,一辆车每次只能装一个人,如果一辆车在装完一 ...

  4. CodeReview实践与总结

    CodeReview 是大型软件工程中公认的必不可少的保证工程质量的重要手段之一.但凡正规软件作战军团都是非常重视 CodeReview 的作用和意义的.那么,如何做好 CodeReview 呢?这里 ...

  5. 对SQLite 数据库的一点点了解

    SQLite,是一款轻型的数据库,是遵守ACID的关系型数据库管理系统,它包含在一个相对小的C库中.它的设计目标是嵌入式的,它占用资源非常低,在嵌入式设备中,可能只需要几百k的内存就够了. SQLit ...

  6. 【转】SQLyog SSH 密钥登陆认证提示: No supported authentication methods available 解决方法

    问题背景: 问题原因: SQLyog不支持非标准的的私钥格式 解决方案: 使用puttyGen重新导入原来的私钥,然后重新保存成PPK证书文件,最后用SQLyog加载该PPK文件即可. 效果截图: 原 ...

  7. 20165215 2017-2018-2 《Java程序设计》第2周学习总结

    20165215 2017-2018-2 <Java程序设计>第2周学习总结 教材学习内容总结 chapter2 逻辑类型boolea只能赋值true或false Java没有无符号整数类 ...

  8. tornado 初识

    Tornado 是一个Python Web框架和异步网络库,最初是在FriendFeed上开发的. 通过使用非阻塞网络I / O,Tornado可以扩展到数万个开放连接,使其成为长轮询, WebSoc ...

  9. [转载]localStorage使用总结

    一.什么是localStorage.sessionStorage 在HTML5中,新加入了一个localStorage特性,这个特性主要是用来作为本地存储来使用的,解决了cookie存储空间不足的问题 ...

  10. MyBatis中的if写法

    <if test="latn_id !=null and latn_id !='' and latn_id !='100'"> and latnid=#{latn_id ...