aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Simon <esimon@esimon.eu>2015-07-24 10:40:34 -0400
committerÉtienne Simon <esimon@esimon.eu>2015-07-24 10:40:34 -0400
commitac49e3cb892e0278ea1d52afdc314322000fae27 (patch)
treec52acb2319cc25e13ad7d718e0e31b500e920aa5
parent1e64a442e78b5e471b2f573295bd9a747b7c6c3f (diff)
downloadtaxi-ac49e3cb892e0278ea1d52afdc314322000fae27.tar.gz
taxi-ac49e3cb892e0278ea1d52afdc314322000fae27.zip
Fix test only when valid improve
-rw-r--r--ext_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext_test.py b/ext_test.py
index 092f39c..5bb4520 100644
--- a/ext_test.py
+++ b/ext_test.py
@@ -55,12 +55,14 @@ class RunOnTest(SimpleExtension):
return
if output_dvc:
+ self.best_dvc = dvc
dest_outname = 'test-dest-%s-it%09d-cost%.3f.csv' % (self.model_name, iter_no, dvc)
dest_outfile = open(os.path.join('output', dest_outname), 'w')
dest_outcsv = csv.writer(dest_outfile)
dest_outcsv.writerow(["TRIP_ID", "LATITUDE", "LONGITUDE"])
logger.info("Generating output for test set: %s" % dest_outname)
if output_tvc:
+ self.best_tvc = tvc
time_outname = 'test-time-%s-it%09d-cost%.3f.csv' % (self.model_name, iter_no, tvc)
time_outfile = open(os.path.join('output', time_outname), 'w')
time_outcsv = csv.writer(time_outfile)