aboutsummaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
Diffstat (limited to 'model')
-rw-r--r--model/mlp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/mlp.py b/model/mlp.py
index fc86b7b..2e0b9e5 100644
--- a/model/mlp.py
+++ b/model/mlp.py
@@ -56,7 +56,7 @@ class Stream(object):
stream = TaxiDataset('train')
- if hasattr(self.config, 'use_cuts_for_trainig') and self.config.use_cuts_for_training:
+ if hasattr(self.config, 'use_cuts_for_training') and self.config.use_cuts_for_training:
stream = DataStream(stream, iteration_scheme=TaxiTimeCutScheme())
else:
stream = DataStream(stream, iteration_scheme=ShuffledExampleScheme(stream.num_examples))