Update README.md
Browse files
README.md
CHANGED
@@ -1,7 +1,4 @@
|
|
1 |
---
|
2 |
-
license: mit
|
3 |
-
base_model:
|
4 |
-
- Ultralytics/YOLO11
|
5 |
---
|
6 |
|
7 |
# Scientific Context
|
@@ -25,21 +22,36 @@ base_model:
|
|
25 |
|
26 |
'''python
|
27 |
|
28 |
-
|
29 |
|
30 |
-
|
|
|
31 |
|
32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
-
|
35 |
|
36 |
-
|
|
|
|
|
37 |
|
38 |
### Model Assesment
|
39 |
|
40 |
-
|
41 |
|
|
|
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
|
|
|
|
1 |
---
|
|
|
|
|
|
|
2 |
---
|
3 |
|
4 |
# Scientific Context
|
|
|
22 |
|
23 |
'''python
|
24 |
|
25 |
+
model = YOLO('/content/runs/detect/train3/weights/best.pt')
|
26 |
|
27 |
+
#path to Yaml
|
28 |
+
dataset_config = '/content/Dataset/data.yaml'
|
29 |
|
30 |
+
#Train the model
|
31 |
+
results = model.train(
|
32 |
+
data=dataset_config,
|
33 |
+
epochs=50,
|
34 |
+
batch=-1,
|
35 |
+
imgsz=640,
|
36 |
+
plots=True,
|
37 |
+
patience=50,
|
38 |
|
39 |
+
)
|
40 |
|
41 |
+
|
42 |
+
print(results)
|
43 |
+
'''
|
44 |
|
45 |
### Model Assesment
|
46 |
|
47 |
+
.png?download=true)
|
48 |
|
49 |
+
<!-- F1-confidence curves shows us the ideal balance between precision and recall and how that changes with confidence. My model shows decent F1 scores for CU_non_pup and ZC_non_pup around 0.3 confidence but struggles with all of the other classes.-->
|
50 |
|
51 |
+
.png?download=true)
|
52 |
|
53 |
+
<!-- Normalized Confusion Matrix shows the percentage of true predictions against all of the other classes in the dataset. Here we can see that my model has difficulties correctly predicting some of my smaller classes as well as the pups.-->
|
54 |
|
55 |
+
### Model Assesment
|
56 |
|
57 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app --> This model is to be used by scientist studying Pinniped populations and destributions on the California Coastline. It could be used to show changing population dynamics between eg. California Sea Lions and Northern Fur Seals.
|