summaryrefslogtreecommitdiff
path: root/Code/avg_runner.py
diff options
context:
space:
mode:
authorMatt Cooper <matthew_cooper@brown.edu>2016-08-21 15:33:05 -0400
committerMatt Cooper <matthew_cooper@brown.edu>2016-08-21 15:33:05 -0400
commitc85ee573ed5a33c7741c61ba9fcce0ad64718d34 (patch)
tree662b64aca784831b6ee28b8b94f9de41eaafdc57 /Code/avg_runner.py
parent05347b3ba1b388e02259b04ced7f12f014e3c2ae (diff)
testing a bug where test inputs and GTs are out of order
Diffstat (limited to 'Code/avg_runner.py')
-rw-r--r--Code/avg_runner.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Code/avg_runner.py b/Code/avg_runner.py
index 18bc592..9a27426 100644
--- a/Code/avg_runner.py
+++ b/Code/avg_runner.py
@@ -42,8 +42,8 @@ class AVGRunner:
self.summary_writer,
c.TRAIN_HEIGHT,
c.TRAIN_WIDTH,
- c.TEST_HEIGHT,
- c.TEST_WIDTH,
+ c.FULL_HEIGHT,
+ c.FULL_WIDTH,
c.SCALE_FMS_G,
c.SCALE_KERNEL_SIZES_G)
@@ -161,7 +161,7 @@ def main():
# set test frame dimensions
assert os.path.exists(c.TEST_DIR)
- c.TEST_HEIGHT, c.TEST_WIDTH = c.get_test_frame_dims()
+ c.FULL_HEIGHT, c.FULL_WIDTH = c.get_test_frame_dims()
##
# Init and run the predictor