Skip to content

Commit

Permalink
bug fixes with documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragav Venkatesan committed Dec 7, 2016
1 parent f1bc0df commit 4c8784b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
theano.config = Mock(device='gpu')
theano.sandbox.cuda.cuda_enabled = True
theano.sandbox.cuda.dnn = Mock(dnn_available=lambda: True)

import sys
sys.modules['theano.sandbox.cuda.blas'] = Mock(GpuCorrMM=None)

import shlex
Expand Down Expand Up @@ -270,4 +268,4 @@ def setup(app):
'https://media.readthedocs.org/css/readthedocs-doc-embed.css',
'_static/theme_overrides.css',
],
}
}
Empty file added pantry/__init__.py
Empty file.
4 changes: 2 additions & 2 deletions yann/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ def add_layer(self, type, verbose = 2, **kwargs):
* MaskedConvPool Layer.
* ...
* when ``type`` is ``'objective'``, I need to allow taking a loss between two layers to
be propagated. Right now ``origin`` has to be a classifier layer only. This needs to
change to be able to implement generality and mentor networks.
be propagated. Right now ``origin`` has to be a classifier layer only. This needs to
change to be able to implement generality and mentor networks.
* basically objective has to be a flag for an error function if origin is a tuple.
Expand Down

0 comments on commit 4c8784b

Please sign in to comment.