Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,38 @@
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
+
tags:
|
4 |
+
- ocean
|
5 |
+
- midwater
|
6 |
+
- object-detection
|
7 |
---
|
8 |
+
|
9 |
+
# MBARI Midwater Supercategory Detector
|
10 |
+
|
11 |
+
## Model Details
|
12 |
+
- Trained by researchers at [CVisionAI](https://www.cvisionai.com/) and the [Monterey Bay Aquarium Research Institute](https://www.mbari.org/) (MBARI).
|
13 |
+
- [YOLOv5v6.2](https://github.com/ultralytics/yolov5/tree/v6.2)
|
14 |
+
- Object detection
|
15 |
+
- Fine tuned yolov5l to detect 22 morhpotaxonmic categories of midwater animals in the Greater Monterey Bay Area off the coast of Central California.
|
16 |
+
|
17 |
+
## Intended Use
|
18 |
+
- Make real time detections on video feed from MBARI Remotely Operated Vehicles.
|
19 |
+
- Post-process video collected in the region by MBARI vehicles.
|
20 |
+
|
21 |
+
## Factors
|
22 |
+
- Distribution shifts related to sampling platform, camera parameters, illumination, and deployment environment are expected to impact model performance.
|
23 |
+
- Evaluation was performed on an IID subset of available training data. Data to test out of distribution performance not currently available.
|
24 |
+
|
25 |
+
## Metrics
|
26 |
+
- Precision, Recall, and per class accuracy were evaluated at test time.
|
27 |
+
- [email protected] = 0.866
|
28 |
+
- Indicates reasonably good performance for target task.
|
29 |
+
|
30 |
+
## Training Data
|
31 |
+
- A combination of publicly available [FathomNet](https://fathomnet.org/fathomnet/#/) and internal MBARI data
|
32 |
+
|
33 |
+
## Deployment
|
34 |
+
In an environment running [YOLOv5v6.2](https://github.com/ultralytics/yolov5/tree/v6.2):
|
35 |
+
|
36 |
+
```
|
37 |
+
python classify/predict.py --weights best.pt --data data/images/
|
38 |
+
```
|