oc_p5-dev / app.py
ASI-Engineer's picture
Upload folder using huggingface_hub
48eefe6 verified
raw
history blame contribute delete
350 Bytes
#!/usr/bin/env python3
"""
App Gradio pour Hugging Face Spaces.
Lance l'interface Gradio pour la prédiction de turnover.
"""
import sys
import os
from src.gradio_ui import launch_standalone
# Ajouter le répertoire src au path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))
if __name__ == "__main__":
launch_standalone()