File tree Expand file tree Collapse file tree
tutorials/Fine_Tuning_Vision Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11## Evaluating the Fine-tuned Model
2+
3+ To try this part of the tutorial, we will use the fine-tuned model ` best.pt ` created by the ultralytics-fine-tune job.
4+
5+ Your fine-tuned model will be accessible through Jupyter in this location
6+ ` $WORK -> vista -> jobUUID -> train -> weights -> best.pt `
7+
8+ You should already have the generated code that we tested accuracy on the base line model.
9+
10+ Now, just change the path of your model to the fine-tuned model path and re-run the code to test the accuracy.
11+
12+ When the code runs on the test data, you should see improved accuracy
13+
14+ ```
15+ Evaluation Metrics:
16+ Total images processed: 100
17+ Total animal images on (based label files): 71
18+ True Positives: 50
19+ True Negatives: 25
20+ False Positives: 4
21+ False Negatives: 21
22+ Overall detection accuracy: 0.75
23+ ```
24+
25+ As an exercise, you may train your model with more EPOCHS and see if this accuracy can be further improved.
You can’t perform that action at this time.
0 commit comments