Skip to content

Commit

Permalink
docs: add documentation about ONNX models
Browse files Browse the repository at this point in the history
  • Loading branch information
esteve committed Jul 12, 2023
1 parent fe8519c commit 1fa5963
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/models/.pages
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nav:
- index.md
35 changes: 35 additions & 0 deletions docs/models/index.md
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
```

0 comments on commit 1fa5963

Please sign in to comment.