Update dga-detection.py
Browse files- dga-detection.py +1 -1
dga-detection.py
CHANGED
|
@@ -55,7 +55,7 @@ class MyDataset(datasets.GeneratorBasedBuilder):
|
|
| 55 |
split: str,
|
| 56 |
):
|
| 57 |
# Read your CSV dataset
|
| 58 |
-
dataset = pd.read_csv(filepath)
|
| 59 |
|
| 60 |
# Get the total number of rows
|
| 61 |
total_rows = len(dataset)
|
|
|
|
| 55 |
split: str,
|
| 56 |
):
|
| 57 |
# Read your CSV dataset
|
| 58 |
+
dataset = pd.read_csv(filepath,compression='gzip')
|
| 59 |
|
| 60 |
# Get the total number of rows
|
| 61 |
total_rows = len(dataset)
|