Skip to content

Commit 7141b28

Browse files
authored
Merge pull request #2 from ZidanMusk/master
some typo fixes
2 parents b31cb7d + 011a86c commit 7141b28

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ In a nutshell here's how to use this template, so **for example** assume you wan
5858
def train_epoch(self):
5959
"""
6060
implement the logic of epoch:
61-
-loop ever the number of iteration in the config and call teh train step
62-
-add any summaries you want using the sammary
61+
-loop on the number of iterations in the config and call the train step
62+
-add any summaries you want using the summary
6363
"""
6464
pass
6565

models/templete_model.py renamed to models/template_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import tensorflow as tf
33

44

5-
class TempleteModel(BaseModel):
5+
class TemplateModel(BaseModel):
66
def __init__(self, config):
7-
super(TempleteModel, self).__init__(config)
7+
super(TemplateModel, self).__init__(config)
88

99
self.build_model()
1010
self.init_saver()

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)