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
28f36c44
Commit
28f36c44
authored
Jan 30, 2018
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug on augmentors; bind=False in send_dataflow_zmq
parent
c7e8ba78
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
tensorpack/dataflow/image.py
tensorpack/dataflow/image.py
+1
-1
tensorpack/dataflow/remote.py
tensorpack/dataflow/remote.py
+6
-2
No files found.
tensorpack/dataflow/image.py
View file @
28f36c44
...
...
@@ -199,8 +199,8 @@ class AugmentImageComponents(MapData):
copy_func
=
copy_mod
.
deepcopy
if
copy
else
lambda
x
:
x
# noqa
with
exception_handler
.
catch
():
major_image
=
index
[
0
]
# image to be used to get params. TODO better design?
check_dtype
(
major_image
)
im
=
copy_func
(
dp
[
major_image
])
check_dtype
(
im
)
im
,
prms
=
self
.
augs
.
_augment_return_params
(
im
)
dp
[
major_image
]
=
im
for
idx
in
index
[
1
:]:
...
...
tensorpack/dataflow/remote.py
View file @
28f36c44
...
...
@@ -20,7 +20,7 @@ else:
__all__
=
[
'send_dataflow_zmq'
,
'RemoteDataZMQ'
]
def
send_dataflow_zmq
(
df
,
addr
,
hwm
=
50
,
format
=
None
):
def
send_dataflow_zmq
(
df
,
addr
,
hwm
=
50
,
format
=
None
,
bind
=
False
):
"""
Run DataFlow and send data to a ZMQ socket addr.
It will __connect__ to this addr,
...
...
@@ -34,6 +34,7 @@ def send_dataflow_zmq(df, addr, hwm=50, format=None):
format (str): The serialization format.
Default format would use :mod:`tensorpack.utils.serialize`.
An alternate format is 'zmq_op', used by https://github.com/tensorpack/zmq_ops.
bind (bool): whether to bind or connect to the endpoint.
"""
assert
format
in
[
None
,
'zmq_op'
]
if
format
is
None
:
...
...
@@ -45,6 +46,9 @@ def send_dataflow_zmq(df, addr, hwm=50, format=None):
ctx
=
zmq
.
Context
()
socket
=
ctx
.
socket
(
zmq
.
PUSH
)
socket
.
set_hwm
(
hwm
)
if
bind
:
socket
.
bind
(
addr
)
else
:
socket
.
connect
(
addr
)
try
:
df
.
reset_state
()
...
...
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