Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,4 +24,14 @@ language:
|
|
| 24 |
---
|
| 25 |
# German handwriting
|
| 26 |
|
| 27 |
-
This dataset contains German handwriting images and corresponding text labels.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
---
|
| 25 |
# German handwriting
|
| 26 |
|
| 27 |
+
This dataset contains German handwriting images and corresponding text labels. In total, the dataset contains around 10,000 entries with handwriting from 15 different people.
|
| 28 |
+
The data was created with the help of transcripts from school and university.
|
| 29 |
+
The dataset was created as part of a handwriting recognition project at the FH-SWF.
|
| 30 |
+
|
| 31 |
+
## How to use:
|
| 32 |
+
|
| 33 |
+
```python
|
| 34 |
+
from datasets import load_dataset
|
| 35 |
+
|
| 36 |
+
dataset = load_dataset('fhswf/german_handwriting')
|
| 37 |
+
```
|