# Upload Guide This directory is prepared as a Hugging Face model repository. ## Option 1: Upload with Hugging Face CLI ```bash cd /root/supertonic uvx --from "huggingface_hub[cli]" hf auth login uvx --from "huggingface_hub[cli]" hf repo create YOUR_ORG/supertonic-rknn-rk3588 --type model uvx --from "huggingface_hub[cli]" hf upload YOUR_ORG/supertonic-rknn-rk3588 artifacts/huggingface/supertonic-rknn-rk3588 . ``` ## Option 2: Upload with Git LFS ```bash cd /root/supertonic git clone https://huggingface.co/YOUR_ORG/supertonic-rknn-rk3588 /tmp/supertonic-rknn-rk3588-hf rsync -a artifacts/huggingface/supertonic-rknn-rk3588/ /tmp/supertonic-rknn-rk3588-hf/ cd /tmp/supertonic-rknn-rk3588-hf git lfs install git add . git commit -m "Add RKNN static shape matrix" git push ``` The `.gitattributes` file tracks `*.rknn`, `*.wav`, and `*.log` with Git LFS.