Datasets:
Tasks:
Tabular Classification
Languages:
English
Upload p53.py
Browse files
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)
|
| 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")
|