--- license: apache-2.0 task_categories: - image-classification language: - en tags: - Indoor - Outdoor - Scene - Classification - 20K - Net size_categories: - 10K Note: For full visualization, visit the dataset viewer on Hugging Face. ## Usage You can use this dataset directly with the `datasets` library: ```python from datasets import load_dataset dataset = load_dataset("prithivMLmods/IndoorOutdoorNet-20K") ``` To visualize a sample: ```python import matplotlib.pyplot as plt sample = dataset['train'][0] plt.imshow(sample['image']) plt.title(sample['label']) plt.axis('off') plt.show() ``` ## Applications - Scene classification - Image context recognition - Smart surveillance - Autonomous navigation - Indoor-outdoor transition detection in robotics ## Citation If you use this dataset in your research or project, please cite it appropriately. (You can include a BibTeX entry here if available.) ## License This dataset is licensed under the Apache 2.0 License. --- *Curated & Maintained by [@prithivMLmods](https://huggingface.co/prithivMLmods).*