From 594947f3014b585b8d333ded07fc36fcdb2f8250 Mon Sep 17 00:00:00 2001 From: Micaela Verucchi Date: Wed, 8 Jul 2020 11:27:09 +0200 Subject: [PATCH] Update file names map demo Signed-off-by: Micaela Verucchi --- demo/demo/map.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/demo/demo/map.cpp b/demo/demo/map.cpp index ea6eba4..facb8f7 100644 --- a/demo/demo/map.cpp +++ b/demo/demo/map.cpp @@ -36,7 +36,7 @@ int main(int argc, char *argv[]) bool show = false; bool write_dets = false; bool write_res_on_file = true; - bool write_coco_json = true; + bool write_coco_json = false; int n_images = 5000; bool verbose; @@ -88,9 +88,9 @@ int main(int argc, char *argv[]) } if(write_res_on_file){ - times.open("times_"+net_name+".csv"); + times.open("times_"+net_name+"_"+ std::to_string(n_batches)+"_"+std::to_string(confidence_thresh)+".csv"); memory.open("memory.csv", std::ios_base::app); - memory<