File size: 354 Bytes
5cd09a5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""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()