Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
47542554
提交
47542554
authored
6月 17, 2011
作者:
Pascal Lamblin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix warnings and errors during documentation generation.
上级
400775e5
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
24 行增加
和
22 行删除
+24
-22
type.txt
doc/extending/type.txt
+5
-4
index.txt
doc/index.txt
+1
-1
how_to_release.txt
doc/internal/how_to_release.txt
+5
-4
python.txt
doc/internal/python.txt
+1
-1
scan.txt
doc/library/scan.txt
+1
-2
shape_info.txt
doc/tutorial/shape_info.txt
+11
-10
没有找到文件。
doc/extending/type.txt
浏览文件 @
47542554
...
@@ -32,10 +32,11 @@ default values.
...
@@ -32,10 +32,11 @@ default values.
reference to ``value`` (i.e. casting prohibited).
reference to ``value`` (i.e. casting prohibited).
If ``strict`` is False, then casting may happen, but downcasting should
If ``strict`` is False, then casting may happen, but downcasting should
only be used in two situations:
only be used in two situations:
* if ``allow_downcast`` is True
* if ``allow_downcast`` is ``None`` and the default behavior for this
* if ``allow_downcast`` is True
type allows downcasting for the given ``value`` (this behavior is
* if ``allow_downcast`` is ``None`` and the default behavior for this
type-dependent, you may decide what your own type does by default)
type allows downcasting for the given ``value`` (this behavior is
type-dependent, you may decide what your own type does by default)
We need to define ``filter`` with three arguments. The second argument
We need to define ``filter`` with three arguments. The second argument
must be called ``strict`` (Theano often calls it by keyword) and must
must be called ``strict`` (Theano often calls it by keyword) and must
...
...
doc/index.txt
浏览文件 @
47542554
...
@@ -88,7 +88,7 @@ You can download the latest `PDF documentation <http://deeplearning.net/software
...
@@ -88,7 +88,7 @@ You can download the latest `PDF documentation <http://deeplearning.net/software
Check out how Theano can be used for Machine Learning: `Deep Learning Tutorials <http://www.deeplearning.net/tutorial>`_.
Check out how Theano can be used for Machine Learning: `Deep Learning Tutorials <http://www.deeplearning.net/tutorial>`_.
Theano was featured at `SciPy 2010 <http://www.iro.umontreal.ca/~lisa/publications2/index.php/publications/show/461>`_.
Theano was featured at `SciPy 2010 <http://www.iro.umontreal.ca/~lisa/publications2/index.php/publications/show/461>`_
_
.
Community
Community
=========
=========
...
...
doc/internal/how_to_release.txt
浏览文件 @
47542554
...
@@ -42,9 +42,8 @@ Tag the release
...
@@ -42,9 +42,8 @@ Tag the release
===============
===============
You will need to commit the previous changes, tag the resulting version, and
You will need to commit the previous changes, tag the resulting version, and
push that into the original repository::
push that into the original repository. The syntax is something like the
following::
Tag the release. The syntax is something like the following::
hg commit -m"modifications for 0.X release" setup.py doc/conf.py NEWS.txt
hg commit -m"modifications for 0.X release" setup.py doc/conf.py NEWS.txt
hg tag 0.X
hg tag 0.X
...
@@ -89,9 +88,11 @@ Account jaberg is listed as submitter.
...
@@ -89,9 +88,11 @@ Account jaberg is listed as submitter.
1. log in as jaberg to mloss
1. log in as jaberg to mloss
2. search for theano and click the logo
2. search for theano and click the logo
3. press 'update this project' on the left and change
3. press 'update this project' on the left and change
- the version number
- the version number
- the download link
- the download link
- the description of what has changed
- the description of what has changed
4. press save
4. press save
Make sure the "what's changed" text isn't too long because it will show up on
Make sure the "what's changed" text isn't too long because it will show up on
...
...
doc/internal/python.txt
浏览文件 @
47542554
.. _python:
.. _python
_booster
:
================
================
Python booster
Python booster
...
...
doc/library/scan.txt
浏览文件 @
47542554
...
@@ -350,12 +350,11 @@ will always be ``12``.
...
@@ -350,12 +350,11 @@ will always be ``12``.
Reference
Reference
=========
=========
.. automodule:: theano.scan
.. automodule:: theano.scan
_module
.. autofunction:: theano.map
.. autofunction:: theano.map
.. autofunction:: theano.reduce
.. autofunction:: theano.reduce
.. autofunction:: theano.foldl
.. autofunction:: theano.foldl
.. autofunction:: theano.foldr
.. autofunction:: theano.foldr
.. autofunction:: theano.scan
.. autofunction:: theano.scan
:noindex:
doc/tutorial/shape_info.txt
浏览文件 @
47542554
...
@@ -19,17 +19,18 @@ Currently shape informations are used for 2 things in Theano:
...
@@ -19,17 +19,18 @@ Currently shape informations are used for 2 things in Theano:
method.
method.
ex:
ex:
.. code-block:: python
import theano
.. code-block:: python
x = theano.tensor.matrix('x')
f = theano.function([x], (x**2).shape)
import theano
theano.printing.debugprint(f)
x = theano.tensor.matrix('x')
#MakeVector [@43860304] '' 2
f = theano.function([x], (x**2).shape)
# |Shape_i{0} [@43424912] '' 1
theano.printing.debugprint(f)
# | |x [@43423568]
#MakeVector [@43860304] '' 2
# |Shape_i{1} [@43797968] '' 0
# |Shape_i{0} [@43424912] '' 1
# | |x [@43423568]
# | |x [@43423568]
# |Shape_i{1} [@43797968] '' 0
# | |x [@43423568]
The output of this compiled function do not contain any multiplication
The output of this compiled function do not contain any multiplication
or power. Theano has removed them to compute directly the shape of the
or power. Theano has removed them to compute directly the shape of the
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论