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 Federated For Windows

    [1]windows环境下打开federated (1)关闭.命令:mysql> net stop mysql (2)添加federated字段.在my.ini文件中添加一个字段,注意位于[my ...

  2. c++学习笔记(八)- map

    map<key, value>是按key排好序的,key不可以重复. 1. map.lower_bound():按key查找,如果查找的key存在,返回该位置,如果不存在返回大于所查找值的 ...

  3. 转:【专题五】TCP编程

    前言 前面专题的例子都是基于应用层上的HTTP协议的介绍, 现在本专题来介绍下传输层协议——TCP协议,主要介绍下TCP协议的工作过程和基于TCP协议的一个简单的通信程序,下面就开始本专题的正文了. ...

  4. avr定时器做的正弦波

    2010-04-19 16:53:00 实物照片如下 RC电路的电阻为1K与10K时的波形分别如下 仿真图片如下: 程序如下: #include <iom16v.h> #include & ...

  5. 【gulp-sass】本地搭建sass开发环境

    首先去官网下载一下nodejs. 然后安装gulp: 选择一个目录执行命令行:npm init,一直回车生成package.json文件 再执行命令:npm install gulp --save-d ...

  6. 基于rsync的lsyncd自动同步配置

    环境部署 源机:192.168.31.140 目标机:192.168.31.130 源机配置 基于rsync的lsyncd 自动同步,rsync的配置省略 安装lsyncd rpm -ivh lsyn ...

  7. php 把秒数转换为时长(h:i:s格式)

    /** * 把秒数转换为时分秒的格式 * @param Int $times 时间,单位 秒 * @return String */ function secToTime($times){ $resu ...

  8. UUID实现之一twitter的分布式自增IDsnowflake算法

    Twitter的分布式自增ID算法snowflake (Java版)   概述 分布式系统中,有一些需要使用全局唯一ID的场景,这种时候为了防止ID冲突可以使用36位的UUID,但是UUID有一些缺点 ...

  9. spring使用@Value标签读取.properties文件的中文乱码问题的解决

    最近测试某个老系统的时候,启动的时候发@Value注入的中文是乱码,文件使用GBK/UTF-8的时候均会出现乱码问题,但是spring配置文件里面注入的占位符并没有这个问题,bean文件设置了file ...

  10. Java线程池详解,看这篇就够了!

    构造一个线程池为什么需要几个参数?如果避免线程池出现OOM?Runnable和Callable的区别是什么?本文将对这些问题一一解答,同时还将给出使用线程池的常见场景和代码片段. 基础知识 Execu ...