AnomalDrive / app.py
baiganinn's picture
init
7058515
raw
history blame contribute delete
279 Bytes
#!/usr/bin/env python3
"""
HuggingFace Spaces entry point for Vehicle Anomaly Detection System
"""
from gradio_app import create_interface
if __name__ == "__main__":
demo = create_interface()
demo.launch(share=True, server_name="0.0.0.0", server_port=7860, debug=True)