SELECT_TF_OPS로 이리저리 찾으니, cmake 파일에서 똭?!
그런데 FATAL_ERROR.. 수상하다...
TODO: Add support.... 수상하다.....
68 # This must be enabled when converting from TF models with SELECT_TF_OPS
69 # enabled.
70 # https://www.tensorflow.org/lite/guide/ops_select#converting_the_model
71 # This is currently not supported.
72 option(TFLITE_ENABLE_FLEX "Enable SELECT_TF_OPS" OFF) # TODO: Add support
197 if(TFLITE_ENABLE_FLEX)
198 message(FATAL_ERROR "TF Lite Flex delegate is currently not supported.")
199 populate_tflite_source_vars("delegates/flex" TFLITE_DELEGATES_FLEX_SRCS)
200 list(APPEND TFLITE_TARGET_DEPENDENCIES
201 absl::inlined_vector
202 absl::optional
203 absl::type_traits
204 )
205 endif()
아래처럼 하면 된다는데
sudo apt-get install cmake
git clone https://github.com/tensorflow/tensorflow.git tensorflow_src
mkdir tflite_build
cd tflite_build
cmake ../tensorflow_src/tensorflow/lite
[링크 : https://www.tensorflow.org/lite/guide/build_cmake]
안되서 -S 옵션주니 된....
$ cmake -S ../tensorflow/tensorflow/lite |
야이 그지깽깽이들아!!!! ㅠㅠㅠ
CMake Error at CMakeLists.txt:198 (message):
TF Lite Flex delegate is currently not supported.
'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글
tensorflow pipeline.conf (0) | 2021.02.08 |
---|---|
tf object detection COCO (0) | 2021.02.05 |
saved_model_cli (0) | 2021.02.02 |
tensorflow bazel build 옵션 (0) | 2021.02.02 |
tensorflow bazel build (0) | 2021.02.01 |