Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
from diffusers import
|
2 |
import gradio as gr
|
3 |
|
4 |
-
pipe =
|
5 |
|
6 |
gr.Interface.from_pipeline(pipe).launch()
|
|
|
1 |
+
from diffusers import StableDiffusionPipeline
|
2 |
import gradio as gr
|
3 |
|
4 |
+
pipe = StableDiffusionPipeline.from_pretrained("stablediffusionapi/duchaiten-real3d-nsfw-xl")
|
5 |
|
6 |
gr.Interface.from_pipeline(pipe).launch()
|