I am doing object detection using TensorFlow Object Detection API in Google colab. This is my directory structure.
object_detection/
training/
exported_model/
pipeline.config
model_main_tf2.py
exporter_main_v2.py
I run bellow for training.
!python model_main_tf2.py --model_dir=training --pipeline_config_path=pipeline.config
I run bellow for exporting model.
!python exporter_main_v2.py
--input_type image_tensor
--pipeline_config_path pipeline.config
--trained_checkpoint_dir training/
--output_directory exported_model
None of the above will produce any error but after running both I am not able to see exported model in desired directory in my case(exported_model). I didn't understand what is wrong ?