Spaces:
Sleeping
Sleeping
| #!/usr/bin/env python3 | |
| """ | |
| SAM 2.1 + Grounding DINO Web Interface | |
| Hugging Face Spaces Entry Point | |
| """ | |
| import gradio as gr | |
| from sam_gui import create_interface | |
| # Create the interface - this is what Hugging Face Spaces will use | |
| demo = create_interface() | |
| # Launch the interface | |
| if __name__ == "__main__": | |
| demo.launch() |