Datasets:
File size: 1,275 Bytes
277dc79 dd7077c 277dc79 c6df728 277dc79 3c6aff1 b734a07 277dc79 3c6aff1 277dc79 c6df728 277dc79 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
---
license: mit
task_categories:
- image-to-text
language:
- en
size_categories:
- n<1K
---
# My Custom Dataset
## Description
The original dataset was modified to inserto fake sensor information in bottom of image.
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("famousdetectiveadrianmonk/sensor-ocr-benchmark")
example = dataset['train'][0]
img = example['pixel_values']
sensor_zoomin = img.crop((600, 850, 1250, 1050))
```
## Attribution
This dataset is based on the original dataset provided by Segments.ai. The original dataset can be found at [https://huggingface.co/datasets/segments/sidewalk-semantic](https://huggingface.co/datasets/segments/sidewalk-semantic).
This dataset is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. To view a copy of this license, visit [https://creativecommons.org/licenses/by-nc/4.0/](https://creativecommons.org/licenses/by-nc/4.0/).
### Changes Made
- Added fake sensor information in bottom of image
## License
This dataset is available under the Creative Commons Attribution-NonCommercial 4.0 International License. To view a copy of this license, visit [https://creativecommons.org/licenses/by-nc/4.0/](https://creativecommons.org/licenses/by-nc/4.0/). |