Add acknoledgements
Browse files
README.md
CHANGED
|
@@ -66,9 +66,22 @@ The model implements several key architectural components:
|
|
| 66 |
|
| 67 |
The model has been trained for 20,000 iterations with careful monitoring of PSNR and SSIM metrics on satellite imagery validation data.
|
| 68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
## Citation
|
| 70 |
|
| 71 |
-
If you use this model in your research, please cite the original HAT paper:
|
| 72 |
|
| 73 |
```bibtex
|
| 74 |
@article{chen2023hat,
|
|
@@ -77,4 +90,11 @@ If you use this model in your research, please cite the original HAT paper:
|
|
| 77 |
journal={arXiv preprint arXiv:2205.04437},
|
| 78 |
year={2022}
|
| 79 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
```
|
|
|
|
| 66 |
|
| 67 |
The model has been trained for 20,000 iterations with careful monitoring of PSNR and SSIM metrics on satellite imagery validation data.
|
| 68 |
|
| 69 |
+
## Acknowledgments
|
| 70 |
+
|
| 71 |
+
This model is a fine tuned version of **HAT (Hybrid Attention Transformer)** and trained on the **SEN2NAIPv2** dataset.
|
| 72 |
+
|
| 73 |
+
### Base Model: HAT
|
| 74 |
+
- **GitHub Repository**: [https://github.com/XPixelGroup/HAT](https://github.com/XPixelGroup/HAT)
|
| 75 |
+
- **Paper**: [Activating More Pixels in Image Super-Resolution Transformer](https://arxiv.org/abs/2205.04437)
|
| 76 |
+
- **Authors**: Xiangyu Chen, Xintao Wang, Jiantao Zhou, Yu Qiao, Chao Dong
|
| 77 |
+
|
| 78 |
+
### Training Dataset: SEN2NAIPv2
|
| 79 |
+
- **HuggingFace Dataset**: [https://huggingface.co/datasets/tacofoundation/SEN2NAIPv2](https://huggingface.co/datasets/tacofoundation/SEN2NAIPv2)
|
| 80 |
+
- **Description**: High-resolution satellite imagery dataset for super-resolution tasks
|
| 81 |
+
|
| 82 |
## Citation
|
| 83 |
|
| 84 |
+
If you use this model in your research, please cite both the original HAT paper and the SEN2NAIPv2 dataset:
|
| 85 |
|
| 86 |
```bibtex
|
| 87 |
@article{chen2023hat,
|
|
|
|
| 90 |
journal={arXiv preprint arXiv:2205.04437},
|
| 91 |
year={2022}
|
| 92 |
}
|
| 93 |
+
|
| 94 |
+
@misc{sen2naipv2,
|
| 95 |
+
title={SEN2NAIPv2: A Large-Scale Dataset for Satellite Image Super-Resolution},
|
| 96 |
+
author={TACO Foundation},
|
| 97 |
+
year={2024},
|
| 98 |
+
url={https://huggingface.co/datasets/tacofoundation/SEN2NAIPv2}
|
| 99 |
+
}
|
| 100 |
```
|
app.py
CHANGED
|
@@ -826,6 +826,21 @@ with gr.Blocks(css=css, title="HAT Super-Resolution for Satellite Images") as if
|
|
| 826 |
gr.Markdown("Upload a satellite image or select a sample to enhance its resolution by 4x.")
|
| 827 |
gr.Markdown("⚠️ **Important**: Images must be exactly **130x130 pixels** for the model to work properly.")
|
| 828 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 829 |
# Sample images
|
| 830 |
sample_images = get_sample_images()
|
| 831 |
sample_buttons = []
|
|
|
|
| 826 |
gr.Markdown("Upload a satellite image or select a sample to enhance its resolution by 4x.")
|
| 827 |
gr.Markdown("⚠️ **Important**: Images must be exactly **130x130 pixels** for the model to work properly.")
|
| 828 |
|
| 829 |
+
# Acknowledgments section
|
| 830 |
+
with gr.Accordion("Acknowledgments", open=False):
|
| 831 |
+
gr.Markdown("""
|
| 832 |
+
### Base Model: HAT (Hybrid Attention Transformer)
|
| 833 |
+
This model is a fine tuned version of **HAT**:
|
| 834 |
+
- **GitHub Repository**: [https://github.com/XPixelGroup/HAT](https://github.com/XPixelGroup/HAT)
|
| 835 |
+
- **Paper**: [Activating More Pixels in Image Super-Resolution Transformer](https://arxiv.org/abs/2205.04437)
|
| 836 |
+
- **Authors**: Xiangyu Chen, Xintao Wang, Jiantao Zhou, Yu Qiao, Chao Dong
|
| 837 |
+
|
| 838 |
+
### Training Dataset: SEN2NAIPv2
|
| 839 |
+
The model was fine-tuned using the **SEN2NAIPv2** dataset:
|
| 840 |
+
- **HuggingFace Dataset**: [https://huggingface.co/datasets/tacofoundation/SEN2NAIPv2](https://huggingface.co/datasets/tacofoundation/SEN2NAIPv2)
|
| 841 |
+
- **Description**: High-resolution satellite imagery dataset for super-resolution tasks
|
| 842 |
+
""")
|
| 843 |
+
|
| 844 |
# Sample images
|
| 845 |
sample_images = get_sample_images()
|
| 846 |
sample_buttons = []
|