Upload README.md with huggingface_hub
Browse files
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 |
+
- active_region
|
| 9 |
+
datasets:
|
| 10 |
+
- SpaceGen/solarhub-active-region
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# SolarHub — Active Region Model
|
| 14 |
+
|
| 15 |
+
Image classification model for the **Active Region** 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-active-region](https://huggingface.co/datasets/SpaceGen/solarhub-active-region) 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-active-region", filename="model.pt")
|
| 29 |
+
```
|