Spaces:
Paused
Paused
daquanzhou
commited on
Commit
·
17cde70
1
Parent(s):
4d432fd
fix
Browse files
app.py
CHANGED
|
@@ -242,7 +242,7 @@ class MagicMeController:
|
|
| 242 |
|
| 243 |
|
| 244 |
def refresh_motion_lora_list(self):
|
| 245 |
-
motion_lora_list = glob(os.path.join(self.
|
| 246 |
self.motion_lora_list = [os.path.basename(p)for p in motion_lora_list]
|
| 247 |
|
| 248 |
|
|
@@ -912,7 +912,7 @@ def ui():
|
|
| 912 |
generate_button_tiled = gr.Button( value="Go (T2V + Face + Tiled VCD, 8X slower)", variant='primary' )
|
| 913 |
|
| 914 |
with gr.Row():
|
| 915 |
-
orig_video = gr.Video( label="Video after
|
| 916 |
face_detailer_video = gr.Video( label="Video after Face VCD", interactive=False )
|
| 917 |
sr_video = gr.Video( label="Video after Tiled VCD", interactive=False )
|
| 918 |
|
|
|
|
| 242 |
|
| 243 |
|
| 244 |
def refresh_motion_lora_list(self):
|
| 245 |
+
motion_lora_list = glob(os.path.join(self.motion_lora_dir, "*.ckpt"))
|
| 246 |
self.motion_lora_list = [os.path.basename(p)for p in motion_lora_list]
|
| 247 |
|
| 248 |
|
|
|
|
| 912 |
generate_button_tiled = gr.Button( value="Go (T2V + Face + Tiled VCD, 8X slower)", variant='primary' )
|
| 913 |
|
| 914 |
with gr.Row():
|
| 915 |
+
orig_video = gr.Video( label="Video after T2V VCD", interactive=False )
|
| 916 |
face_detailer_video = gr.Video( label="Video after Face VCD", interactive=False )
|
| 917 |
sr_video = gr.Video( label="Video after Tiled VCD", interactive=False )
|
| 918 |
|