diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f4467b..0fa0a52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(COSC-4P80-Final-Project VERSION 0.0.14) +project(COSC-4P80-Final-Project VERSION 0.0.15) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) diff --git a/src/MNIST.cpp b/src/MNIST.cpp index 09d5520..1d61cdc 100644 --- a/src/MNIST.cpp +++ b/src/MNIST.cpp @@ -43,7 +43,7 @@ namespace fp void run_python_line_graph(const std::string& title, const std::string& output_file, const std::string& csv1, const std::string& csv2, const blt::size_t pos_forward, const blt::size_t pos_deep) { - const auto command = "python3 " + python_dual_stacked_graph_program + " '" + title + "' '" + output_file + "' '" + csv1 + "' '" + csv2 + "' " + const auto command = "python3 '" + python_dual_stacked_graph_program + "' '" + title + "' '" + output_file + "' '" + csv1 + "' '" + csv2 + "' " + std::to_string(pos_forward) + " " + std::to_string(pos_deep); BLT_TRACE("Running %s", command.c_str()); std::system(command.c_str());