- 27 10月, 2015 20 次提交
-
-
由 AdeB 提交于
-
由 AdeB 提交于
-
由 AdeB 提交于
-
由 AdeB 提交于
-
由 AdeB 提交于
-
由 Xavier Bouthillier 提交于
```from .nnet import *``` in ```theano/tensor/nnet/__init__.py``` is causing problems because ```nnet``` imports ```theano.tensor.opt``` as ```opt``` which takes namespace place of ```theano.tensor.nnet.opt```. To fix this problem, I replace ```from .nnet import *``` by ```from .nnet import (every class/functions/attributes)``` Added the following code at the end of the file ```theano/tensor/nnet/nnet.py``` ```python print locals().keys() ``` And then copied the output ```bash $ python theano/tensor/nnet/nnet.py ['keys', 'of', 'locals', ...] ``` Removed last line of code in ```theano/tensor/nnet/nnet.py``` and added following code under the imports ```python keys = ['keys', 'of', 'locals', ...] # pasted the copied output from previous step local_keys = locals().keys() keep = filter(lambda a: a not in local_keys and a[0] != '_', keys) print sorted(keep) ``` And again ```bash $ python theano/tensor/nnet/nnet.py ['keys', 'of', 'locals', 'minus', 'imports', 'and', 'private'...] ``` Those are the class/function names to be added to ```theano/tensor/nnet/__init__.py```. ```python from .nnet import ( keys, of, locals, minus, imports, and, private, ...) ``` -
由 AdeB 提交于
-
由 AdeB 提交于
-
由 AdeB 提交于
-
由 AdeB 提交于
-
由 Frédéric Bastien 提交于
Fix doc
-
由 Pascal Lamblin 提交于
[ENH,REGRESSION FIX] Fix regression that introduce extra node related to infer shape
-
由 Pascal Lamblin 提交于
[WIP] CpuCorrMM closes #3026 - redux
-
由 Frederic 提交于
-
由 Arnaud Bergeron 提交于
-
由 Arnaud Bergeron 提交于
-
由 Arnaud Bergeron 提交于
-
由 Arnaud Bergeron 提交于
-
由 Pascal Lamblin 提交于
New conv2d interface (work in progress)
-
由 Jesse Livezey 提交于
-
- 26 10月, 2015 3 次提交
-
-
由 Frederic 提交于
-
由 Frederic 提交于
-
由 Nicolas Ballas 提交于
-
- 24 10月, 2015 1 次提交
-
-
由 Frederic 提交于
-
- 23 10月, 2015 13 次提交
-
-
由 Pascal Lamblin 提交于
TH-2695 Accept symbolic `reps` in `tensor.tile`
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
由 Saizheng Zhang 提交于
-
- 22 10月, 2015 2 次提交
-
-
由 Nicolas Ballas 提交于
-
由 Nicolas Ballas 提交于
-
- 21 10月, 2015 1 次提交
-
-
由 Frédéric Bastien 提交于
Scan inplace opt
-