Commit edbf38b3 authored by Salisbury's avatar Salisbury Committed by GitHub
Browse files

fix exporting model doc for object detection

see example usage in https://github.com/tensorflow/models/blob/master/object_detection/export_inference_graph.py#L51
parent 09a32f32
...@@ -15,8 +15,8 @@ command from tensorflow/models/object_detection: ...@@ -15,8 +15,8 @@ command from tensorflow/models/object_detection:
python object_detection/export_inference_graph \ python object_detection/export_inference_graph \
--input_type image_tensor \ --input_type image_tensor \
--pipeline_config_path ${PIPELINE_CONFIG_PATH} \ --pipeline_config_path ${PIPELINE_CONFIG_PATH} \
--checkpoint_path model.ckpt-${CHECKPOINT_NUMBER} \ --trained_checkpoint_prefix ${TRAIN_PATH} \
--inference_graph_path output_inference_graph.pb --output_directory output_inference_graph.pb
``` ```
Afterwards, you should see a graph named output_inference_graph.pb. Afterwards, you should see a graph named output_inference_graph.pb.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment