Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
73b63247
Commit
73b63247
authored
Sep 14, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix build
parent
5567ebe1
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
14 deletions
+21
-14
tensorpack/callbacks/__init__.py
tensorpack/callbacks/__init__.py
+3
-2
tensorpack/dataflow/__init__.py
tensorpack/dataflow/__init__.py
+3
-2
tensorpack/dataflow/dataset/__init__.py
tensorpack/dataflow/dataset/__init__.py
+3
-2
tensorpack/dataflow/imgaug/__init__.py
tensorpack/dataflow/imgaug/__init__.py
+3
-2
tensorpack/graph_builder/__init__.py
tensorpack/graph_builder/__init__.py
+3
-2
tensorpack/models/__init__.py
tensorpack/models/__init__.py
+3
-2
tensorpack/tfutils/__init__.py
tensorpack/tfutils/__init__.py
+3
-2
No files found.
tensorpack/callbacks/__init__.py
View file @
73b63247
...
...
@@ -14,6 +14,7 @@ def _global_import(name):
lst
=
p
.
__all__
if
'__all__'
in
dir
(
p
)
else
dir
(
p
)
del
globals
()[
name
]
for
k
in
lst
:
if
not
k
.
startswith
(
'__'
):
globals
()[
k
]
=
p
.
__dict__
[
k
]
__all__
.
append
(
k
)
...
...
tensorpack/dataflow/__init__.py
View file @
73b63247
...
...
@@ -15,6 +15,7 @@ def _global_import(name):
lst
=
p
.
__all__
if
'__all__'
in
dir
(
p
)
else
dir
(
p
)
del
globals
()[
name
]
for
k
in
lst
:
if
not
k
.
startswith
(
'__'
):
globals
()[
k
]
=
p
.
__dict__
[
k
]
__all__
.
append
(
k
)
...
...
tensorpack/dataflow/dataset/__init__.py
View file @
73b63247
...
...
@@ -14,6 +14,7 @@ def global_import(name):
lst
=
p
.
__all__
if
'__all__'
in
dir
(
p
)
else
dir
(
p
)
del
globals
()[
name
]
for
k
in
lst
:
if
not
k
.
startswith
(
'__'
):
globals
()[
k
]
=
p
.
__dict__
[
k
]
__all__
.
append
(
k
)
...
...
tensorpack/dataflow/imgaug/__init__.py
View file @
73b63247
...
...
@@ -13,6 +13,7 @@ def global_import(name):
lst
=
p
.
__all__
if
'__all__'
in
dir
(
p
)
else
dir
(
p
)
del
globals
()[
name
]
for
k
in
lst
:
if
not
k
.
startswith
(
'__'
):
globals
()[
k
]
=
p
.
__dict__
[
k
]
__all__
.
append
(
k
)
...
...
tensorpack/graph_builder/__init__.py
View file @
73b63247
...
...
@@ -14,6 +14,7 @@ def global_import(name):
lst
=
p
.
__all__
if
'__all__'
in
dir
(
p
)
else
[]
del
globals
()[
name
]
for
k
in
lst
:
if
not
k
.
startswith
(
'__'
):
globals
()[
k
]
=
p
.
__dict__
[
k
]
__all__
.
append
(
k
)
...
...
tensorpack/models/__init__.py
View file @
73b63247
...
...
@@ -16,6 +16,7 @@ def _global_import(name):
lst
=
p
.
__all__
if
'__all__'
in
dir
(
p
)
else
dir
(
p
)
del
globals
()[
name
]
for
k
in
lst
:
if
not
k
.
startswith
(
'__'
):
globals
()[
k
]
=
p
.
__dict__
[
k
]
__all__
.
append
(
k
)
...
...
tensorpack/tfutils/__init__.py
View file @
73b63247
...
...
@@ -12,6 +12,7 @@ def _global_import(name):
p
=
__import__
(
name
,
globals
(),
None
,
level
=
1
)
lst
=
p
.
__all__
if
'__all__'
in
dir
(
p
)
else
dir
(
p
)
for
k
in
lst
:
if
not
k
.
startswith
(
'__'
):
globals
()[
k
]
=
p
.
__dict__
[
k
]
__all__
.
append
(
k
)
...
...
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