KC123hello's picture
Upload files
308f265 verified
raw
history blame contribute delete
355 Bytes
"""
Hugging Face Spaces entry point for the Robust MMFM Gradio app.
"""
import sys
import os
# Add parent directory to Python path to access open_flamingo and vlm_eval modules
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
# Import and launch the Gradio demo
from gradio_app import demo
if __name__ == "__main__":
demo.launch()