LexBwmn commited on
Commit
e40e5e7
·
verified ·
1 Parent(s): 6a0353b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -99,6 +99,9 @@ For the most reliable results, I recommend the following inference settings base
99
  * **Recommended Confidence:** `0.466`
100
  * **Image Size:** `640x640`
101
 
 
 
 
102
  ```python
103
  from ultralytics import YOLO
104
 
@@ -106,4 +109,17 @@ from ultralytics import YOLO
106
  model = YOLO('ACE-V1.1.pt')
107
 
108
  # Run inference with the optimal threshold
109
- results = model.predict(source='mri_scan.jpg', conf=0.466, save=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  * **Recommended Confidence:** `0.466`
100
  * **Image Size:** `640x640`
101
 
102
+ ### Usage Guide
103
+ To run inference with the ACE-V1.1 weights, use the following snippet:
104
+
105
  ```python
106
  from ultralytics import YOLO
107
 
 
109
  model = YOLO('ACE-V1.1.pt')
110
 
111
  # Run inference with the optimal threshold
112
+ results = model.predict(source='mri_scan.jpg', conf=0.466, save=True)
113
+ ```
114
+
115
+ ### Citation
116
+ @misc{bowman2026acev11,
117
+ author = {Bowman, Alexa},
118
+ title = {ACE-V1.1: Optimized Brain Tumor Detection with 1.00 Background Specificity},
119
+ year = {2026},
120
+ publisher = {Hugging Face},
121
+ howpublished = {\url{[https://huggingface.co/LexBwmn/ACE-V1](https://huggingface.co/LexBwmn/ACE-V1)}},
122
+ note = {Fine-tuned YOLO11 on the BRISC 2025 Dataset (arXiv:2506.14318)},
123
+ version = {1.1.0},
124
+ hash = {0eed1ebda4a95f71720b26d0f81de960f3e5837ffa4c0c88e2bb26813b355fe2}
125
+ }