rahul7star commited on
Commit
56e486b
·
verified ·
1 Parent(s): 9270d8b

Update app_fast.py

Browse files
Files changed (1) hide show
  1. app_fast.py +13 -10
app_fast.py CHANGED
@@ -125,24 +125,27 @@ for pipe in [text_to_video_pipe, image_to_video_pipe]:
125
  # pipe.fuse_lora()
126
 
127
 
128
- LORA_REPO_ID = "rahul7star/wan2.2Lora"
129
- LORA_FILENAME = "DR34ML4Y_TI2V_5B_V1.safetensors"
130
- causvid_path = hf_hub_download(repo_id=LORA_REPO_ID, filename=LORA_FILENAME)
131
- pipe.load_lora_weights(causvid_path, adapter_name="causvid_lora")
132
- pipe.set_adapters(["causvid_lora"], adapter_weights=[0.95])
133
- pipe.fuse_lora()
134
 
 
135
 
136
- ## woeks very well
137
-
138
- # LORA_REPO_ID = "UnifiedHorusRA/Missionary_POV_Wan_2.2_5B_LoRA"
139
- # LORA_FILENAME = "missionary-pov-wan2.2_5b-v1.0-vfxai.safetensors"
140
  # causvid_path = hf_hub_download(repo_id=LORA_REPO_ID, filename=LORA_FILENAME)
141
  # pipe.load_lora_weights(causvid_path, adapter_name="causvid_lora")
142
  # pipe.set_adapters(["causvid_lora"], adapter_weights=[0.95])
143
  # pipe.fuse_lora()
144
 
145
 
 
 
 
 
 
 
 
 
 
 
146
 
147
 
148
 
 
125
  # pipe.fuse_lora()
126
 
127
 
 
 
 
 
 
 
128
 
129
+ ## works
130
 
131
+ # LORA_REPO_ID = "rahul7star/wan2.2Lora"
132
+ # LORA_FILENAME = "DR34ML4Y_TI2V_5B_V1.safetensors"
 
 
133
  # causvid_path = hf_hub_download(repo_id=LORA_REPO_ID, filename=LORA_FILENAME)
134
  # pipe.load_lora_weights(causvid_path, adapter_name="causvid_lora")
135
  # pipe.set_adapters(["causvid_lora"], adapter_weights=[0.95])
136
  # pipe.fuse_lora()
137
 
138
 
139
+ ## woeks very well
140
+
141
+ LORA_REPO_ID = "UnifiedHorusRA/Missionary_POV_Wan_2.2_5B_LoRA"
142
+ LORA_FILENAME = "missionary-pov-wan2.2_5b-v1.0-vfxai.safetensors"
143
+ causvid_path = hf_hub_download(repo_id=LORA_REPO_ID, filename=LORA_FILENAME)
144
+ pipe.load_lora_weights(causvid_path, adapter_name="causvid_lora")
145
+ pipe.set_adapters(["causvid_lora"], adapter_weights=[0.95])
146
+ pipe.fuse_lora()
147
+
148
+
149
 
150
 
151