CoolFace
Apppublic

infinitymatter/synthdatagen

sourceHugging Faceupdated 1y agoView on Hugging Face
5likes
app.py9 linesDownload Raw Back to root
1from src.ui import build_ui2 3if __name__ == "__main__":4    # Build the user interface5    ui, output_dir = build_ui()6    7    # Launch the UI in the browser with access to the "output" folder8    ui.launch(server_name="0.0.0.0", server_port=7860, allowed_paths=[output_dir])9