Spaces:
Running
on
Zero
Running
on
Zero
| # ======================================= | |
| # ENTRY POINT - HUGGINGFACE SPACES | |
| # Vocal Articulation Assessment v2.0 | |
| # ======================================= | |
| from app.interface import create_interface, initialize_model | |
| if __name__ == '__main__': | |
| print(' Starting Vocal Articulation Assessment System v2.0...') | |
| # Initialize model | |
| initialize_model() | |
| # Create and launch interface | |
| demo = create_interface() | |
| demo.launch( | |
| server_name='0.0.0.0', | |
| server_port=7860, | |
| share=False | |
| ) |