Update app.py
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ class App:
|
|
| 12 |
def __init__(self,
|
| 13 |
args=None):
|
| 14 |
self.args = args
|
| 15 |
-
self.app = gr.Blocks(css=GRADIO_CSS
|
| 16 |
self.i18n = Translate(I18N_YAML_PATH)
|
| 17 |
self.inferencer = LivePortraitInferencer(
|
| 18 |
model_dir=args.model_dir if args else MODELS_DIR,
|
|
@@ -62,7 +62,7 @@ class App:
|
|
| 62 |
def launch(self):
|
| 63 |
with self.app:
|
| 64 |
with self.i18n:
|
| 65 |
-
gr.Markdown("# Generative
|
| 66 |
|
| 67 |
with gr.Tabs():
|
| 68 |
with gr.TabItem(_("Expression Editor")):
|
|
@@ -145,6 +145,7 @@ class App:
|
|
| 145 |
print(f"The directory path {folder_path} has newly created.")
|
| 146 |
os.system(f"start {folder_path}")
|
| 147 |
|
|
|
|
| 148 |
|
| 149 |
if __name__ == "__main__":
|
| 150 |
|
|
|
|
| 12 |
def __init__(self,
|
| 13 |
args=None):
|
| 14 |
self.args = args
|
| 15 |
+
self.app = gr.Blocks(css=GRADIO_CSS)
|
| 16 |
self.i18n = Translate(I18N_YAML_PATH)
|
| 17 |
self.inferencer = LivePortraitInferencer(
|
| 18 |
model_dir=args.model_dir if args else MODELS_DIR,
|
|
|
|
| 62 |
def launch(self):
|
| 63 |
with self.app:
|
| 64 |
with self.i18n:
|
| 65 |
+
gr.Markdown("# 📋 Generative Expression Editor")
|
| 66 |
|
| 67 |
with gr.Tabs():
|
| 68 |
with gr.TabItem(_("Expression Editor")):
|
|
|
|
| 145 |
print(f"The directory path {folder_path} has newly created.")
|
| 146 |
os.system(f"start {folder_path}")
|
| 147 |
|
| 148 |
+
# Agent5.com producers JulieConn.com JerryHesketh.com SmartDigitalNetworks.com
|
| 149 |
|
| 150 |
if __name__ == "__main__":
|
| 151 |
|