norbertm commited on
Commit
e061e26
·
verified ·
1 Parent(s): bc85e76

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - computer-vision
6
+ - object-detection
7
+ - astronomy
8
+ - jwst
9
+ - yolo
10
+ - ultralytics
11
+ license: mit
12
+ datasets:
13
+ - norbertm/jwst-quality-analysis-dataset
14
+ metrics:
15
+ - mAP50
16
+ - precision
17
+ - recall
18
+ ---
19
+
20
+ # JWST Astronomical Object Detection Model
21
+
22
+ This is a fine-tuned YOLO model specifically trained for detecting astronomical objects in JWST (James Webb Space Telescope) images.
23
+
24
+ ## Model Details
25
+
26
+ - **Architecture**: YOLOv8n (nano)
27
+ - **Training Data**: 2,587 high-quality JWST images
28
+ - **Classes**: 2 (bright_object, galaxy_like)
29
+ - **Performance**: 26.7% mAP50, 52.7% precision on bright objects
30
+ - **Training Time**: 75 epochs (~25 hours)
31
+
32
+ ## Usage
33
+
34
+ ```python
35
+ from ultralytics import YOLO
36
+
37
+ # Load the model
38
+ model = YOLO("norbertm/jwst-astronomical-detection")
39
+
40
+ # Run inference
41
+ results = model("path/to/jwst/image.png", conf=0.15)
42
+ ```
43
+
44
+ ## Training Details
45
+
46
+ - **Dataset**: 2,587 JWST images with automated annotations
47
+ - **Instruments**: NIRCAM (Near-Infrared Camera)
48
+ - **Filters**: F090W, F150W, F200W, F277W, F356W, F444W
49
+ - **Targets**: Stephan's Quintet, M16, NGC 3324, NGC 3132, SMACS J0723.3-7327, WASP-39b
50
+
51
+ ## Research Applications
52
+
53
+ - Automated astronomical object detection
54
+ - Multi-wavelength object correlation
55
+ - Quality assessment of JWST data
56
+ - Large-scale astronomical surveys
57
+
58
+ ## Citation
59
+
60
+ If you use this model in your research, please cite:
61
+
62
+ ```bibtex
63
+ @dataset{jwst_quality_analysis,
64
+ title={JWST Quality Analysis Dataset},
65
+ author={Your Name},
66
+ year={2024},
67
+ url={https://huggingface.co/datasets/norbertm/jwst-quality-analysis-dataset}
68
+ }
69
+ ```
70
+
71
+ ## License
72
+
73
+ MIT License - see LICENSE file for details.