Datasets:
Upload acute_inflammation.py
Browse files- acute_inflammation.py +1 -1
acute_inflammation.py
CHANGED
@@ -79,7 +79,7 @@ class Acute_Inflammation(datasets.GeneratorBasedBuilder):
|
|
79 |
]
|
80 |
|
81 |
def _generate_examples(self, filepath: str):
|
82 |
-
data = pandas.read_csv(filepath)
|
83 |
data = self.preprocess(data, config=self.config.name)
|
84 |
|
85 |
for row_id, row in data.iterrows():
|
|
|
79 |
]
|
80 |
|
81 |
def _generate_examples(self, filepath: str):
|
82 |
+
data = pandas.read_csv(filepath, sep="\t")
|
83 |
data = self.preprocess(data, config=self.config.name)
|
84 |
|
85 |
for row_id, row in data.iterrows():
|