fix: csv read
Browse files- license_plates.py +1 -1
license_plates.py
CHANGED
|
@@ -76,7 +76,7 @@ class LicensePlates(datasets.GeneratorBasedBuilder):
|
|
| 76 |
|
| 77 |
for idx, (file_path, file) in enumerate(data):
|
| 78 |
if file_path.endswith('.csv'):
|
| 79 |
-
df = pd.read_csv(file
|
| 80 |
annotations.append(df)
|
| 81 |
|
| 82 |
else:
|
|
|
|
| 76 |
|
| 77 |
for idx, (file_path, file) in enumerate(data):
|
| 78 |
if file_path.endswith('.csv'):
|
| 79 |
+
df = pd.read_csv(file, sep=',')
|
| 80 |
annotations.append(df)
|
| 81 |
|
| 82 |
else:
|