jhj0517
commited on
Commit
•
7b495d7
1
Parent(s):
1190e23
fix bug
Browse files
app.py
CHANGED
@@ -4,8 +4,8 @@ from pose_align import PoseAlignmentInference
|
|
4 |
|
5 |
class App:
|
6 |
def __init__(self):
|
7 |
-
self.pose_alignment_infer =
|
8 |
-
self.musepose_infer =
|
9 |
|
10 |
def musepose_demo(self):
|
11 |
with gr.Blocks() as demo:
|
|
|
4 |
|
5 |
class App:
|
6 |
def __init__(self):
|
7 |
+
self.pose_alignment_infer = PoseAlignmentInference()
|
8 |
+
self.musepose_infer = MusePoseInference()
|
9 |
|
10 |
def musepose_demo(self):
|
11 |
with gr.Blocks() as demo:
|