Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -8,14 +8,20 @@ pretty_name: CSIRO Crown-of-Thorns Starfish (COTS) Detection Dataset — YOLO Fo
|
|
8 |
size_categories:
|
9 |
- n<1K
|
10 |
---
|
11 |
-
# CSIRO Crown-of-Thorns Starfish (COTS) Detection Dataset — YOLO Format
|
|
|
|
|
12 |
|
13 |
This dataset is a **modified version** of the [CSIRO COTS and COTS Scars Dataset](https://data.csiro.au/collection/csiro:64235), originally released under the [Creative Commons Attribution 4.0 License (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/).
|
14 |
|
|
|
|
|
|
|
|
|
15 |
>**Please cite the original dataset authors if you use this dataset in your work.**
|
16 |
|
17 |
|
18 |
-
|
19 |
|
20 |
```bibtex
|
21 |
@dataset{csiro_cots_2024,
|
@@ -29,18 +35,42 @@ This dataset is a **modified version** of the [CSIRO COTS and COTS Scars Dataset
|
|
29 |
}
|
30 |
```
|
31 |
|
32 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
-
The original dataset contains images and annotations for **Crown-of-Thorns Starfish (COTS)** and **COTS scars**, collected to support coral reef monitoring and control efforts on the Great Barrier Reef (GBR). These starfish are coral predators, and their outbreaks can severely damage reef ecosystems.
|
35 |
|
36 |
|
37 |
-
# Example of use with finetuned yolo11m
|
38 |
|
39 |
-
|
40 |
|
41 |
[](https://huggingface.co/spaces/eloise54/cots_detection_project)
|
42 |
|
43 |
-
Gitlab repository containing full training pipeline:
|
|
|
44 |
* original [CSIRO COTS and COTS Scars Dataset](https://data.csiro.au/collection/csiro:64235) download
|
45 |
* modifications done to make this current dataset
|
46 |
* yolov11m finetuning
|
@@ -50,8 +80,7 @@ Gitlab repository containing full training pipeline:
|
|
50 |
|
51 |
|
52 |
|
53 |
-
|
54 |
-
## 🔧 Modifications
|
55 |
|
56 |
Here is the list of the modification made on the original [CSIRO COTS and COTS Scars Dataset](https://data.csiro.au/collection/csiro:64235):
|
57 |
|
@@ -74,32 +103,6 @@ cots_yolo_dataset/
|
|
74 |
└── cots_yolo_dataset.yaml
|
75 |
```
|
76 |
|
77 |
-
## How to use this dataset ?
|
78 |
-
|
79 |
-
### Training
|
80 |
-
|
81 |
-
```
|
82 |
-
git clone https://huggingface.co/datasets/eloise54/cots_yolo_dataset
|
83 |
-
pip install ultralytics
|
84 |
-
```
|
85 |
-
|
86 |
-
In a python file:
|
87 |
-
|
88 |
-
```
|
89 |
-
from ultralytics import YOLO
|
90 |
-
|
91 |
-
# Dowload pretrained model
|
92 |
-
import urllib.request
|
93 |
-
url = 'https://github.com/ultralytics/assets/releases/download/v8.3.0/yolo11m.pt'
|
94 |
-
urllib.request.urlretrieve(url, 'yolo11m.pt')
|
95 |
-
|
96 |
-
# Load a pretrain model
|
97 |
-
model = YOLO('yolo11m.pt')
|
98 |
-
results = model.train(data='data/cots_yolo_dataset/cots_yolo_dataset.yaml', epochs=20, task='detect')
|
99 |
-
```
|
100 |
-
|
101 |
-
### Inference without downloading everything
|
102 |
|
103 |
-
[notebook link](https://gitlab.com/robotics2ai/cots_detection_project/-/blob/main/yolo_predict_and_display.ipynb?ref_type=heads)
|
104 |
|
105 |
|
|
|
8 |
size_categories:
|
9 |
- n<1K
|
10 |
---
|
11 |
+
# 🪸 CSIRO Crown-of-Thorns Starfish (COTS) Detection Dataset — YOLO Format
|
12 |
+
|
13 |
+
[](https://huggingface.co/spaces/eloise54/cots_detection_project)
|
14 |
|
15 |
This dataset is a **modified version** of the [CSIRO COTS and COTS Scars Dataset](https://data.csiro.au/collection/csiro:64235), originally released under the [Creative Commons Attribution 4.0 License (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/).
|
16 |
|
17 |
+
The original dataset contains images and annotations for **Crown-of-Thorns Starfish (COTS)** and **COTS scars**, collected to support coral reef monitoring and control efforts on the Great Barrier Reef (GBR).
|
18 |
+
|
19 |
+
These starfish are coral predators, and their outbreaks can severely damage reef ecosystems.
|
20 |
+
|
21 |
>**Please cite the original dataset authors if you use this dataset in your work.**
|
22 |
|
23 |
|
24 |
+
# 🙏 Citation
|
25 |
|
26 |
```bibtex
|
27 |
@dataset{csiro_cots_2024,
|
|
|
35 |
}
|
36 |
```
|
37 |
|
38 |
+
# 🔧 How to use this dataset ?
|
39 |
+
|
40 |
+
#### Training
|
41 |
+
|
42 |
+
```
|
43 |
+
git clone https://huggingface.co/datasets/eloise54/cots_yolo_dataset
|
44 |
+
pip install ultralytics
|
45 |
+
```
|
46 |
+
|
47 |
+
In a python file:
|
48 |
+
|
49 |
+
```
|
50 |
+
from ultralytics import YOLO
|
51 |
+
|
52 |
+
# Dowload pretrained model
|
53 |
+
import urllib.request
|
54 |
+
url = 'https://github.com/ultralytics/assets/releases/download/v8.3.0/yolo11m.pt'
|
55 |
+
urllib.request.urlretrieve(url, 'yolo11m.pt')
|
56 |
+
|
57 |
+
# Load a pretrain model
|
58 |
+
model = YOLO('yolo11m.pt')
|
59 |
+
results = model.train(data='data/cots_yolo_dataset/cots_yolo_dataset.yaml', epochs=20, task='detect')
|
60 |
+
```
|
61 |
+
|
62 |
+
Example of inference without downloading everything : [notebook link](https://gitlab.com/robotics2ai/cots_detection_project/-/blob/main/yolo_predict_and_display.ipynb?ref_type=heads)
|
63 |
|
|
|
64 |
|
65 |
|
66 |
+
# 🤗 Example of use with finetuned yolo11m
|
67 |
|
68 |
+
Demo on Hugging Face Spaces:
|
69 |
|
70 |
[](https://huggingface.co/spaces/eloise54/cots_detection_project)
|
71 |
|
72 |
+
Gitlab repository containing full training pipeline:
|
73 |
+
|
74 |
* original [CSIRO COTS and COTS Scars Dataset](https://data.csiro.au/collection/csiro:64235) download
|
75 |
* modifications done to make this current dataset
|
76 |
* yolov11m finetuning
|
|
|
80 |
|
81 |
|
82 |
|
83 |
+
# 🔧 Modifications
|
|
|
84 |
|
85 |
Here is the list of the modification made on the original [CSIRO COTS and COTS Scars Dataset](https://data.csiro.au/collection/csiro:64235):
|
86 |
|
|
|
103 |
└── cots_yolo_dataset.yaml
|
104 |
```
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
|
|
107 |
|
108 |
|