Tonic commited on
Commit
750f167
Β·
verified Β·
1 Parent(s): 7c47fc0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -39,13 +39,11 @@ pipe = StableVideoDiffusionPipeline.from_pretrained(
39
  )
40
 
41
  # Get the cache directory of the original model
42
- cache_dir = HfFolder.get_cache_dir()
43
  model_cache_dir = os.path.join(cache_dir, original_model_id.replace("/", "--"))
44
 
45
- # Path to the downloaded svd_xt_1_1.safetensors file
46
  downloaded_safetensors_path = "svd_xt_1_1.safetensors"
47
 
48
- # Replace the original safetensors file with the downloaded one
49
  original_safetensors_path = os.path.join(model_cache_dir, "svd_xt.safetensors")
50
  os.replace(downloaded_safetensors_path, original_safetensors_path)
51
 
 
39
  )
40
 
41
  # Get the cache directory of the original model
42
+ cache_dir = os.path.join(os.path.expanduser("~"), ".cache/huggingface/diffusers")
43
  model_cache_dir = os.path.join(cache_dir, original_model_id.replace("/", "--"))
44
 
 
45
  downloaded_safetensors_path = "svd_xt_1_1.safetensors"
46
 
 
47
  original_safetensors_path = os.path.join(model_cache_dir, "svd_xt.safetensors")
48
  os.replace(downloaded_safetensors_path, original_safetensors_path)
49