Spaces:
Configuration error
Configuration error
File size: 267 Bytes
7255581 |
1 2 3 4 5 6 7 8 9 |
# 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()
|