qanastek commited on
Commit
c37e1e2
1 Parent(s): f521228

Update MANTRAGSC.py

Browse files
Files changed (1) hide show
  1. MANTRAGSC.py +1 -1
MANTRAGSC.py CHANGED
@@ -297,7 +297,7 @@ class MANTRAGSC(datasets.GeneratorBasedBuilder):
297
 
298
  obj = {
299
  "id": u["@id"],
300
- "tokens": [t["token"] for t in tokens],
301
  "ner_tags": [n[0] for n in ner_tags],
302
  "is_oov": [_VOCAB.find(t["token"].lower()) for t in tokens],
303
  }
 
297
 
298
  obj = {
299
  "id": u["@id"],
300
+ "tokens": [t["token"].lower() for t in tokens],
301
  "ner_tags": [n[0] for n in ner_tags],
302
  "is_oov": [_VOCAB.find(t["token"].lower()) for t in tokens],
303
  }