Fix logging error
Browse files
convert_datasets_to_json.py
CHANGED
|
@@ -27,7 +27,7 @@ def convert(dataset_id: str):
|
|
| 27 |
typer.echo(
|
| 28 |
f"⚠️ Skipping {dataset_name}/{config}/{split} due to missing columns: {', '.join(remainder_cols)}"
|
| 29 |
)
|
| 30 |
-
skipped_validation.append(dataset_name
|
| 31 |
else:
|
| 32 |
# Add `input` column if it exists
|
| 33 |
if "input" in dataset.column_names:
|
|
|
|
| 27 |
typer.echo(
|
| 28 |
f"⚠️ Skipping {dataset_name}/{config}/{split} due to missing columns: {', '.join(remainder_cols)}"
|
| 29 |
)
|
| 30 |
+
skipped_validation.append(f"{dataset_name}/{config}/{split}")
|
| 31 |
else:
|
| 32 |
# Add `input` column if it exists
|
| 33 |
if "input" in dataset.column_names:
|