Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dusty-nv committed Apr 5, 2023
1 parent 238cf5e commit 2f44bde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Hello AI World can be run completely onboard your Jetson, including inferencing
* [Coding Your Own Image Recognition Program (Python)](docs/imagenet-example-python-2.md)
* [Coding Your Own Image Recognition Program (C++)](docs/imagenet-example-2.md)
* [Running the Live Camera Recognition Demo](docs/imagenet-camera-2.md)
* [Multi-Label Classification for Image Tagging](docs/imagenet-tagging.md)
* [Object Detection](docs/detectnet-console-2.md)
* [Detecting Objects from Images](docs/detectnet-console-2.md#detecting-objects-from-the-command-line)
* [Running the Live Camera Detection Demo](docs/detectnet-camera-2.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/imagenet-camera-2.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<img src="https://github.com/dusty-nv/jetson-inference/raw/master/docs/images/deep-vision-header.jpg" width="100%">
<p align="right"><sup><a href="imagenet-example-2.md">Back</a> | <a href="detectnet-console-2.md">Next</a> | </sup><a href="../README.md#hello-ai-world"><sup>Contents</sup></a>
<p align="right"><sup><a href="imagenet-example-2.md">Back</a> | <a href="imagenet-tagging.md">Next</a> | </sup><a href="../README.md#hello-ai-world"><sup>Contents</sup></a>
<br/>
<sup>Image Classification</sup></p>

Expand Down Expand Up @@ -47,7 +47,7 @@ The application can recognize up to 1000 different types of objects, since the c
This concludes this section of the Hello AI World tutorial on image classification. Next, we're going to start using Object Detection networks, which provide us with the bounding box coordinates of multiple objects per frame.

##
<p align="right">Next | <b><a href="detectnet-console-2.md">Locating Object Coordinates with DetectNet</a></b>
<p align="right">Next | <b><a href="imagenet-tagging.md">Multi-Label Classification for Image Tagging</a></b>
<br/>
Back | <b><a href="imagenet-example-2.md">Coding Your Own Image Recognition Program</a></p>
</b><p align="center"><sup>© 2016-2019 NVIDIA | </sup><a href="../README.md#hello-ai-world"><sup>Table of Contents</sup></a></p>
4 changes: 2 additions & 2 deletions docs/imagenet-tagging.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ $ imagenet --model=resnet18-tagging-voc --topK=0 --threshold=0.25 "images/object
$ imagenet.py --model=resnet18-tagging-voc --topK=0 --threshold=0.25 "images/object_*.jpg" images/test/tagging_%i.jpg"
```

Using `--topK=0` means that all the classes with a confidence score exceeding the threshold will be returned.
Using `--topK=0` means that all the classes with a confidence score exceeding the threshold will be returned by the classifier.

<p align="right">Next | <b><a href="detectnet-console-2.md">Object Detection</a></b>
<p align="right">Next | <b><a href="detectnet-console-2.md">Detecting Objects from Images</a></b>
<br/>
Back | <b><a href="imagenet-camera-2.md">Running the Live Camera Recognition Demo</a></p>
</b><p align="center"><sup>© 2016-2023 NVIDIA | </sup><a href="../README.md#hello-ai-world"><sup>Table of Contents</sup></a></p>

0 comments on commit 2f44bde

Please sign in to comment.