Spaces:
Sleeping
Sleeping
| # Git | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # Python | |
| __pycache__ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| env/ | |
| venv/ | |
| ENV/ | |
| *.egg-info/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Data and artifacts (mounted as volumes) | |
| artifacts/ | |
| monitoring/predictions/ | |
| monitoring/reports/ | |
| monitoring/drift_reports/ | |
| mlruns/ | |
| data/ | |
| # Airflow | |
| airflow/logs/ | |
| airflow/airflow.db | |
| # Documentation | |
| README.md | |
| docs/ | |
| *.md | |
| # Docker | |
| Dockerfile | |
| docker-compose.yaml | |
| .dockerignore | |
| # CI/CD | |
| .github/ | |
| # Tests | |
| tests/ | |
| pytest.ini | |
| .pytest_cache/ | |
| # Notebooks | |
| notebooks/ | |
| *.ipynb | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |