taxi

Winning entry to the Kaggle taxi competition
git clone https://esimon.eu/repos/taxi.git
Log | Files | Refs | README

commit 7e8dbac77ce712846954bdd5f4bfb62b6efaf7df
parent 6744c6e7b69c206c19954d65981a5139ee61363e
Author: Alex Auvolat <alex.auvolat@ens.fr>
Date:   Fri, 22 May 2015 16:16:22 -0400

Fix typo

Diffstat:
Mmodel/mlp.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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))