BLIP-Diffusion / app.py
hysts's picture
hysts HF staff
Update
44f5c60
raw
history blame contribute delete
No virus
938 Bytes
#!/usr/bin/env python
import os
import gradio as gr
import torch
torch.jit.script = lambda x: x
from app_stylization import demo as demo_stylization
from app_zero_shot import demo as demo_zero_shot
DESCRIPTION = "# [BLIP-Diffusion](https://github.com/salesforce/LAVIS/tree/main/projects/blip-diffusion)"
if not torch.cuda.is_available():
DESCRIPTION += "\n<p>Running on CPU 🥶 This demo does not work on CPU.</p>"
with gr.Blocks(css="style.css") as demo:
gr.Markdown(DESCRIPTION)
gr.DuplicateButton(
value="Duplicate Space for private use",
elem_id="duplicate-button",
visible=os.getenv("SHOW_DUPLICATE_BUTTON") == "1",
)
with gr.Tabs():
with gr.Tab(label="Zero-shot Subject-driven Generation"):
demo_zero_shot.render()
with gr.Tab(label="Stylization"):
demo_stylization.render()
if __name__ == "__main__":
demo.queue(max_size=20).launch()