From 64c4b43f2f626ea243523868284f3d321b504b01 Mon Sep 17 00:00:00 2001 From: makaveli <39617050+makaveli10@users.noreply.github.com> Date: Tue, 27 Apr 2021 08:35:55 +0530 Subject: [PATCH] fix: typo (#509) --- inception/inceptionv4/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inception/inceptionv4/utils.cpp b/inception/inceptionv4/utils.cpp index 58cbb0f..8c9cb40 100644 --- a/inception/inceptionv4/utils.cpp +++ b/inception/inceptionv4/utils.cpp @@ -4,7 +4,7 @@ // Load weights from files. // TensorRT weight files have a simple space delimited format: // [type] [size] -std::map loadWeights(const std::string input) { +std::map loadWeights(const std::string file) { std::cout << "Loading weights: " << file << std::endl; std::map weightMap;