recognizer-api / app.py
Sathya-UM's picture
Deploy clean-provenance model (cleanlic: Varnam CC-BY + Wikimedia, melsim excluded)
5cd09a5 verified
Raw
History Blame Contribute Delete
354 Bytes
"""Hugging Face Space entry point. The Space bundles the raaga_id package, apps/,
assets/, raagas.json, schema.py, and models/ alongside this file (see space/assemble.sh).
Gradio auto-launches the `demo` object; the __main__ guard covers local runs.
"""
from apps.identify import build_ui
demo = build_ui()
if __name__ == "__main__":
demo.launch()