Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -32,11 +32,11 @@ upsampler = RealESRGANer(scale=4, model_path=model_path, model=model, tile=0, ti
|
|
32 |
os.makedirs('output', exist_ok=True)
|
33 |
|
34 |
# Ссылка на файл CSS
|
35 |
-
css_url = "https://
|
36 |
|
37 |
# Получение CSS по ссылке
|
38 |
response = requests.get(css_url)
|
39 |
-
css = response.text
|
40 |
|
41 |
def inference(img, version, scale, weight):
|
42 |
weight /= 100
|
@@ -96,6 +96,7 @@ def inference(img, version, scale, weight):
|
|
96 |
|
97 |
demo = gr.Interface(
|
98 |
inference, [
|
|
|
99 |
gr.inputs.Image(type="filepath", label="Input"),
|
100 |
gr.inputs.Radio(['v1.2', 'v1.3', 'v1.4', 'RestoreFormer', 'CodeFormer'], type="value", default='v1.4', label='Версия'),
|
101 |
gr.inputs.Number(label="Коэффициент масштабирования", default=2),
|
|
|
32 |
os.makedirs('output', exist_ok=True)
|
33 |
|
34 |
# Ссылка на файл CSS
|
35 |
+
css_url = "https://neurixyufi-aihub.static.hf.space/style.css"
|
36 |
|
37 |
# Получение CSS по ссылке
|
38 |
response = requests.get(css_url)
|
39 |
+
css = response.text + " .gradio-container{max-width: 700px !important} h1{text-align:center}"
|
40 |
|
41 |
def inference(img, version, scale, weight):
|
42 |
weight /= 100
|
|
|
96 |
|
97 |
demo = gr.Interface(
|
98 |
inference, [
|
99 |
+
gr.Markdown("# Улучшение качества"),
|
100 |
gr.inputs.Image(type="filepath", label="Input"),
|
101 |
gr.inputs.Radio(['v1.2', 'v1.3', 'v1.4', 'RestoreFormer', 'CodeFormer'], type="value", default='v1.4', label='Версия'),
|
102 |
gr.inputs.Number(label="Коэффициент масштабирования", default=2),
|