3v324v23's picture
Fix HF Spaces README frontmatter and import-safe app; expose demo
7255581
raw
history blame contribute delete
267 Bytes
# Root launcher for Hugging Face Spaces (Gradio)
# Spaces looks for a variable named `demo` or executes `app.py`.
from image_captioning_app.app import iface as demo # reuse package interface
if __name__ == "__main__":
# Local run convenience
demo.launch()