Spaces:
Sleeping
Sleeping
File size: 616 Bytes
f5b289d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #!/usr/bin/env python
"""
DynaCLR Visualization - Hugging Face Spaces Deployment
Interactive visualization of cell embeddings and infection status
with microscopy image viewing.
This is a self-contained deployment package for Hugging Face Spaces.
"""
from dynaclr_viz import create_app
import gradio as gr
if __name__ == "__main__":
print("=" * 60)
print("DynaCLR Visualization - Hugging Face Spaces")
print("=" * 60)
print("Starting application...")
print("=" * 60)
# Create and launch the Gradio app
demo = create_app()
# Launch with HF Spaces configuration
demo.launch()
|