mstz commited on
Commit
beea4dd
·
1 Parent(s): 2887535

Upload p53.py

Browse files
Files changed (1) hide show
  1. p53.py +1 -1
p53.py CHANGED
@@ -69,7 +69,7 @@ class P53(datasets.GeneratorBasedBuilder):
69
  ]
70
 
71
  def _generate_examples(self, filepath: str):
72
- data = pandas.read_csv(filepath, header=None).head(200)
73
  print("preprocessing..")
74
  data = self.preprocess(data)
75
  print("preprocessed!\n\n\n\n")
 
69
  ]
70
 
71
  def _generate_examples(self, filepath: str):
72
+ data = pandas.read_csv(filepath, header=None, nrows=100)
73
  print("preprocessing..")
74
  data = self.preprocess(data)
75
  print("preprocessed!\n\n\n\n")