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

Varios Typos / fixes for tutorial #631

Open
wants to merge 3 commits into
base: master
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
10 changes: 5 additions & 5 deletions docs/digits-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ Add the Docker Engine Utility (nvidia-docker2) repository, install nvidia-docker
``` bash
$ curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | \
sudo apt-key add -
$ ccurl -s -L https://nvidia.github.io/nvidia-docker/ubuntu16.04/amd64/nvidia-docker.list | \
$ curl -s -L https://nvidia.github.io/nvidia-docker/ubuntu16.04/amd64/nvidia-docker.list | \
sudo tee /etc/apt/sources.list.d/nvidia-docker.list
$ csudo apt-get update
$ csudo apt-get install -y nvidia-docker2
$ csudo usermod -aG docker $USER
$ sudo apt-get update
$ sudo apt-get install -y nvidia-docker2
$ sudo usermod -aG docker $USER
$ sudo reboot
```

Expand Down Expand Up @@ -140,7 +140,7 @@ $ mkdir /home/username/digits-jobs

``` bash
$ nvidia-docker run --name digits -d -p 8888:5000 \
-v /home/username/data:/data:ro
-v /home/username/data:/data:ro \
-v /home/username/digits-jobs:/workspace/jobs nvcr.io/nvidia/digits:18.05
```

Expand Down
4 changes: 2 additions & 2 deletions docs/segnet-console.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ $ ./segnet-console drone_0428.png output_0428.png \
--prototxt=$NET/deploy.prototxt \
--model=$NET/snapshot_iter_22610.caffemodel \
--labels=$NET/fpv-labels.txt \
--colors=$NET/fpv-deploy-colors.txt \
--input_blob=data \
--colors=$NET/fpv-training-colors.txt \
--input_blob=data \
--output_blob=score_fr
```

Expand Down
2 changes: 1 addition & 1 deletion docs/segnet-patches.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ layer {

And on line 24 of `deploy.prototxt`, change `pad: 100` to `pad: 0`.

Finally, copy the `fpv-labels.txt` and `fpv-deploy-colors.txt` from the aerial dataset to your model snapshot folder on Jetson. Your FCN-Alexnet model snapshot is now compatible with TensorRT. Now we can run it on Jetson and perform inference on images.
Finally, copy the `fpv-labels.txt` and `fpv-training-colors.txt` from the aerial dataset to your model snapshot folder on Jetson. Your FCN-Alexnet model snapshot is now compatible with TensorRT. Now we can run it on Jetson and perform inference on images.

##
<p align="right">Next | <b><a href="segnet-console.md">Running Segmentation Models on Jetson</a></b>
Expand Down