.gitignore 273 B

123456789101112131415161718192021222324252627
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *.egg-info/
  5. .venv/
  6. venv/
  7. # Env and secrets
  8. .env
  9. .env.*
  10. *.key
  11. *.pem
  12. # Data and model artifacts
  13. data/raw/*
  14. data/processed/*
  15. !data/raw/.gitkeep
  16. !data/processed/.gitkeep
  17. outputs/
  18. checkpoints/
  19. runs/
  20. wandb/
  21. # OS / IDE
  22. .DS_Store
  23. .vscode/
  24. .idea/