| # Fichiers et dossiers à ignorer lors du build Docker | |
| # Dossiers d'entraînement et de données | |
| training_output/ | |
| training_output_v2/ | |
| datas/ | |
| analysis_output/ | |
| training_output_v2/ | |
| # Fichiers de logs | |
| *.log | |
| logs/ | |
| job_logs/ | |
| # Fichiers temporaires | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| *.so | |
| .pytest_cache/ | |
| # Environnements virtuels | |
| env/ | |
| venv/ | |
| .venv/ | |
| new_env/ | |
| # Fichiers IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Fichiers OS | |
| .DS_Store | |
| .DS_Store? | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| ehthumbs.db | |
| Thumbs.db | |
| # Fichiers Git | |
| .git/ | |
| .gitignore | |
| # Fichiers de configuration locaux | |
| .env | |
| .env.local | |
| .env.*.local | |
| # Fichiers de documentation non nécessaires | |
| README_*.md | |
| DEPLOYMENT_*.md | |
| *.md | |
| !README.md | |
| # Fichiers de scripts non nécessaires | |
| run_ui.sh | |
| deploy_to_hf.sh | |
| prepare_models_for_hf.py | |
| start_*.sh | |
| test_*.py | |
| evaluate_*.py | |
| train_*.py | |
| run_training*.py | |
| split_dataset*.py | |
| main.py | |
| preprocessing.py | |
| predict_single_image.py | |
| # Fichiers de configuration non nécessaires | |
| config.json | |
| docker-compose*.yml | |
| Dockerfile* | |
| Jenkinsfile | |
| # Fichiers de données volumineux | |
| *.h5 | |
| *.hdf5 | |
| *.pkl | |
| *.pickle | |
| *.npy | |
| *.npz | |
| # Fichiers de sauvegarde | |
| *.bak | |
| *.backup | |
| *.old | |
| # Fichiers de test | |
| test_*/ | |
| tests/ | |
| *_test.py | |
| test_*.py | |
| # Fichiers de build | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| # Fichiers de cache | |
| .cache/ | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| # Fichiers de déploiement | |
| hf_deploy/ | |
| deploy/ | |
| # Fichiers de monitoring | |
| celerybeat-schedule | |
| dump.rdb | |
| # Fichiers de configuration spécifiques | |
| setup_nltk.py | |
| health_check.py | |
| wait_for_db.py | |