Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
a4220162
Commit
a4220162
authored
May 02, 2018
by
richardbrks
Browse files
change export argument to what is actually being exported and list what is being exported
parent
0e860b19
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
research/object_detection/g3doc/exporting_models.md
research/object_detection/g3doc/exporting_models.md
+7
-2
No files found.
research/object_detection/g3doc/exporting_models.md
View file @
a4220162
...
@@ -16,7 +16,12 @@ python object_detection/export_inference_graph.py \
...
@@ -16,7 +16,12 @@ python object_detection/export_inference_graph.py \
--input_type
image_tensor
\
--input_type
image_tensor
\
--pipeline_config_path
${
PIPELINE_CONFIG_PATH
}
\
--pipeline_config_path
${
PIPELINE_CONFIG_PATH
}
\
--trained_checkpoint_prefix
${
TRAIN_PATH
}
\
--trained_checkpoint_prefix
${
TRAIN_PATH
}
\
--output_directory
output_inference_graph.pb
--output_directory
${
EXPORT_DIR
}
```
```
Afterwards, you should see a graph named output_inference_graph.pb.
Afterwards, you should see the directory ${EXPORT_DIR} containing the following:
*
output_inference_graph.pb, the frozen graph format of the exported model
*
saved_model/, a directory containing the saved model format of the exported model
*
model.ckpt.
*
, the model checkpoints used for exporting
*
checkpoint, a file specifying to restore included checkpoint files
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment