diff options
| author | Matt Cooper <matthew_cooper@brown.edu> | 2016-08-21 15:33:05 -0400 |
|---|---|---|
| committer | Matt Cooper <matthew_cooper@brown.edu> | 2016-08-21 15:33:05 -0400 |
| commit | c85ee573ed5a33c7741c61ba9fcce0ad64718d34 (patch) | |
| tree | 662b64aca784831b6ee28b8b94f9de41eaafdc57 /Code/avg_runner.py | |
| parent | 05347b3ba1b388e02259b04ced7f12f014e3c2ae (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.py | 6 |
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 |
