soumyadipkarforma commited on
Commit
41f9bc9
·
verified ·
1 Parent(s): b94e262

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: agpl-3.0
3
+ tags:
4
+ - solar
5
+ - astronomy
6
+ - image-classification
7
+ - solarhub
8
+ - prominence
9
+ datasets:
10
+ - SpaceGen/solarhub-prominence
11
+ ---
12
+
13
+ # SolarHub — Prominence Model
14
+
15
+ Image classification model for the **Prominence** task in the
16
+ [SolarHub](https://github.com/space-gen/aurora) citizen-science
17
+ solar-observation classification project.
18
+
19
+ This model is trained nightly by a Kaggle kernel on annotations collected
20
+ from [SpaceGen/solarhub-prominence](https://huggingface.co/datasets/SpaceGen/solarhub-prominence) and pushed
21
+ directly to this repository from the Kaggle training environment.
22
+
23
+ ## Usage
24
+
25
+ ```python
26
+ from huggingface_hub import hf_hub_download
27
+
28
+ model_path = hf_hub_download(repo_id="SpaceGen/solarhub-model-prominence", filename="model.pt")
29
+ ```