Views
No views yet
NOTE: This version of the model has been trained with a different band order that is not compatible with the newer versions and does not match the order proposed in the technical documentation of Sentinel-2.The following bands (in the specified order) were used to train the models with version 0.1.1:
- For models using Sentinel-1 only: Sentinel-1 bands
["VH", "VV"]- For models using Sentinel-2 only: Sentinel-2 10m bands and 20m bands
["B02", "B03", "B04", "B08", "B05", "B06", "B07", "B11", "B12", "B8A"]- For models using Sentinel-1 and Sentinel-2: Sentinel-2 10m bands and 20m bands and Sentinel-1 bands =
["B02", "B03", "B04", "B08", "B05", "B06", "B07", "B11", "B12", "B8A", "VH", "VV"]Newer models are compatible with the order in the technical documentation of Sentinel-2 and were trained with the following band order:
- For models using Sentinel-1 only: Sentinel-1 bands
["VV", "VH"]- For models using Sentinel-2 only: Sentinel-2 10m bands and 20m bands
["B02", "B03", "B04", "B05", "B06", "B07", "B08", "B8A", "B11", "B12"]- For models using Sentinel-1 and Sentinel-2: Sentinel-1 bands and Sentinel-2 10m bands and 20m bands
["VV", "VH", "B02", "B03", "B04", "B05", "B06", "B07", "B08", "B8A", "B11", "B12"]

| Metric | Macro | Micro |
|---|---|---|
| Average Precision | 0.514892 | 0.704338 |
| F1 Score | 0.401483 | 0.583373 |
| Precision | 0.514892 | 0.704338 |
| A Sentinel-1 image (VV, VH and VV/VH bands are used for visualization) |
|---|
![]() |
| Class labels | Predicted scores |
|---|---|
Agro-forestry areas Arable land Beaches, dunes, sands ... Urban fabric | 0.000558 0.000810 0.001116 ... 0.000963 |
configilm to use the provided code.1from reben_publication.BigEarthNetv2_0_ImageClassifier import BigEarthNetv2_0_ImageClassifier
2
3model = BigEarthNetv2_0_ImageClassifier.from_pretrained("path_to/huggingface_model_folder")1from reben_publication.BigEarthNetv2_0_ImageClassifier import BigEarthNetv2_0_ImageClassifier
2
3model = BigEarthNetv2_0_ImageClassifier.from_pretrained(
4 "BIFOLD-BigEarthNetv2-0/vit_base_patch8_224-s1-v0.1.1")1@article{clasen2024refinedbigearthnet,
2 title={reBEN: Refined BigEarthNet Dataset for Remote Sensing Image Analysis},
3 author={Clasen, Kai Norman and Hackel, Leonard and Burgert, Tom and Sumbul, Gencer and Demir, Beg{\"u}m and Markl, Volker},
4 year={2024},
5 eprint={2407.03653},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2407.03653},
9}1@article{hackel2024configilm,
2 title={ConfigILM: A general purpose configurable library for combining image and language models for visual question answering},
3 author={Hackel, Leonard and Clasen, Kai Norman and Demir, Beg{\"u}m},
4 journal={SoftwareX},
5 volume={26},
6 pages={101731},
7 year={2024},
8 publisher={Elsevier}
9}