rahul7star commited on
Commit
fcb1856
·
verified ·
1 Parent(s): a7436e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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")