Add README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- yolo11
|
| 5 |
+
- ultralytics
|
| 6 |
+
- image-segmentation
|
| 7 |
+
- deep-learning
|
| 8 |
+
- satellite
|
| 9 |
+
- rso-detection
|
| 10 |
+
datasets:
|
| 11 |
+
- custom
|
| 12 |
+
library_name: ultralytics
|
| 13 |
+
base_model: yolo11
|
| 14 |
+
pipeline_tag: image-segmentation
|
| 15 |
+
inference: true
|
| 16 |
+
widget:
|
| 17 |
+
- src: "example_image.jpg"
|
| 18 |
+
example_title: "RSO Detection"
|
| 19 |
+
model-index:
|
| 20 |
+
- name: best
|
| 21 |
+
results:
|
| 22 |
+
- task:
|
| 23 |
+
type: image-segmentation
|
| 24 |
+
name: Instance Segmentation
|
| 25 |
+
dataset:
|
| 26 |
+
name: RSO Detection Dataset
|
| 27 |
+
type: custom
|
| 28 |
+
metrics:
|
| 29 |
+
- name: Mean Average Precision (mAP@50)
|
| 30 |
+
type: mean_average_precision
|
| 31 |
+
value: 0.8750
|
| 32 |
+
- name: Mean Average Precision (mAP@50-95)
|
| 33 |
+
type: mean_average_precision
|
| 34 |
+
value: 0.6194
|
| 35 |
+
fine-tuned-from: Ultralytics/YOLO11
|
| 36 |
+
labels:
|
| 37 |
+
- streak
|
| 38 |
+
metadata:
|
| 39 |
+
label2id:
|
| 40 |
+
streak: 0
|
| 41 |
+
id2label:
|
| 42 |
+
0: streak
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
# best
|
| 46 |
+
|
| 47 |
+
## Model Information
|
| 48 |
+
This is a YOLO11-based segmentation model for detecting Resident Space Objects (RSOs) in satellite imagery.
|
| 49 |
+
|
| 50 |
+
## Classes
|
| 51 |
+
- **streak**: Class 0
|
| 52 |
+
|
| 53 |
+
## Usage
|
| 54 |
+
```python
|
| 55 |
+
from huggingface_hub import InferenceClient
|
| 56 |
+
|
| 57 |
+
client = InferenceClient(model="best")
|
| 58 |
+
result = client.image_segmentation(image)
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
## Training Metrics
|
| 62 |
+
- mAP@50: 0.8750
|
| 63 |
+
- mAP@50-95: 0.6194
|