From 4e189755cf89e97003537b3cbac2471f97e07885 Mon Sep 17 00:00:00 2001 From: Francesco Gatti Date: Thu, 3 Aug 2017 16:09:23 +0200 Subject: [PATCH] yolo weights tar --- .gitignore | 1 + tests/simple/test_simple.cpp | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 6690668..38d5bae 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ build/ *.prototxt *.caffemodel *.h5 +*.tar.gz diff --git a/tests/simple/test_simple.cpp b/tests/simple/test_simple.cpp index 56d24c5..8c0e2c5 100644 --- a/tests/simple/test_simple.cpp +++ b/tests/simple/test_simple.cpp @@ -1,11 +1,11 @@ #include #include "tkdnn.h" -const char *input_bin = "../tests/test/input.bin"; -const char *c0_bin = "../tests/test/layers/c0.bin"; -const char *c1_bin = "../tests/test/layers/c1.bin"; -const char *d2_bin = "../tests/test/layers/d2.bin"; -const char *output_bin = "../tests/test/output.bin"; +const char *input_bin = "../tests/simple/input.bin"; +const char *c0_bin = "../tests/simple/layers/c0.bin"; +const char *c1_bin = "../tests/simple/layers/c1.bin"; +const char *d2_bin = "../tests/simple/layers/d2.bin"; +const char *output_bin = "../tests/simple/output.bin"; int main() {