[Q]
Custom Vision で作成した画像分類のAIモデルをローカルPC(エッジデバイス)上で実行したいです。
必要な手順を教えてください。
また、Pythonのサンプルコードはありますか?
[A]
AIモデルをコンパクトドメインに変換した上で、エクスポートする必要があります。
既存のモデルのドメインを変換してエクスポートする手順については、下記URLのドキュメントをご参照ください。
エクスポートしたAIモデルをローカルPC上で実行するには、下記URLのPythonのサンプルコードが参考になります。
チュートリアル: Python での TensorFlow モデルの実行
https://docs.microsoft.com/ja-jp/azure/cognitive-services/custom-vision-service/export-model-python
Sample scripts for exported models from Custom Vision Service.
https://github.com/Azure-Samples/customvision-export-samples
→ (TensorFlowでExportした場合)
https://github.com/Azure-Samples/customvision-export-samples/blob/main/samples/python/tensorflow/classification/predict.py
→ (ONNXでExportした場合)
https://github.com/Azure-Samples/customvision-export-samples/blob/main/samples/python/onnx/classification/predict.py
[更新日]
Update:202203