Skip to content

Commit

Permalink
fix typo in pascal_multilabel_datalayers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wk910930 committed Oct 5, 2016
1 parent d208b71 commit c97a964
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/pycaffe/layers/pascal_multilabel_datalayers.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class PascalMultilabelDataLayerSync(caffe.Layer):

"""
This is a simple syncronous datalayer for training a multilabel model on
This is a simple synchronous datalayer for training a multilabel model on
PASCAL.
"""

Expand All @@ -33,7 +33,7 @@ def setup(self, bottom, top):
# params is a python dictionary with layer parameters.
params = eval(self.param_str)

# Check the paramameters for validity.
# Check the parameters for validity.
check_params(params)

# store input as class variables
Expand Down Expand Up @@ -207,7 +207,7 @@ def check_params(params):

def print_info(name, params):
"""
Ouput some info regarding the class
Output some info regarding the class
"""
print "{} initialized for split: {}, with bs: {}, im_shape: {}.".format(
name,
Expand Down

0 comments on commit c97a964

Please sign in to comment.