-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add documentation about ONNX models
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
nav: | ||
- index.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Machine learning models | ||
|
||
The Autoware perception stack uses models for inference. These models are automatically downloaded if using `ansible`, but they can also be downloaded manually. | ||
|
||
## ONNX model files | ||
|
||
### Download instructions | ||
|
||
The ONNX model files are stored in a common location, hosted by Web.Auto | ||
|
||
Any tool that can download files from the web (e.g. `wget` or `curl`) is the only requirement for downloading these files: | ||
|
||
```console | ||
$ wget https://awf.ml.dev.web.auto/perception/models/centerpoint/v2/pts_backbone_neck_head_centerpoint_tiny.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/centerpoint/v2/pts_backbone_neck_head_centerpoint.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/centerpoint/v2/pts_voxel_encoder_centerpoint_tiny.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/centerpoint/v2/pts_voxel_encoder_centerpoint.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/coco.names \ | ||
https://awf.ml.dev.web.auto/perception/models/hdl-64.caffemodel \ | ||
https://awf.ml.dev.web.auto/perception/models/label.txt \ | ||
https://awf.ml.dev.web.auto/perception/models/lamp_labels.txt \ | ||
https://awf.ml.dev.web.auto/perception/models/mb2-ssd-lite-tlr.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/traffic_light_classifier_mobilenetv2.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/vlp-16.caffemodel \ | ||
https://awf.ml.dev.web.auto/perception/models/vls-128.caffemodel \ | ||
https://awf.ml.dev.web.auto/perception/models/voc_labels_tl.txt \ | ||
https://awf.ml.dev.web.auto/perception/models/yolov3.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/yolov4-tiny.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/yolov4.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/yolov5l.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/yolov5m.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/yolov5s.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/yolov5x.onnx \ | ||
https://awf.ml.dev.web.auto/perception/models/yolox-tiny.onnx | ||
``` |