Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 🐛 title fix for Track Anything (TAM) documentation #242

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
```
```