Spaces:
Running
Running
Update apps/gradio_app.py
Browse files- apps/gradio_app.py +8 -4
apps/gradio_app.py
CHANGED
@@ -1,13 +1,17 @@
|
|
1 |
import gradio as gr
|
2 |
from PIL import Image
|
3 |
from gradio_app.inference import run_inference
|
4 |
-
from gradio_app.components import (
|
5 |
-
CONTENT_DESCRIPTION, CONTENT_OUTTRO,
|
6 |
-
CONTENT_IN_1, CONTENT_IN_2,
|
7 |
-
CONTENT_OUT_1, CONTENT_OUT_2,
|
8 |
list_reference_files, list_mapping_files,
|
9 |
list_classifier_files, list_edgeface_files
|
10 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
from glob import glob
|
12 |
import os
|
13 |
|
|
|
1 |
import gradio as gr
|
2 |
from PIL import Image
|
3 |
from gradio_app.inference import run_inference
|
4 |
+
from gradio_app.components import (
|
|
|
|
|
|
|
5 |
list_reference_files, list_mapping_files,
|
6 |
list_classifier_files, list_edgeface_files
|
7 |
)
|
8 |
+
|
9 |
+
from gradio_app.project_info import (
|
10 |
+
CONTENT_DESCRIPTION, CONTENT_OUTTRO,
|
11 |
+
CONTENT_IN_1, CONTENT_IN_2,
|
12 |
+
CONTENT_OUT_1, CONTENT_OUT_2
|
13 |
+
)
|
14 |
+
|
15 |
from glob import glob
|
16 |
import os
|
17 |
|