Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e6b09be

Browse files
committedJan 5, 2025
fix: 🐛 title fix for Track Anything (TAM) documentation
Signed-off-by: Onuralp SEZER <thunderbirdtr@gmail.com>
1 parent f446f2a commit e6b09be

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
Document generation status: [![example workflow](https://github.com/NVIDIA-AI-IOT/jetson-generative-ai-playground/actions/workflows/ci.yml/badge.svg)](https://github.com/NVIDIA-AI-IOT/jetson-generative-ai-playground/actions)
44

5-
# About this repo
5+
## About this repo
66

77
This repo is to host a tutorial documentation site for running generative AI models on NVIDIA Jetson devices.
88

99
The auto generated documentation is hosted on the following, using their CI/CD feature to automatically generate/update the HTML documentation site upon new commit:
10+
1011
- [GitHub Pages site](https://nvidia-ai-iot.github.io/jetson-generative-ai-playground)
1112

1213
## How to use this repo locally
@@ -41,4 +42,3 @@ livereload ./site_postprocessed
4142

4243
> If you get "docker: Got permission denied while trying to connect to the Docker daemon socket at ..." error,
4344
> issue `sudo usermod -aG docker $USER; newgrp docker` to get around with the issue.
44-

‎docs/vit/tutorial_tam.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Tutorial - SAM (Segment Anything)
1+
# Tutorial - TAM (Track Anything)
22

3-
Let's run [`TAM`](https://github.com/gaomingqi/Track-Anything) to perform Segment Anything on videos on NVIDIA Jetson.
3+
Let's run [`TAM`](https://github.com/gaomingqi/Track-Anything) to perform Track Anything on videos on NVIDIA Jetson.
44

55
![](../images/TAM_screenshot_cat.png)
66

@@ -22,16 +22,16 @@ Let's run [`TAM`](https://github.com/gaomingqi/Track-Anything) to perform Segmen
2222

2323
4. Clone and setup [`jetson-containers`](https://github.com/dusty-nv/jetson-containers/blob/master/docs/setup.md){:target="_blank"}:
2424

25-
```bash
26-
git clone https://github.com/dusty-nv/jetson-containers
27-
bash jetson-containers/install.sh
28-
```
25+
```bash
26+
git clone https://github.com/dusty-nv/jetson-containers
27+
bash jetson-containers/install.sh
28+
```
2929

3030
## How to start
3131

3232
Use the `jetson-containers run` and `autotag` commands to automatically pull or build a compatible container image.
3333

34-
```
34+
```bash
3535
jetson-containers run $(autotag tam)
3636
```
3737

@@ -59,7 +59,7 @@ Check out the [official tutorial](https://github.com/gaomingqi/Track-Anything/bl
5959

6060
You may find the TAM app fails to download a checkpoint file `E2FGVI-HQ-CVPR22.pth`.
6161

62-
```
62+
```console
6363
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)
6464
Access denied with the following error:
6565

@@ -74,7 +74,7 @@ You may still be able to access the file from the browser:
7474

7575
You can manually download the checkpoint file on your Docker host machine.
7676

77-
```
77+
```bash
7878
cd jetson-containers/
7979
pip install gdown
8080
source ~/.profile
@@ -84,6 +84,6 @@ mv E2FGVI-HQ-CVPR22.pth ./data/models/tam/
8484

8585
And you can try running the TAM container.
8686

87-
```
87+
```bash
8888
jetson-containers run $(autotag tam)
89-
```
89+
```

0 commit comments

Comments
 (0)
Please sign in to comment.