MultiMatrix commited on
Commit
4dc0d1d
·
verified ·
1 Parent(s): 330341f

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -15
app.py DELETED
@@ -1,15 +0,0 @@
1
- import gradio as gr
2
- from transformers import pipeline
3
-
4
- pipe = pipeline("image-to-image",
5
- model="MultiMatrix/DiffBIR")
6
-
7
- def launch(input):
8
- out = pipe(input)
9
- return out[0]['generated_text']
10
-
11
- iface = gr.Interface(launch,
12
- inputs=gr.Image(type='pil'),
13
- outputs="text")
14
-
15
- iface.launch()