File size: 382 Bytes
23d11c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Sample Image Dataset
This is a sample dataset containing a few images and their labels.
## Structure
- `images/`: Contains the image files.
- `metadata.csv`: Contains the metadata with image filenames and labels.
## Usage
You can load this dataset using the `datasets` library.
```python
from datasets import load_dataset
dataset = load_dataset("username/sample_datset2")
|