运行 model_main_tf2.py 和 exporter_main_v2.py 后模型未导出。不知道为什么?
Model is not exported after running model_main_tf2.py and exporter_main_v2.py. Don't know why?
我正在 Google colab 中使用 TensorFlow 对象检测 API 进行对象检测。这是我的目录结构。
object_detection/
training/
exported_model/
pipeline.config
model_main_tf2.py
exporter_main_v2.py
我运行为了训练而吼叫。
!python model_main_tf2.py --model_dir=training --pipeline_config_path=pipeline.config
我运行导出模型。
!python exporter_main_v2.py
--input_type image_tensor
--pipeline_config_path pipeline.config
--trained_checkpoint_dir training/
--output_directory exported_model
上面的 None 会产生任何错误,但是在 运行ning 之后,在我的情况下,我无法在所需目录中看到导出的模型(exported_model)。我不明白哪里出了问题?
我正在 Google colab 中使用 TensorFlow 对象检测 API 进行对象检测。这是我的目录结构。
object_detection/
training/
exported_model/
pipeline.config
model_main_tf2.py
exporter_main_v2.py
我运行为了训练而吼叫。
!python model_main_tf2.py --model_dir=training --pipeline_config_path=pipeline.config
我运行导出模型。
上面的!python exporter_main_v2.py
--input_type image_tensor
--pipeline_config_path pipeline.config
--trained_checkpoint_dir training/
--output_directory exported_model
None 会产生任何错误,但是在 运行ning 之后,在我的情况下,我无法在所需目录中看到导出的模型(exported_model)。我不明白哪里出了问题?