From 600cd9e2a59655410f8587f0ab85f150a01c490c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9C=A4=EC=A7=80=EC=98=81/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Wed, 5 Sep 2018 17:32:28 +0900 Subject: [PATCH] Add fullyconnected and mean tests using tflite (#2606) This commit add fullyconnected and mean directory for testing these tflite files. It will automatically download the files from npuarchive.mooo server and test it. Signed-off-by: Jiyoung Yun --- tests/framework/tests/fullyconnected/config.sh | 2 ++ tests/framework/tests/mean/config.sh | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 tests/framework/tests/fullyconnected/config.sh create mode 100644 tests/framework/tests/mean/config.sh diff --git a/tests/framework/tests/fullyconnected/config.sh b/tests/framework/tests/fullyconnected/config.sh new file mode 100644 index 0000000..0ba5ba3 --- /dev/null +++ b/tests/framework/tests/fullyconnected/config.sh @@ -0,0 +1,2 @@ +MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test" +MODELFILE_NAME="fullyconnected_test.tflite" diff --git a/tests/framework/tests/mean/config.sh b/tests/framework/tests/mean/config.sh new file mode 100644 index 0000000..3e52cde --- /dev/null +++ b/tests/framework/tests/mean/config.sh @@ -0,0 +1,2 @@ +MODELFILE_SERVER="http://npuarchive.mooo.com/archive/nnfw/nn_framework_test" +MODELFILE_NAME="mean_test.tflite" -- 2.7.4