From b79dd4f7dfd1aa014212f3e5d642c94c03080c63 Mon Sep 17 00:00:00 2001 From: Chitoku YATO Date: Fri, 12 Jan 2024 17:20:02 -0800 Subject: [PATCH 1/2] Adjust Learn More link vertical position --- docs/overrides/home.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/overrides/home.html b/docs/overrides/home.html index 6091a20a..92ce68c9 100644 --- a/docs/overrides/home.html +++ b/docs/overrides/home.html @@ -268,6 +268,8 @@ } .feature-box a .nv-teaser-text-link { + margin-block-start: 0em; + margin-block-end: 0em; font-weight: 700; padding-bottom: 15px !important; padding-top: 0px !important; From e69931d7b43e6691c30c4c2adb3fc6a9f0e6d204 Mon Sep 17 00:00:00 2001 From: Chitoku YATO Date: Wed, 17 Jan 2024 11:49:39 -0800 Subject: [PATCH 2/2] Add troubleshoot for gdown error --- docs/vit/tutorial_tam.md | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/docs/vit/tutorial_tam.md b/docs/vit/tutorial_tam.md index ef4f5ec6..eaf7bd4d 100644 --- a/docs/vit/tutorial_tam.md +++ b/docs/vit/tutorial_tam.md @@ -60,4 +60,39 @@ Check out the [official tutorial](https://github.com/gaomingqi/Track-Anything/bl \ No newline at end of file + + +## Troubleshooting + +### `FileNotFoundError: [Errno 2] No such file or directory: './checkpoints/E2FGVI-HQ-CVPR22.pth'` + +You may find the TAM app fails to download a checkpoint file `E2FGVI-HQ-CVPR22.pth`. + +``` +Downloading checkpoints from Google Drive... tips: If you cannot see the progress bar, please try to download it manuall and put it in the checkpointes directory. E2FGVI-HQ-CVPR22.pth: https://github.com/MCG-NKU/E2FGVI(E2FGVI-HQ model) +Access denied with the following error: + + Cannot retrieve the public link of the file. You may need to change + the permission to 'Anyone with the link', or have had many accesses. + +You may still be able to access the file from the browser: + + https://drive.google.com/uc?id=10wGdKSUOie0XmCr8SQ2A2FeDe-mfn5w3 + +``` + +You can manually download the checkpoint file on your Docker host machine. + +``` +cd jetson-containers/ +pip install gdown +source ~/.profile +gdown https://drive.google.com/uc?id=10wGdKSUOie0XmCr8SQ2A2FeDe-mfn5w3 +mv E2FGVI-HQ-CVPR22.pth ./data/models/tam/ +``` + +And you can try running the TAM container. + +``` +./run.sh $(./autotag tam) +``` \ No newline at end of file