Quick and easy profiling of CoreML models in Python!
#convert model using guide: https://apple.github.io/coremltools/docs-guides/source/introductory-quickstart.html
#or download one from the π€ Hub
from coremlprofiler import CoreMLProfiler
from huggingface_hub import snapshot_download
repo_path = snapshot_download(repo_id="FL33TW00D-HF/test-st", local_dir="./")
model_path = repo_path + "/sentence_transformer_all-MiniLM-L6-v2.mlpackage"
# Create the Profiler
profiler = CoreMLProfiler(model_path)
# Print your device usage
print(profiler.device_usage_summary_chart())
# Enjoy your nice plot!
Profile a local model:
coremlprofile path/to/my/model.mlpackage
Download from Hugging Face and profile:
coremlprofile --hf_repo="FL33TW00D-HF/test-st" sentence_transformer_all-MiniLM-L6-v2.mlpackage