Spaces:
Running
Running
update info
Browse files
app.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
import os
|
2 |
-
|
3 |
import gradio as gr
|
4 |
from zeroscratches import EraseScratches
|
5 |
|
@@ -15,18 +14,18 @@ description = r"""
|
|
15 |
## Old Photo Restoration
|
16 |
|
17 |
This is a lightweight implementation of [Microsoft Bringing Old Photos Back to Life](https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life)
|
18 |
-
|
19 |
-
|
20 |
"""
|
|
|
21 |
article = r"""
|
22 |
-
|
23 |
|
24 |
-
This demo is running on a CPU, if you like this project please make us a donation to run on a GPU or just give us a
|
25 |
|
26 |
<a href="https://www.buymeacoffee.com/leonelhs"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=leonelhs&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff" /></a>
|
27 |
|
28 |
-
<center><img src='https://visitor-badge.glitch.me/badge?page_id=
|
29 |
"""
|
|
|
30 |
demo = gr.Interface(
|
31 |
inference, [
|
32 |
gr.Image(type="pil", label="Input"),
|
|
|
1 |
import os
|
|
|
2 |
import gradio as gr
|
3 |
from zeroscratches import EraseScratches
|
4 |
|
|
|
14 |
## Old Photo Restoration
|
15 |
|
16 |
This is a lightweight implementation of [Microsoft Bringing Old Photos Back to Life](https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life)
|
|
|
|
|
17 |
"""
|
18 |
+
|
19 |
article = r"""
|
20 |
+
Questions, doubts, comments, please email π§ `[email protected]`
|
21 |
|
22 |
+
This demo is running on a CPU, if you like this project please make us a donation to run on a GPU or just give us a <a href='https://github.com/leonelhs/zeroscratches/' target='_blank'>Github β</a>
|
23 |
|
24 |
<a href="https://www.buymeacoffee.com/leonelhs"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=leonelhs&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff" /></a>
|
25 |
|
26 |
+
<center><img src='https://visitor-badge.glitch.me/badge?page_id=zeroscratches.visitor-badge' alt='visitor badge'></center>
|
27 |
"""
|
28 |
+
|
29 |
demo = gr.Interface(
|
30 |
inference, [
|
31 |
gr.Image(type="pil", label="Input"),
|