- 25 10月, 2012 1 次提交
-
-
由 Pascal Lamblin 提交于
-
- 18 10月, 2012 1 次提交
-
-
由 Pascal Lamblin 提交于
In order to avoid expanding memory usage and computations in the part of the graph that computes gradients, I propose the following conventions, that re-instate some of the constraint that existed before on the dtype of gradients: - When calling some_op.grad(inputs, output_grads), each variable in the "output_grads" list, if it is an actual numeric variable (and not, for instance, DisconnectedType or NullType), should have the same dtype as the corresponding output variable. - Moreover, if one of the output variables is of a discrete dtype (int or uint), then the corresponding output gradient (if not a special case like NullType) should be zeros. This is implemented in theano.grad, so the Op's grad method does not have to be changed, but now it can rely again on the fact that, if an output gradient has a dtype, that dtype will be the same as the corresponding output variable.
-
- 17 10月, 2012 4 次提交
-
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
-
由 Pascal Lamblin 提交于
-
- 16 10月, 2012 1 次提交
-
-
由 lamblin 提交于
Fix clip grad
-
- 12 10月, 2012 29 次提交
-
-
由 Ian Goodfellow 提交于
-
由 Ian Goodfellow 提交于
-
由 James Bergstra 提交于
MPI Ops
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
One of the mpi tests needs to run a file in the theano file system. It is now pointed to that file through the theano.__file__ attribute.
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
mpi_cmp -> mpi_cmps fix incorrect test `y = x + x` -> `y = x + 1` to match expected output remove old comments
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
(these functions moved in a rebase)
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
I'm currently using os.popen. I tried using subprocess.Popen without success. Would appreciate tips.
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
-
由 Matthew Rocklin 提交于
Also removed infer_shape for now
-
由 Matthew Rocklin 提交于
I suspect that this is necessary to hold as an output
-
由 Matthew Rocklin 提交于
-
- 10 10月, 2012 4 次提交
-
-
由 lamblin 提交于
Revert "Merge pull request #995 from pascanur/fix_grad_scan_dtype"
-
由 Pascal Lamblin 提交于
This reverts commit 4ecb5a04, reversing changes made to 8b088c69.
-
由 lamblin 提交于
Fix grad scan dtype
-
由 Olivier Delalleau 提交于
Remove debug line following code review.
-