-
-
Notifications
You must be signed in to change notification settings - Fork 589
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
### tf-nightly | ||
openvino2tensorflow \ | ||
--model_path onnx/openvino/deepsort_128x64/FP32/deepsort_128x64.xml \ | ||
--output_saved_model True \ | ||
--output_no_quant_float32_tflite True \ | ||
--output_weight_quant_tflite True \ | ||
--output_float16_quant_tflite True \ | ||
--output_integer_quant_tflite True \ | ||
--string_formulas_for_normalization '(data / 255.0 - [0.485, 0.456, 0.406]) / [0.229, 0.224, 0.225]' | ||
|
||
### tensorflow==2.4.0 | ||
saved_model_to_tflite \ | ||
--saved_model_dir_path saved_model \ | ||
--output_tfjs True \ | ||
--output_coreml True \ | ||
--output_tftrt True |