From 7e8dbac77ce712846954bdd5f4bfb62b6efaf7df Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Fri, 22 May 2015 16:16:22 -0400 Subject: Fix typo --- model/mlp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'model') 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)) -- cgit v1.2.3