Skip to content

Commit

Permalink
fix: 🐛 title fix for Track Anything (TAM) documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Onuralp SEZER <[email protected]>
  • Loading branch information
onuralpszr committed Jan 5, 2025
1 parent f446f2a commit e6b09be
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

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)

# About this repo
## About this repo

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

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:

- [GitHub Pages site](https://nvidia-ai-iot.github.io/jetson-generative-ai-playground)

## How to use this repo locally
Expand Down Expand Up @@ -41,4 +42,3 @@ livereload ./site_postprocessed

> If you get "docker: Got permission denied while trying to connect to the Docker daemon socket at ..." error,
> issue `sudo usermod -aG docker $USER; newgrp docker` to get around with the issue.
22 changes: 11 additions & 11 deletions docs/vit/tutorial_tam.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tutorial - SAM (Segment Anything)
# Tutorial - TAM (Track Anything)

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

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

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

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

```bash
git clone https://github.com/dusty-nv/jetson-containers
bash jetson-containers/install.sh
```
```bash
git clone https://github.com/dusty-nv/jetson-containers
bash jetson-containers/install.sh
```

## How to start

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

```
```bash
jetson-containers run $(autotag tam)
```

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

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

```
```console
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:

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

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

```
```bash
cd jetson-containers/
pip install gdown
source ~/.profile
Expand All @@ -84,6 +84,6 @@ mv E2FGVI-HQ-CVPR22.pth ./data/models/tam/

And you can try running the TAM container.

```
```bash
jetson-containers run $(autotag tam)
```
```

0 comments on commit e6b09be

Please sign in to comment.