Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.learn.tensorflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.learn.tensorflow
Commits
0721c731
Commit
0721c731
authored
8 years ago
by
Guillaume HEUSCH
Browse files
Options
Downloads
Patches
Plain Diff
[layer] added Conv2DTranspose and FlatTo2D to __init__
parent
680dc332
No related branches found
No related tags found
1 merge request
!8
Gan
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/learn/tensorflow/layers/__init__.py
+4
-0
4 additions, 0 deletions
bob/learn/tensorflow/layers/__init__.py
with
4 additions
and
0 deletions
bob/learn/tensorflow/layers/__init__.py
+
4
−
0
View file @
0721c731
...
...
@@ -8,6 +8,8 @@ from .AveragePooling import AveragePooling
from
.Dropout
import
Dropout
from
.InputLayer
import
InputLayer
from
.FlatTo2D
import
FlatTo2D
from
.Conv2DTranspose
import
Conv2DTranspose
# gets sphinx autodoc done right - don't remove it
def
__appropriate__
(
*
args
):
...
...
@@ -32,6 +34,8 @@ __appropriate__(
AveragePooling
,
Dropout
,
InputLayer
,
FlatTo2D
,
Conv2DTranspose
,
)
__all__
=
[
_
for
_
in
dir
()
if
not
_
.
startswith
(
'
_
'
)]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment