Spaces:
Runtime error
Runtime error
Ahsen Khaliq
commited on
Commit
•
f338a52
1
Parent(s):
5c35031
Update app.py
Browse files
app.py
CHANGED
@@ -2,8 +2,8 @@ import os
|
|
2 |
from PIL import Image
|
3 |
import torch
|
4 |
import gradio as gr
|
|
|
5 |
os.system("pip install autocrop")
|
6 |
-
|
7 |
#os.system("pip install dlib")
|
8 |
|
9 |
from autocrop import Cropper
|
@@ -116,4 +116,4 @@ description = "Gradio Demo for JoJoGAN: One Shot Face Stylization. To use it, si
|
|
116 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2112.11641' target='_blank'>JoJoGAN: One Shot Face Stylization</a>| <a href='https://github.com/mchong6/JoJoGAN' target='_blank'>Github Repo Pytorch</a></p> <center><img src='https://visitor-badge.glitch.me/badge?page_id=akhaliq_jojogan' alt='visitor badge'></center> <p style='text-align: center'>samples from repo: <img src='https://raw.githubusercontent.com/mchong6/JoJoGAN/main/teaser.jpg' alt='animation'/></p>"
|
117 |
|
118 |
examples=[['iu.jpeg','Jinx']]
|
119 |
-
gr.Interface(inference, [gr.inputs.Image(type="
|
|
|
2 |
from PIL import Image
|
3 |
import torch
|
4 |
import gradio as gr
|
5 |
+
os.system("pip install gradio==2.5.3")
|
6 |
os.system("pip install autocrop")
|
|
|
7 |
#os.system("pip install dlib")
|
8 |
|
9 |
from autocrop import Cropper
|
|
|
116 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2112.11641' target='_blank'>JoJoGAN: One Shot Face Stylization</a>| <a href='https://github.com/mchong6/JoJoGAN' target='_blank'>Github Repo Pytorch</a></p> <center><img src='https://visitor-badge.glitch.me/badge?page_id=akhaliq_jojogan' alt='visitor badge'></center> <p style='text-align: center'>samples from repo: <img src='https://raw.githubusercontent.com/mchong6/JoJoGAN/main/teaser.jpg' alt='animation'/></p>"
|
117 |
|
118 |
examples=[['iu.jpeg','Jinx']]
|
119 |
+
gr.Interface(inference, [gr.inputs.Image(type="numpy"),gr.inputs.Dropdown(choices=['JoJo', 'Disney','Jinx'], type="value", default='JoJo', label="Model")], gr.outputs.Image(type="file"),title=title,description=description,article=article,enable_queue=True,allow_flagging=False,examples=examples).launch()
|