Dear a technical team,
Hello, I recently bought the Khadas/VIM Pro board to run the various up-to-date network models.
I checked how to transform Yolo model at https://docs.khadas.com/vim3/HowToTransformYolo.html.
Then, I downloaded the “aml_npu_sdk.tgz (478MB)” file by submitting the contents at https://www.khadas.com/npu-toolkit-vim3.
When I decompressed the “aml_npu_sdk.tgz” file, I could not find the below files to use the transform tool for Yolov3.
The “aml_npu_sdk.tgz” file only includes the three scripts for Inceptionv3 in the "./aml_npu_sdk/acuity-toolkit/conversion_scripts/" folder.
- 0_import_model.sh
- 1_quantize_model.sh
- 2_export_case_code.sh
The below messages show the folder structure of the "conversion_scripts” directory.
$ tar xvzf ./aml_npu_sdk.tgz
$ cd aml_npu_sdk
$ find . -name 0_import_model.sh
./acuity-toolkit/conversion_scripts/0_import_model.sh
$ tree ./acuity-toolkit/conversion_scripts/
./acuity-toolkit/conversion_scripts/
|-- 0_import_model.sh <============= It is example scripts for Inceptionv3 (w/o Yolov3).
|-- 1_quantize_model.sh
|-- 2_export_case_code.sh
|-- data
| |-- 0.jpg
| |-- dog_299.jpg
| |-- goldfish_224.jpg
| |-- space_shuttle_224.jpg
| `-- validation_tf.txt
|-- extractoutput.py
`-- model
|-- imagenet_slim_labels.txt
`-- inception_v3_2016_08_28_frozen.pb
2 directories, 11 files
I wonder where the files to transform Yolo model on VIM3 pro board such as Inceptionv3 model. Welcome to any comments.