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
a6745419
You need to sign in or sign up before continuing.
Commit
a6745419
authored
Mar 29, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make augmentors copy=True by default. Also add shallow copy to MapDataComponents (#203, #207)
parent
20338134
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
32 additions
and
23 deletions
+32
-23
docs/tutorial/index.rst
docs/tutorial/index.rst
+2
-1
examples/HED/hed.py
examples/HED/hed.py
+2
-2
examples/Inception/inception-bn.py
examples/Inception/inception-bn.py
+1
-1
examples/Inception/inceptionv3.py
examples/Inception/inceptionv3.py
+1
-1
examples/ResNet/imagenet-resnet.py
examples/ResNet/imagenet-resnet.py
+1
-1
tensorpack/dataflow/common.py
tensorpack/dataflow/common.py
+9
-0
tensorpack/dataflow/dataset/bsds500.py
tensorpack/dataflow/dataset/bsds500.py
+1
-2
tensorpack/dataflow/dataset/cifar.py
tensorpack/dataflow/dataset/cifar.py
+1
-2
tensorpack/dataflow/dataset/svhn.py
tensorpack/dataflow/dataset/svhn.py
+1
-2
tensorpack/dataflow/image.py
tensorpack/dataflow/image.py
+13
-11
No files found.
docs/tutorial/index.rst
View file @
a6745419
...
...
@@ -23,8 +23,9 @@ function library. Tensopack trainers integrate these two components and add more
details such as multi-GPU training. At the same time it keeps the power of customization to you
through callbacks.
*
:doc:`callback` are like ``tf.train.SessionRunHook``
plugins, or extensions. During training,
*
Callbacks are like ``tf.train.SessionRunHook``, or
plugins, or extensions. During training,
everything you want to do other than the main iterations can be defined through callbacks.
See :doc:`callback` for some examples what you can do.
User Tutorials
========================
...
...
examples/HED/hed.py
View file @
a6745419
...
...
@@ -132,7 +132,7 @@ def get_data(name):
# the original image shape (321x481) in BSDS is not a multiple of 16
IMAGE_SHAPE
=
(
320
,
480
)
shape_aug
=
[
imgaug
.
CenterCrop
(
IMAGE_SHAPE
)]
ds
=
AugmentImageComponents
(
ds
,
shape_aug
,
(
0
,
1
))
ds
=
AugmentImageComponents
(
ds
,
shape_aug
,
(
0
,
1
)
,
copy
=
False
)
def
f
(
m
):
# thresholding
m
[
m
>=
0.50
]
=
1
...
...
@@ -145,7 +145,7 @@ def get_data(name):
imgaug
.
Brightness
(
63
,
clip
=
False
),
imgaug
.
Contrast
((
0.4
,
1.5
)),
]
ds
=
AugmentImageComponent
(
ds
,
augmentors
)
ds
=
AugmentImageComponent
(
ds
,
augmentors
,
copy
=
False
)
ds
=
BatchDataByShape
(
ds
,
8
,
idx
=
0
)
ds
=
PrefetchDataZMQ
(
ds
,
1
)
else
:
...
...
examples/Inception/inception-bn.py
View file @
a6745419
...
...
@@ -147,7 +147,7 @@ def get_data(train_or_test):
imgaug
.
MapImage
(
lambda
x
:
x
-
pp_mean
),
imgaug
.
CenterCrop
((
224
,
224
)),
]
ds
=
AugmentImageComponent
(
ds
,
augmentors
)
ds
=
AugmentImageComponent
(
ds
,
augmentors
,
copy
=
False
)
ds
=
BatchData
(
ds
,
BATCH_SIZE
,
remainder
=
not
isTrain
)
if
isTrain
:
ds
=
PrefetchDataZMQ
(
ds
,
6
)
...
...
examples/Inception/inceptionv3.py
View file @
a6745419
...
...
@@ -252,7 +252,7 @@ def get_data(train_or_test):
imgaug
.
CenterCrop
((
299
,
299
)),
imgaug
.
MapImage
(
lambda
x
:
x
-
pp_mean_299
),
]
ds
=
AugmentImageComponent
(
ds
,
augmentors
)
ds
=
AugmentImageComponent
(
ds
,
augmentors
,
copy
=
False
)
ds
=
BatchData
(
ds
,
BATCH_SIZE
,
remainder
=
not
isTrain
)
if
isTrain
:
ds
=
PrefetchDataZMQ
(
ds
,
min
(
12
,
multiprocessing
.
cpu_count
()))
...
...
examples/ResNet/imagenet-resnet.py
View file @
a6745419
...
...
@@ -180,7 +180,7 @@ def get_data(train_or_test):
imgaug
.
CenterCrop
((
224
,
224
)),
imgaug
.
ToUint8
()
]
ds
=
AugmentImageComponent
(
ds
,
augmentors
)
ds
=
AugmentImageComponent
(
ds
,
augmentors
,
copy
=
False
)
if
isTrain
:
ds
=
PrefetchDataZMQ
(
ds
,
min
(
20
,
multiprocessing
.
cpu_count
()))
ds
=
BatchData
(
ds
,
BATCH_SIZE
,
remainder
=
not
isTrain
)
...
...
tensorpack/dataflow/common.py
View file @
a6745419
...
...
@@ -4,6 +4,7 @@
from
__future__
import
division
import
numpy
as
np
from
copy
import
copy
from
termcolor
import
colored
from
collections
import
deque
,
defaultdict
from
six.moves
import
range
,
map
...
...
@@ -209,6 +210,9 @@ class MapData(ProxyDataFlow):
func (datapoint -> datapoint | None): takes a datapoint and returns a new
datapoint. Return None to discard this data point.
Note that if you use the filter feature, ``ds.size()`` will be incorrect.
Note:
Be careful if func modifies datapoints.
"""
super
(
MapData
,
self
)
.
__init__
(
ds
)
self
.
func
=
func
...
...
@@ -230,11 +234,16 @@ class MapDataComponent(MapData):
return None to discard this datapoint.
Note that if you use the filter feature, ``ds.size()`` will be incorrect.
index (int): index of the component.
Note:
This proxy itself doesn't modify the datapoints. But be careful because func
may modify the components.
"""
def
f
(
dp
):
r
=
func
(
dp
[
index
])
if
r
is
None
:
return
None
dp
=
copy
(
dp
)
# avoid modifying the list
dp
[
index
]
=
r
return
dp
super
(
MapDataComponent
,
self
)
.
__init__
(
ds
,
f
)
...
...
tensorpack/dataflow/dataset/bsds500.py
View file @
a6745419
...
...
@@ -4,7 +4,6 @@
# Author: Yuxin Wu <ppwwyyxxc@gmail.com>
import
os
import
copy
import
glob
import
cv2
import
numpy
as
np
...
...
@@ -86,7 +85,7 @@ class BSDS500(RNGDataFlow):
if
self
.
shuffle
:
self
.
rng
.
shuffle
(
idxs
)
for
k
in
idxs
:
yield
[
copy
.
copy
(
self
.
data
[
k
])
,
self
.
label
[
k
]]
yield
[
self
.
data
[
k
]
,
self
.
label
[
k
]]
try
:
...
...
tensorpack/dataflow/dataset/cifar.py
View file @
a6745419
...
...
@@ -9,7 +9,6 @@ import pickle
import
numpy
as
np
import
six
from
six.moves
import
range
import
copy
from
...utils
import
logger
from
...utils.fs
import
download
,
get_dataset_path
...
...
@@ -109,7 +108,7 @@ class CifarBase(RNGDataFlow):
self
.
rng
.
shuffle
(
idxs
)
for
k
in
idxs
:
# since cifar is quite small, just do it for safety
yield
copy
.
deepcopy
(
self
.
data
[
k
])
yield
self
.
data
[
k
]
def
get_per_pixel_mean
(
self
):
"""
...
...
tensorpack/dataflow/dataset/svhn.py
View file @
a6745419
...
...
@@ -5,7 +5,6 @@
import
os
import
numpy
as
np
import
copy
from
...utils
import
logger
from
...utils.fs
import
get_dataset_path
...
...
@@ -58,7 +57,7 @@ class SVHNDigit(RNGDataFlow):
self
.
rng
.
shuffle
(
idxs
)
for
k
in
idxs
:
# since svhn is quite small, just do it for safety
yield
[
copy
.
copy
(
self
.
X
[
k
])
,
self
.
Y
[
k
]]
yield
[
self
.
X
[
k
]
,
self
.
Y
[
k
]]
@
staticmethod
def
get_per_pixel_mean
():
...
...
tensorpack/dataflow/image.py
View file @
a6745419
...
...
@@ -50,15 +50,16 @@ class AugmentImageComponent(MapDataComponent):
"""
Apply image augmentors on 1 component.
"""
def
__init__
(
self
,
ds
,
augmentors
,
index
=
0
,
copy
=
Fals
e
):
def
__init__
(
self
,
ds
,
augmentors
,
index
=
0
,
copy
=
Tru
e
):
"""
Args:
ds (DataFlow): input DataFlow.
augmentors (AugmentorList): a list of :class:`imgaug.ImageAugmentor` to be applied in order.
index (int): the index of the image component to be augmented.
copy (bool): make a copy of input images so the original data
won't be modified. Turn it on when it's dangerous to
modify the input (e.g. when inputs are persistent in memory).
copy (bool): Some augmentors modify the input images. When copy is
True, a copy will be made before any augmentors are applied,
to keep the original images not modified.
Turn it off to save time when you know it's OK.
"""
if
isinstance
(
augmentors
,
AugmentorList
):
self
.
augs
=
augmentors
...
...
@@ -94,29 +95,30 @@ class AugmentImageComponents(MapData):
Apply image augmentors on several components, with shared augmentation parameters.
"""
def
__init__
(
self
,
ds
,
augmentors
,
index
=
(
0
,
1
),
copy
=
Fals
e
):
def
__init__
(
self
,
ds
,
augmentors
,
index
=
(
0
,
1
),
copy
=
Tru
e
):
"""
Args:
ds (DataFlow): input DataFlow.
augmentors (AugmentorList): a list of :class:`imgaug.ImageAugmentor` instance to be applied in order.
index: tuple of indices of components.
copy (bool): make a copy of input images so the original data
won't be modified. Turn it on when it's dangerous to
modify the input (e.g. when inputs are persistent in memory).
copy (bool): Some augmentors modify the input images. When copy is
True, a copy will be made before any augmentors are applied,
to keep the original images not modified.
Turn it off to save time when you know it's OK.
"""
self
.
augs
=
AugmentorList
(
augmentors
)
self
.
ds
=
ds
self
.
_nr_error
=
0
def
func
(
dp
):
dp
=
copy_mod
.
copy
(
dp
)
# always do a shallow copy, make sure the list is intact
copy_func
=
copy_mod
.
deepcopy
if
copy
else
lambda
x
:
x
# noqa
dp
=
copy_func
(
dp
)
try
:
im
=
dp
[
index
[
0
]]
im
=
copy_func
(
dp
[
index
[
0
]])
im
,
prms
=
self
.
augs
.
_augment_return_params
(
im
)
dp
[
index
[
0
]]
=
im
for
idx
in
index
[
1
:]:
dp
[
idx
]
=
self
.
augs
.
_augment
(
dp
[
idx
]
,
prms
)
dp
[
idx
]
=
self
.
augs
.
_augment
(
copy_func
(
dp
[
idx
])
,
prms
)
return
dp
except
KeyboardInterrupt
:
raise
...
...
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