博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Theano is a Python library: A CPU and GPU math expression compiler
阅读量:6140 次
发布时间:2019-06-21

本文共 4344 字,大约阅读时间需要 14 分钟。

Welcome

Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. Theano features:

  • tight integration with NumPy – Use numpy.ndarray in Theano-compiled functions.
  • transparent use of a GPU – Perform data-intensive calculations up to 140x faster than with CPU.(float32 only)
  • efficient symbolic differentiation – Theano does your derivatives for function with one or many inputs.
  • speed and stability optimizations – Get the right answer for log(1+x) even when x is really tiny.
  • dynamic C code generation – Evaluate expressions faster.
  • extensive unit-testing and self-verification – Detect and diagnose many types of mistake.

Theano has been powering large-scale computationally intensive scientific investigations since 2007.  But it is also approachable enough to be used in the classroom (IFT6266 at the University of Montreal).

News

  • We support if it is installed by the user.
  • Open Machine Learning Workshop 2014 .
  • Colin Raffel .
  • Ian Goodfellow did a .
  • Theano 0.6 was released. Everybody is encouraged to update.
  • New technical report on Theano: .
  • . We included a few fixes discovered while doing the Tutorial.

You can watch a quick (20 minute) introduction to Theano given as a talk at via streaming (or downloaded) video:

. James Bergstra, SciPy 2010, June 30, 2010.

Download

Theano is now , and can be installed via easy_install Theano, pip install Theano or by downloading and unpacking the tarball and typing python setup.py install.

Those interested in bleeding-edge features should obtain the latest development version, available via:

git clone git://github.com/Theano/Theano.git

You can then place the checkout directory on your $PYTHONPATH or use python setup.py develop to install a .pth into your site-packages directory, so that when you pull updates via Git, they will be automatically reflected the “installed” version. For more information about installation and configuration, see .

Status

     

Citing Theano

If you use Theano for academic research, you are highly encouraged (though not required) to cite the following two papers:

  • F. Bastien, P. Lamblin, R. Pascanu, J. Bergstra, I. Goodfellow, A. Bergeron, N. Bouchard, D. Warde-Farley and Y. Bengio. . NIPS 2012 deep learning workshop. ()
  • J. Bergstra, O. Breuleux, F. Bastien, P. Lamblin, R. Pascanu, G. Desjardins, J. Turian, D. Warde-Farley and Y. Bengio. . Proceedings of the Python for Scientific Computing Conference (SciPy) 2010. June 30 - July 3, Austin, TX ()

Theano is primarily developed by academics, and so citations matter a lot to us. As an added benefit, you increase Theano’s exposure and potential user (and developer) base, which is to the benefit of all users of Theano. Thanks in advance!

See our for details.

Documentation

Roughly in order of what you’ll want to check out:

  • – How to install Theano.
  • – What is Theano?
  • – Learn the basics.
  • – Theano’s functionality, module by module.
  • – A set of commonly asked questions.
  • – Guide to Theano’s graph optimizations.
  • – Learn to add a Type, Op, or graph optimization.
  • – How to contribute code to Theano.
  • – Primarily of interest to developers of Theano
  • – How to maintain Theano, LISA-specific tips, and more...
  • – How our release should work.
  • – What we took from other projects.
  • – link to other projects that implement new functionalities on top of Theano

You can download the latest , rather than reading it online.

Check out how Theano can be used for Machine Learning: .

Theano was featured at .

Community

“Thank YOU for correcting it so quickly. I wish all packages I worked with would have such an active maintenance - this is as good as it gets :-)”

(theano-users, Aug 2, 2010)

  • Register to if you want to be kept informed on important change on theano(low volume).
  • Register and post to if you want to talk to all Theano users.
  • Register and post to if you want to talk to the developers.
  • Register to if you want to receive an email for all changes to the GitHub repository.
  • Register to if you want to receive our daily buildbot email.
  • Ask/view questions/answers at (it’s like stack overflow for machine learning)
  • We use to keep track of issues (however, some old tickets can still be found on ).
  • Come visit us in Montreal! Most developers are students in the group at the .

转载于:https://www.cnblogs.com/daleloogn/p/4333417.html

你可能感兴趣的文章
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
登记申请汇总
查看>>
Office WORD如何取消开始工作右侧栏
查看>>
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
第一个应用程序HelloWorld
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Java并发编程73道面试题及答案
查看>>