Spaces:
Sleeping
Sleeping
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| .env | |
| .venv | |
| env/ | |
| venv/ | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| *.db | |
| *.sqlite | |
| *.pkl | |
| !02_xgb_model_tuned.pkl | |
| *.csv | |
| # Keep the specific model and data files if they are part of the repo, but usually data is ignored. | |
| # User context implies they are provided files, so maybe we keep them or ignore them. | |
| # For this exercise, I'll assume we track them or they are already there. | |
| # Let's ignore the generated schemas text files | |
| generated_schemas.txt | |
| generated_schemas_v2.txt | |
| # Ignore all markdown files except README.md | |
| *.md | |
| !README.md | |