From 7f58277ac55804e8103284b1f85ad8a554f47c49 Mon Sep 17 00:00:00 2001 From: Taketoshi Fujiwara Date: Tue, 8 Jan 2019 16:23:56 +0900 Subject: [PATCH] Fix a bug in blueoil/templates/lmnet/object_detection.tpl.py --- blueoil/templates/lmnet/object_detection.tpl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueoil/templates/lmnet/object_detection.tpl.py b/blueoil/templates/lmnet/object_detection.tpl.py index 91332216e..df6638249 100644 --- a/blueoil/templates/lmnet/object_detection.tpl.py +++ b/blueoil/templates/lmnet/object_detection.tpl.py @@ -124,5 +124,5 @@ DATASET.DATA_FORMAT = DATA_FORMAT DATASET.PRE_PROCESSOR = PRE_PROCESSOR DATASET.AUGMENTOR = Sequence([{% if data_augmentation %}{% for augmentor in data_augmentation %} - {{ augmentor[0] }}({% for d_name, d_value in augmentor[1] %}{{ d_name }}={{ d_value }}{% endfor %}),{% endfor %} + {{ augmentor[0] }}({% for d_name, d_value in augmentor[1] %}{{ d_name }}={{ d_value }}, {% endfor %}),{% endfor %} {% endif %}])