sumanthd commited on
Commit
9531680
1 Parent(s): 2edba4d
Files changed (1) hide show
  1. IndicXParaphrase.py +1 -1
IndicXParaphrase.py CHANGED
@@ -65,7 +65,7 @@ class Indicxparaphrase(datasets.GeneratorBasedBuilder):
65
 
66
  def _generate_examples(self, filepath):
67
  """Yields examples."""
68
- df = pd.read_csv(filepath, sep="\t", header=None)
69
  for idx, row in df.iterrows():
70
  yield idx, {
71
  "english": row[0],
 
65
 
66
  def _generate_examples(self, filepath):
67
  """Yields examples."""
68
+ df = pd.read_csv(filepath, sep="\t")
69
  for idx, row in df.iterrows():
70
  yield idx, {
71
  "english": row[0],