Upload dave.py with huggingface_hub
Browse files
dave.py
CHANGED
@@ -70,6 +70,9 @@ class DaveDataset(datasets.GeneratorBasedBuilder):
|
|
70 |
# Download and extract ZIP file
|
71 |
print(f"Downloading and extracting {split_name}_files.zip...")
|
72 |
extracted_dir = dl_manager.download_and_extract(zip_urls[split_name])
|
|
|
|
|
|
|
73 |
|
74 |
# Path to the extracted directory
|
75 |
if isinstance(extracted_dir, str):
|
|
|
70 |
# Download and extract ZIP file
|
71 |
print(f"Downloading and extracting {split_name}_files.zip...")
|
72 |
extracted_dir = dl_manager.download_and_extract(zip_urls[split_name])
|
73 |
+
|
74 |
+
print(f"Extracted to: {extracted_dir}")
|
75 |
+
print(f"Contents of extracted directory: {os.listdir(extracted_dir)}")
|
76 |
|
77 |
# Path to the extracted directory
|
78 |
if isinstance(extracted_dir, str):
|