Skip to content

Commit c028d9f

Browse files
authored
Merge pull request #506 from jacky841102/patch-1
update misplaced comment
2 parents 24ac152 + 3010c01 commit c028d9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

models/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
1111
In the function <__init__>, you need to define four lists:
1212
-- self.loss_names (str list): specify the training losses that you want to plot and save.
13-
-- self.model_names (str list): specify the images that you want to display and save.
14-
-- self.visual_names (str list): define networks used in our training.
13+
-- self.model_names (str list): define networks used in our training.
14+
-- self.visual_names (str list): specify the images that you want to display and save.
1515
-- self.optimizers (optimizer list): define and initialize optimizers. You can define one optimizer for each network. If two networks are updated at the same time, you can use itertools.chain to group them. See cycle_gan_model.py for an usage.
1616
1717
Now you can use the model class by specifying flag '--model dummy'.

0 commit comments

Comments
 (0)