Skip to content

Commit a422016

Browse files
committed
change export argument to what is actually being exported and list what is being exported
1 parent 0e860b1 commit a422016

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

research/object_detection/g3doc/exporting_models.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ python object_detection/export_inference_graph.py \
1616
--input_type image_tensor \
1717
--pipeline_config_path ${PIPELINE_CONFIG_PATH} \
1818
--trained_checkpoint_prefix ${TRAIN_PATH} \
19-
--output_directory output_inference_graph.pb
19+
--output_directory ${EXPORT_DIR}
2020
```
2121

22-
Afterwards, you should see a graph named output_inference_graph.pb.
22+
Afterwards, you should see the directory ${EXPORT_DIR} containing the following:
23+
24+
* output_inference_graph.pb, the frozen graph format of the exported model
25+
* saved_model/, a directory containing the saved model format of the exported model
26+
* model.ckpt.*, the model checkpoints used for exporting
27+
* checkpoint, a file specifying to restore included checkpoint files

0 commit comments

Comments
 (0)