Datasets:
fix: add text fields to the dataset features
Browse files- nb_samtale.py +3 -0
nb_samtale.py
CHANGED
@@ -110,6 +110,9 @@ class NBSamtale(datasets.GeneratorBasedBuilder):
|
|
110 |
'source_type': ClassLabel(names=['live-event', 'podcast']),
|
111 |
'file_name': datasets.Value(dtype='string'),
|
112 |
'transcription': datasets.Value(dtype='string'),
|
|
|
|
|
|
|
113 |
'audio': datasets.Audio(sampling_rate=16000, mono=True, decode=True),
|
114 |
}
|
115 |
),
|
|
|
110 |
'source_type': ClassLabel(names=['live-event', 'podcast']),
|
111 |
'file_name': datasets.Value(dtype='string'),
|
112 |
'transcription': datasets.Value(dtype='string'),
|
113 |
+
'annotations': datasets.Value(dtype='string'),
|
114 |
+
'orthographic': datasets.Value(dtype='string'),
|
115 |
+
'verbatim': datasets.Value(dtype='string'),
|
116 |
'audio': datasets.Audio(sampling_rate=16000, mono=True, decode=True),
|
117 |
}
|
118 |
),
|