schlevik
commited on
Commit
•
b219303
1
Parent(s):
cb4244c
fix bug when reading out of DF
Browse files- ntcir_13_medweb.py +1 -1
ntcir_13_medweb.py
CHANGED
@@ -372,7 +372,7 @@ class NTCIR13MedWebDataset(datasets.GeneratorBasedBuilder):
|
|
372 |
):
|
373 |
yield row_index, {
|
374 |
"id": record_id,
|
375 |
-
"text":
|
376 |
"document_id": filepath.stem,
|
377 |
"labels": record_labels,
|
378 |
}
|
|
|
372 |
):
|
373 |
yield row_index, {
|
374 |
"id": record_id,
|
375 |
+
"text": tweet,
|
376 |
"document_id": filepath.stem,
|
377 |
"labels": record_labels,
|
378 |
}
|