rahul7star commited on
Commit
8500db2
·
verified ·
1 Parent(s): 2eb9743

Update app_fast.py

Browse files
Files changed (1) hide show
  1. app_fast.py +11 -11
app_fast.py CHANGED
@@ -138,22 +138,22 @@ for pipe in [text_to_video_pipe, image_to_video_pipe]:
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
- ## woeks very well
149
-
150
- LORA_REPO_ID = "rahul7star/wan2.2Lora"
151
- LORA_FILENAME = "wan2.2_5b_missionary_000005000.safetensors"
152
  causvid_path = hf_hub_download(repo_id=LORA_REPO_ID, filename=LORA_FILENAME)
153
  pipe.load_lora_weights(causvid_path, adapter_name="causvid_lora")
154
  pipe.set_adapters(["causvid_lora"], adapter_weights=[0.95])
155
  pipe.fuse_lora()
156
 
 
 
 
 
 
 
 
 
 
157
 
158
 
159
 
 
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
+ ## bad
149
+
150
+ # LORA_REPO_ID = "rahul7star/wan2.2Lora"
151
+ # LORA_FILENAME = "wan2.2_5b_missionary_000005000.safetensors"
152
+ # causvid_path = hf_hub_download(repo_id=LORA_REPO_ID, filename=LORA_FILENAME)
153
+ # pipe.load_lora_weights(causvid_path, adapter_name="causvid_lora")
154
+ # pipe.set_adapters(["causvid_lora"], adapter_weights=[0.95])
155
+ # pipe.fuse_lora()
156
+
157
 
158
 
159