Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.learn.tensorflow
Commits
80eb72a7
Commit
80eb72a7
authored
Dec 06, 2016
by
Tiago de Freitas Pereira
Browse files
Reorganize the modules
parent
ce46b951
Pipeline
#5710
failed with stages
in 1 minute and 37 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
MANIFEST.in
View file @
80eb72a7
include README.rst bootstrap-buildout.py buildout.cfg COPYING version.txt requirements.txt
recursive-include doc *.py *.rst
recursive-include bob *.wav *.hdf5
recursive-include bob *.wav *.hdf5
\ No newline at end of file
bob/learn/__init__.py
View file @
80eb72a7
...
...
@@ -2,12 +2,3 @@
from
pkgutil
import
extend_path
__path__
=
extend_path
(
__path__
,
__name__
)
from
bob.learn.tensorflow
import
analyzers
from
bob.learn.tensorflow
import
datashuffler
from
bob.learn.tensorflow
import
initialization
from
bob.learn.tensorflow
import
layers
from
bob.learn.tensorflow
import
loss
from
bob.learn.tensorflow
import
network
from
bob.learn.tensorflow
import
trainers
from
bob.learn.tensorflow
import
utils
bob/learn/tensorflow/__init__.py
View file @
80eb72a7
# gets sphinx autodoc done right - don't remove it
__all__
=
[
_
for
_
in
dir
()
if
not
_
.
startswith
(
'_'
)]
from
.
import
analyzers
from
.
import
datashuffler
from
.
import
initialization
from
.
import
layers
from
.
import
loss
from
.
import
network
from
.
import
trainers
from
.
import
utils
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment