Spaces:
Runtime error
Runtime error
File size: 523 Bytes
61bbe53 74744bd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import gradio as gr
from sam2edit import create_demo as create_demo_edit_anything
from sam2image import create_demo as create_demo_generate_anything
DESCRIPTION = '# [Edit Anything](https://github.com/sail-sg/EditAnything)'
with gr.Blocks() as demo:
gr.Markdown(DESCRIPTION)
with gr.Tabs():
with gr.TabItem('Edit Anything'):
create_demo_edit_anything()
with gr.TabItem('Generate Anything'):
create_demo_generate_anything()
demo.queue(api_open=False).launch(share=True) |