Datasets:
Update ViHOS.py
Browse files
ViHOS.py
CHANGED
|
@@ -31,7 +31,6 @@ class ViHOS(datasets.GeneratorBasedBuilder):
|
|
| 31 |
|
| 32 |
features=datasets.Features(
|
| 33 |
{
|
| 34 |
-
"id": datasets.Value("string"),
|
| 35 |
"content": datasets.Value("string"),
|
| 36 |
"index_spans": datasets.Value("string")
|
| 37 |
}
|
|
@@ -55,19 +54,16 @@ class ViHOS(datasets.GeneratorBasedBuilder):
|
|
| 55 |
)
|
| 56 |
]
|
| 57 |
def _generate_examples(self, filepath, split):
|
| 58 |
-
# colnames=['id', 'Content', 'Span ids']
|
| 59 |
|
| 60 |
data = pd.read_csv(filepath, header=None, sep=",", on_bad_lines='skip')
|
| 61 |
|
| 62 |
for i in range(len(data)):
|
| 63 |
-
id_ = data.loc[i, 0]
|
| 64 |
content = str(data.loc[i, 1])
|
| 65 |
span_ids = str(data.loc[i, 2])
|
| 66 |
if span_ids is None:
|
| 67 |
span_ids = ''
|
| 68 |
|
| 69 |
yield i, {
|
| 70 |
-
"id": id_,
|
| 71 |
"content": content,
|
| 72 |
-
|
| 73 |
}
|
|
|
|
| 31 |
|
| 32 |
features=datasets.Features(
|
| 33 |
{
|
|
|
|
| 34 |
"content": datasets.Value("string"),
|
| 35 |
"index_spans": datasets.Value("string")
|
| 36 |
}
|
|
|
|
| 54 |
)
|
| 55 |
]
|
| 56 |
def _generate_examples(self, filepath, split):
|
|
|
|
| 57 |
|
| 58 |
data = pd.read_csv(filepath, header=None, sep=",", on_bad_lines='skip')
|
| 59 |
|
| 60 |
for i in range(len(data)):
|
|
|
|
| 61 |
content = str(data.loc[i, 1])
|
| 62 |
span_ids = str(data.loc[i, 2])
|
| 63 |
if span_ids is None:
|
| 64 |
span_ids = ''
|
| 65 |
|
| 66 |
yield i, {
|
|
|
|
| 67 |
"content": content,
|
| 68 |
+
"span_ids": span_ids,
|
| 69 |
}
|