--- license: apache-2.0 task_categories: - image-classification language: - en tags: - Buildings and Structures - Desert - Forest Area - Hill or Mountain - Ice Glacier - Sea or Ocean - Street View - Image-Net size_categories: - 10K Note: For best experience, browse the dataset directly on [Hugging Face](https://huggingface.co/datasets/prithivMLmods/Multilabel-GeoSceneNet-16K). ## Usage You can load the dataset using the `datasets` library: ```python from datasets import load_dataset dataset = load_dataset("prithivMLmods/Multilabel-GeoSceneNet-16K") ``` To visualize an example: ```python import matplotlib.pyplot as plt example = dataset['train'][0] plt.imshow(example['image']) plt.title(", ".join(example['label'])) plt.axis('off') plt.show() ``` ## Applications - Geospatial scene understanding - Remote sensing analytics - Environmental monitoring - Land cover classification - AI-assisted mapping ## License This dataset is licensed under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0). --- *Curated & Maintained by [@prithivMLmods](https://huggingface.co/prithivMLmods).*