phusroyal commited on
Commit
6456787
1 Parent(s): a757a64

Update ViHOS.py

Browse files
Files changed (1) hide show
  1. ViHOS.py +1 -4
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
  "span_ids": datasets.Value("string")
37
  }
@@ -56,17 +55,15 @@ class ViHOS(datasets.GeneratorBasedBuilder):
56
  ]
57
  def _generate_examples(self, filepath, split):
58
 
59
- data = pd.read_csv(filepath, header=None, sep=",", on_bad_lines='skip')
60
 
61
  for i in range(len(data)):
62
- id_ = str(data.loc[i, 0])
63
  content = str(data.loc[i, 1])
64
  span_ids = str(data.loc[i, 2])
65
  if span_ids is None:
66
  span_ids = ''
67
 
68
  yield i, {
69
- "id": id_,
70
  "content": content,
71
  "span_ids": span_ids,
72
  }
 
31
 
32
  features=datasets.Features(
33
  {
 
34
  "content": datasets.Value("string"),
35
  "span_ids": datasets.Value("string")
36
  }
 
55
  ]
56
  def _generate_examples(self, filepath, split):
57
 
58
+ data = pd.read_csv(filepath, header=0, 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
  }