Hello All,
I was trying to run some tutorial models such as EfficientViT and NanoSam on my Jetson Orin NX with the supplied Tutorial : EfficientViT - NVIDIA Jetson AI Lab
I am having a hard time following since the container that started once did not have the same file structure. I wasn’t able to find anything related to those models above.
The following are the steps that I have followed :
git clone GitHub - dusty-nv/jetson-containers: Machine Learning Containers for NVIDIA Jetson and JetPack-L4T
bash jetson-containers/install.sh
jetson-containers run $(autotag efficientvit)
once container started running:
root@jetson-desktop:/data# mkdir -p /data/models/efficientvit/sam/
cd /data/models/efficientvit/sam/
wget https://huggingface.co/han-cai/efficientvit-sam/resolve/main/l2.pt
–2024-10-23 13:01:25-- https://huggingface.co/han-cai/efficientvit-sam/resolve/main/l2.pt
Resolving huggingface.co (huggingface.co)… 2600:9000:2831:3a00:17:b174:6d00:93a1, 2600:9000:2831:b800:17:b174:6d00:93a1, 2600:9000:2831:c00:17:b174:6d00:93a1, …
Connecting to huggingface.co (huggingface.co)|2600:9000:2831:3a00:17:b174:6d00:93a1|:443… connected.
HTTP request sent, awaiting response… 307 Temporary Redirect
Location: /mit-han-lab/efficientvit-sam/resolve/main/l2.pt [following]
–2024-10-23 13:01:26-- https://huggingface.co/mit-han-lab/efficientvit-sam/resolve/main/l2.pt
Reusing existing connection to [huggingface.co]:443.
HTTP request sent, awaiting response… 404 Not Found
2024-10-23 13:01:26 ERROR 404: Not Found.
root@jetson-desktop:/data/models/efficientvit/sam#
and in the /opt directory:
root@jetson-desktop:/data/models/efficientvit/sam# cd /opt
root@jetson-desktop:/opt# ls
nvidia torchvision-0.19.1a0+6194369-cp310-cp310-linux_aarch64.whl
Could someone please point out to what I am doing wrong?
Thank you!!