tokeron's picture
Upload folder using huggingface_hub
0a9b595 verified
raw
history blame contribute delete
322 Bytes
#!/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()