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
55259ca9
"vscode:/vscode.git/clone" did not exist on "b50a60b3e3023c48ef96c1eb01214ddf786f2620"
Unverified
Commit
55259ca9
authored
Apr 25, 2020
by
JuHyung Son
Committed by
GitHub
Apr 24, 2020
Browse files
Fix typo in object detection export_graph example usage (#8089)
parent
86269fdc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
research/object_detection/export_inference_graph.py
research/object_detection/export_inference_graph.py
+2
-2
research/object_detection/export_tflite_ssd_graph.py
research/object_detection/export_tflite_ssd_graph.py
+2
-2
No files found.
research/object_detection/export_inference_graph.py
View file @
55259ca9
...
@@ -62,7 +62,7 @@ Notes:
...
@@ -62,7 +62,7 @@ Notes:
Example Usage:
Example Usage:
--------------
--------------
python export_inference_graph \
python export_inference_graph
.py
\
--input_type image_tensor \
--input_type image_tensor \
--pipeline_config_path path/to/ssd_inception_v2.config \
--pipeline_config_path path/to/ssd_inception_v2.config \
--trained_checkpoint_prefix path/to/model.ckpt \
--trained_checkpoint_prefix path/to/model.ckpt \
...
@@ -87,7 +87,7 @@ eval config.
...
@@ -87,7 +87,7 @@ eval config.
Example Usage (in which we change the second stage post-processing score
Example Usage (in which we change the second stage post-processing score
threshold to be 0.5):
threshold to be 0.5):
python export_inference_graph \
python export_inference_graph
.py
\
--input_type image_tensor \
--input_type image_tensor \
--pipeline_config_path path/to/ssd_inception_v2.config \
--pipeline_config_path path/to/ssd_inception_v2.config \
--trained_checkpoint_prefix path/to/model.ckpt \
--trained_checkpoint_prefix path/to/model.ckpt \
...
...
research/object_detection/export_tflite_ssd_graph.py
View file @
55259ca9
...
@@ -55,7 +55,7 @@ else:
...
@@ -55,7 +55,7 @@ else:
Example Usage:
Example Usage:
--------------
--------------
python object_detection/export_tflite_ssd_graph \
python object_detection/export_tflite_ssd_graph
.py
\
--pipeline_config_path path/to/ssd_mobilenet.config \
--pipeline_config_path path/to/ssd_mobilenet.config \
--trained_checkpoint_prefix path/to/model.ckpt \
--trained_checkpoint_prefix path/to/model.ckpt \
--output_directory path/to/exported_model_directory
--output_directory path/to/exported_model_directory
...
@@ -73,7 +73,7 @@ eval config.
...
@@ -73,7 +73,7 @@ eval config.
Example Usage (in which we change the NMS iou_threshold to be 0.5 and
Example Usage (in which we change the NMS iou_threshold to be 0.5 and
NMS score_threshold to be 0.0):
NMS score_threshold to be 0.0):
python object_detection/export_tflite_ssd_graph \
python object_detection/export_tflite_ssd_graph
.py
\
--pipeline_config_path path/to/ssd_mobilenet.config \
--pipeline_config_path path/to/ssd_mobilenet.config \
--trained_checkpoint_prefix path/to/model.ckpt \
--trained_checkpoint_prefix path/to/model.ckpt \
--output_directory path/to/exported_model_directory
--output_directory path/to/exported_model_directory
...
...
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