Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -574,7 +574,7 @@ def auto_run_lora_from_repo():
|
|
574 |
]
|
575 |
|
576 |
# ✅ Create dataset folder with metadata.jsonl
|
577 |
-
dataset_folder = f"datasets_{uuid.uuid4()}"
|
578 |
os.makedirs(dataset_folder, exist_ok=True)
|
579 |
|
580 |
jsonl_file_path = os.path.join(dataset_folder, "metadata.jsonl")
|
|
|
574 |
]
|
575 |
|
576 |
# ✅ Create dataset folder with metadata.jsonl
|
577 |
+
dataset_folder = os.path.join("/tmp", f"datasets_{uuid.uuid4()}")
|
578 |
os.makedirs(dataset_folder, exist_ok=True)
|
579 |
|
580 |
jsonl_file_path = os.path.join(dataset_folder, "metadata.jsonl")
|