Lisa Dunlap
restart
4862c84
raw
history blame contribute delete
385 Bytes
"""Gradio-based visualization for LMM-Vibes pipeline results.
This module provides a Gradio interface for exploring model performance,
cluster analysis, and detailed examples from pipeline output.
Usage:
from lmmvibes.vis_gradio import launch_app
launch_app(results_dir="path/to/results")
"""
from .app import launch_app, create_app
__all__ = ["launch_app", "create_app"]