Spaces:
Sleeping
Sleeping
File size: 351 Bytes
507a990 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/usr/bin/env python3
"""
Main application entry point for APEC Angiography Segmentation
This file serves as the entry point for the Hugging Face Space
"""
# Import the main application
import angioPySegmentation
# The angioPySegmentation.py file contains the full Streamlit application
# When this app.py is run, it will execute the Streamlit app
|