Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,7 +1,20 @@
|
|
|
|
|
|
|
|
1 |
# My Custom Dataset
|
2 |
|
3 |
## Description
|
4 |
The original dataset was modified to inserto fake sensor information in bottom of image.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
## Attribution
|
6 |
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).
|
7 |
|
@@ -11,6 +24,4 @@ This dataset is licensed under the Creative Commons Attribution-NonCommercial 4.
|
|
11 |
- Added fake sensor information in bottom of image
|
12 |
|
13 |
## License
|
14 |
-
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/).
|
15 |
-
|
16 |
-
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
# My Custom Dataset
|
5 |
|
6 |
## Description
|
7 |
The original dataset was modified to inserto fake sensor information in bottom of image.
|
8 |
+
|
9 |
+
## Usage
|
10 |
+
|
11 |
+
dataset = load_dataset("famousdetectiveadrianmonk/sensor-ocr-benchmark")
|
12 |
+
example = dataset['train'][0]
|
13 |
+
img = example['pixel_values']
|
14 |
+
sensor_zoomin = img.crop((600, 850, 1250, 1050))
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
## Attribution
|
19 |
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).
|
20 |
|
|
|
24 |
- Added fake sensor information in bottom of image
|
25 |
|
26 |
## License
|
27 |
+
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/).
|
|
|
|