"text" feature is Value(dtype='string', id=None)
#3
by
homersimpson
- opened
Is this intentional? It makes it very difficult to parse and use the text data stored in this corpus, given that each "text" entry is a list of dictionaries.
EDIT: for example, calling
ds = load_dataset('oscar-corpus/mOSCAR', "bem_Latn", split='train')
and
ds[0]['text']
gives a string that is evidently intended to be a list of dictionaries.
EDIT EDIT: I completely forgot about json.loads(), which fixes this issue. Still, might this be unintentional?