Spaces:
Runtime error
Runtime error
Linoy Tsaban
commited on
Commit
·
3cdacdf
1
Parent(s):
c25e2cc
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,10 @@
|
|
| 1 |
import gradio as gr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
def greet(name):
|
| 4 |
return "Hello " + name + "!!"
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
import torch
|
| 3 |
+
import requests
|
| 4 |
+
from io import BytesIO
|
| 5 |
+
from diffusers import StableDiffusionPipeline
|
| 6 |
+
from diffusers import DDIMScheduler
|
| 7 |
+
|
| 8 |
|
| 9 |
def greet(name):
|
| 10 |
return "Hello " + name + "!!"
|