Fix the feature dtypes
Browse files
README.md
CHANGED
@@ -47,11 +47,11 @@ Collection of ASCII art from various sources:
|
|
47 |
|
48 |
```python
|
49 |
datasets.Features({
|
50 |
-
'caption': datasets.features.Value(dtype='
|
51 |
-
'content': datasets.features.Value(dtype='
|
52 |
-
'labels': datasets.features.Value(dtype='
|
53 |
-
'charsets': datasets.features.Value(dtype='
|
54 |
-
'chartypes': datasets.features.Value(dtype='
|
55 |
```
|
56 |
|
57 |
[github-scrapscii]: https://github.com/apehex/scrapscii/
|
|
|
47 |
|
48 |
```python
|
49 |
datasets.Features({
|
50 |
+
'caption': datasets.features.Value(dtype='string'),
|
51 |
+
'content': datasets.features.Value(dtype='string'),
|
52 |
+
'labels': datasets.features.Value(dtype='string'),
|
53 |
+
'charsets': datasets.features.Value(dtype='string'),
|
54 |
+
'chartypes': datasets.features.Value(dtype='string'),})
|
55 |
```
|
56 |
|
57 |
[github-scrapscii]: https://github.com/apehex/scrapscii/
|