taxi

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

commit 1c8241ab7a5e933c8a3452b407a1be054467613b
parent 683e8788b4a52dfaf134539283a47810ba2c3420
Author: Alex Auvolat <alex.auvolat@ens.fr>
Date:   Tue, 28 Jul 2015 09:20:24 -0400

Memory net 3 candidate size

Diffstat:
Mconfig/memory_network_mlp_3_momentum.py | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/memory_network_mlp_3_momentum.py b/config/memory_network_mlp_3_momentum.py @@ -45,11 +45,11 @@ normalize_representation = True step_rule = Momentum(learning_rate=0.01, momentum=0.9) -batch_size = 500 +batch_size = 5000 # batch_sort_size = 20 -max_splits = 100 +max_splits = 200 -train_candidate_size = 2000 -valid_candidate_size = 2000 -test_candidate_size = 2000 +train_candidate_size = 10000 +valid_candidate_size = 10000 +test_candidate_size = 10000