Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -21,15 +21,12 @@ Join us : πTeamTonicπ is always making cool demos! Join our active builder
|
|
21 |
|
22 |
# Load the API token from an environment variable
|
23 |
hf_token = os.getenv("HF_TOKEN")
|
24 |
-
|
25 |
-
# If the token is not found, raise an error or handle it appropriately
|
26 |
if not hf_token:
|
27 |
raise ValueError("Hugging Face token not found. Please set the HF_TOKEN environment variable.")
|
28 |
|
29 |
-
# Use the token for authentication
|
30 |
HfFolder.save_token(hf_token)
|
31 |
|
32 |
-
|
33 |
original_model_id = "stabilityai/stable-video-diffusion-img2vid-xt"
|
34 |
pipe = StableVideoDiffusionPipeline.from_pretrained(
|
35 |
original_model_id,
|
@@ -38,16 +35,15 @@ pipe = StableVideoDiffusionPipeline.from_pretrained(
|
|
38 |
use_auth_token=hf_token
|
39 |
)
|
40 |
|
41 |
-
#
|
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 |
|
50 |
-
# Load the model from the local directory with the replaced safetensors file
|
51 |
pipe = StableVideoDiffusionPipeline.from_pretrained(
|
52 |
model_cache_dir,
|
53 |
torch_dtype=torch.float16,
|
|
|
21 |
|
22 |
# Load the API token from an environment variable
|
23 |
hf_token = os.getenv("HF_TOKEN")
|
|
|
|
|
24 |
if not hf_token:
|
25 |
raise ValueError("Hugging Face token not found. Please set the HF_TOKEN environment variable.")
|
26 |
|
|
|
27 |
HfFolder.save_token(hf_token)
|
28 |
|
29 |
+
cache_dir = os.path.join(os.path.expanduser("~"), ".cache/huggingface/diffusers")
|
30 |
original_model_id = "stabilityai/stable-video-diffusion-img2vid-xt"
|
31 |
pipe = StableVideoDiffusionPipeline.from_pretrained(
|
32 |
original_model_id,
|
|
|
35 |
use_auth_token=hf_token
|
36 |
)
|
37 |
|
38 |
+
# Construct the model cache directory path
|
|
|
39 |
model_cache_dir = os.path.join(cache_dir, original_model_id.replace("/", "--"))
|
40 |
|
41 |
+
# Path to the downloaded svd_xt_1_1.safetensors file
|
42 |
downloaded_safetensors_path = "svd_xt_1_1.safetensors"
|
43 |
|
44 |
original_safetensors_path = os.path.join(model_cache_dir, "svd_xt.safetensors")
|
45 |
os.replace(downloaded_safetensors_path, original_safetensors_path)
|
46 |
|
|
|
47 |
pipe = StableVideoDiffusionPipeline.from_pretrained(
|
48 |
model_cache_dir,
|
49 |
torch_dtype=torch.float16,
|