From 039b3649c2cebdbe3ce4105b274bfa060e60740b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=98=A4=ED=98=95=EC=84=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Wed, 5 Sep 2018 09:59:23 +0900 Subject: [PATCH] [Model Parser] Update flatbuffers path (#2579) Update flatbuffers path to use flatbuffer python library Signed-off-by: Hyeongseok Oh --- tools/tflitefile_tool/model_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tflitefile_tool/model_parser.py b/tools/tflitefile_tool/model_parser.py index 35b8f87..b8967d3 100755 --- a/tools/tflitefile_tool/model_parser.py +++ b/tools/tflitefile_tool/model_parser.py @@ -4,7 +4,7 @@ import sys import numpy sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'tflite')) -flatbuffersPath = '../../externals/tensorflow/tensorflow/contrib/lite/downloads/flatbuffers' +flatbuffersPath = '../../externals/flatbuffers' sys.path.append( os.path.join(os.path.dirname(os.path.abspath(__file__)), flatbuffersPath + '/python')) -- 2.7.4