Skip to content

Commit cbec51c

Browse files
authored
Update and rename templete_trainer.py to template_trainer.py
1 parent 31eaba9 commit cbec51c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

trainers/templete_trainer.py renamed to trainers/template_trainer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
import numpy as np
44

55

6-
class TempleteTrainer(BaseTrain):
6+
class TemplateTrainer(BaseTrain):
77
def __init__(self, sess, model, data, config, logger):
8-
super(TempleteTrainer, self).__init__(sess, model, data, config, logger)
8+
super(TemplateTrainer, self).__init__(sess, model, data, config, logger)
99

1010
def train_epoch(self):
1111
"""
1212
implement the logic of epoch:
13-
-loop ever the number of iteration in the config and call teh train step
14-
-add any summaries you want using the sammary
13+
-loop on the number of iterations in the config and call the train step
14+
-add any summaries you want using the summary
1515
"""
1616
pass
1717

0 commit comments

Comments
 (0)