#!/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()