Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- mars
|
| 5 |
+
- mars-bench
|
| 6 |
+
- planetary-science
|
| 7 |
+
- computer-vision
|
| 8 |
+
- image-classification
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# frost-classification
|
| 12 |
+
|
| 13 |
+
## Model Description
|
| 14 |
+
|
| 15 |
+
Swin Transformer model for frost classification on Mars
|
| 16 |
+
|
| 17 |
+
**Task:** Image Classification
|
| 18 |
+
|
| 19 |
+
**Original Checkpoint:** `FrostClassification_SwinTransformer.ckpt`
|
| 20 |
+
|
| 21 |
+
## Mars-Bench
|
| 22 |
+
|
| 23 |
+
This model is part of the Mars-Bench benchmark, a comprehensive suite of models for Mars surface analysis tasks.
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
# Load the model checkpoint
|
| 29 |
+
import torch
|
| 30 |
+
|
| 31 |
+
model = torch.load('model.ckpt')
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## Citation
|
| 35 |
+
|
| 36 |
+
If you use this model, please cite the Mars-Bench paper:
|
| 37 |
+
|
| 38 |
+
```bibtex
|
| 39 |
+
@article{marsbench2024,
|
| 40 |
+
title={Mars-Bench: A Benchmark for Mars Surface Analysis},
|
| 41 |
+
author={Your Citation Here},
|
| 42 |
+
year={2024}
|
| 43 |
+
}
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
## License
|
| 47 |
+
|
| 48 |
+
This model is released under the Apache 2.0 license.
|