Skip to content

Commit be7ece1

Browse files
author
Daniel Myhrman
committed
Fix links
1 parent c31fd2a commit be7ece1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@ Accuracy test for the object detection models have never been evaluated on an Ax
107107
the accuracy results come from
108108
[Coral object detection models](https://coral.ai/models/object-detection/), except our
109109
custom-trained YOLOv5, which were evaluated during the "Evaluate the model accuracy" step in the
110-
[YOLOv5 on ARTPEC-8 guide](docs/yolov5-on-artpec8.md) and
111-
[YOLOv5 or ARTPEC-9 guide](docs/yolov5-on-artpec9.md).
110+
[YOLOv5 guide (ARTPEC-8 and ARTPEC-9)](docs/yolov5.md)
112111

113112
## License
114113

docs/yolov5.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,19 @@ Download the model patch and apply it.
2424
> You need to download the correct patch for your device's system-on-chip (ARTPEC-8 or ARTPEC-9).
2525
2626
For **ARTPEC-8**:
27+
2728
```bash
2829
curl -L https://acap-ml-models.s3.amazonaws.com/yolov5/yolov5_artpec8.patch | git apply
2930
```
3031

3132
For **ARTPEC-9**:
33+
3234
```bash
3335
curl -L https://acap-ml-models.s3.amazonaws.com/yolov5/yolov5_artpec9.patch | git apply
3436
```
3537

3638
Install the required libraries located in requirements file in the yolov5 repository.
39+
3740
```bash
3841
pip install -r requirements.txt
3942
```
@@ -53,11 +56,13 @@ We also provide checkpoint weights for yolov5n, yolov5s, and yolov5m, which you
5356
### 3. Export the model
5457

5558
Export the model for **ARTPEC-8**:
59+
5660
```bash
5761
python3 export.py --weights runs/train/axis-train/weights/best.pt --include tflite --int8 --per-tensor
5862
```
5963

6064
Export the model for **ARTPEC-9**:
65+
6166
```bash
6267
python3 export.py --weights runs/train/axis-train/weights/best.pt --include tflite --int8
6368
```

0 commit comments

Comments
 (0)