Updated links to new dataset viewer pre-defined queries
Browse files- README.md +4 -4
- ben_txt_datamodule.py +2 -2
README.md
CHANGED
|
@@ -86,13 +86,13 @@ The `BigEarthNet.txt.parquet` file contains multiple attributes:
|
|
| 86 |
- `input`: The instruction or question for the VLM.
|
| 87 |
- `output`: The reference answer.
|
| 88 |
- `type`: The broader task-type of the sample, i.e., `binary`, `mcq`, `captioning`, or `bounding box`.
|
| 89 |
-
- `category`: The more fine-grained task-type. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/
|
| 90 |
- `split`: The associated split of the sample, i.e., `train`, `validation`, `test`, or `bench`.
|
| 91 |
- `latitude`: The latitude coordinates of the center of the image patch.
|
| 92 |
- `longitude`: The longitude coordinates of the center of the image patch.
|
| 93 |
-
- `country`: The acquisition country of the image patch. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/
|
| 94 |
-
- `season`: The acquisition season of the image patch. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/
|
| 95 |
-
- `climate_zone`: The associated [Köppen-Geiger](https://www.nature.com/articles/s41597-023-02549-6) climate zone. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/
|
| 96 |
|
| 97 |
<hr>
|
| 98 |
|
|
|
|
| 86 |
- `input`: The instruction or question for the VLM.
|
| 87 |
- `output`: The reference answer.
|
| 88 |
- `type`: The broader task-type of the sample, i.e., `binary`, `mcq`, `captioning`, or `bounding box`.
|
| 89 |
+
- `category`: The more fine-grained task-type. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/KzrmYgF) for all type-category combinations.
|
| 90 |
- `split`: The associated split of the sample, i.e., `train`, `validation`, `test`, or `bench`.
|
| 91 |
- `latitude`: The latitude coordinates of the center of the image patch.
|
| 92 |
- `longitude`: The longitude coordinates of the center of the image patch.
|
| 93 |
+
- `country`: The acquisition country of the image patch. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/yn1wpPS) for all available values.
|
| 94 |
+
- `season`: The acquisition season of the image patch. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/m59YuRc) for all available values.
|
| 95 |
+
- `climate_zone`: The associated [Köppen-Geiger](https://www.nature.com/articles/s41597-023-02549-6) climate zone. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/SUU1DwA) for all available values.
|
| 96 |
|
| 97 |
<hr>
|
| 98 |
|
ben_txt_datamodule.py
CHANGED
|
@@ -372,10 +372,10 @@ class BENTxTDataModule(pl.LightningDataModule):
|
|
| 372 |
upsample_mode: Interpolation mode for resizing ('nearest', 'bilinear', 'bicubic', etc.).
|
| 373 |
Default: 'nearest'.
|
| 374 |
types: Optional filter for annotation types (e.g., 'binary', 'mcq', 'captioning', 'bounding box').
|
| 375 |
-
categories: Optional filter for annotation categories. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/
|
| 376 |
countries: Optional filter for acquisition countries (e.g., 'Austria', 'Belgium', 'Finland', 'Ireland', 'Kosovo', 'Lithuania', 'Luxembourg', 'Portugal', 'Serbia', 'Switzerland').
|
| 377 |
seasons: Optional filter for seasons (e.g., 'Spring', 'Summer', 'Fall', 'Winter').
|
| 378 |
-
climate_zones: Optional filter for climate zones. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/
|
| 379 |
transform: Optional torchvision transform to apply to images.
|
| 380 |
num_workers_dataloader: Number of worker processes for DataLoaders (default: 4).
|
| 381 |
Set to 0 to disable multiprocessing.
|
|
|
|
| 372 |
upsample_mode: Interpolation mode for resizing ('nearest', 'bilinear', 'bicubic', etc.).
|
| 373 |
Default: 'nearest'.
|
| 374 |
types: Optional filter for annotation types (e.g., 'binary', 'mcq', 'captioning', 'bounding box').
|
| 375 |
+
categories: Optional filter for annotation categories. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/KzrmYgF) for possible type-category combinations or retrieve them by yourself using some kind of database tool on the Parquet file.
|
| 376 |
countries: Optional filter for acquisition countries (e.g., 'Austria', 'Belgium', 'Finland', 'Ireland', 'Kosovo', 'Lithuania', 'Luxembourg', 'Portugal', 'Serbia', 'Switzerland').
|
| 377 |
seasons: Optional filter for seasons (e.g., 'Spring', 'Summer', 'Fall', 'Winter').
|
| 378 |
+
climate_zones: Optional filter for climate zones. See [here](https://huggingface.co/datasets/BIFOLD-BigEarthNetv2-0/BigEarthNet.txt/sql-console/SUU1DwA) for possible climate_zones values or retrieve them by yourself using some kind of database tool on the Parquet file.
|
| 379 |
transform: Optional torchvision transform to apply to images.
|
| 380 |
num_workers_dataloader: Number of worker processes for DataLoaders (default: 4).
|
| 381 |
Set to 0 to disable multiprocessing.
|