tmp.gitignore 699 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. # Distribution / packaging
  7. dist/
  8. build/
  9. *.egg
  10. *.egg-info/
  11. *.whl
  12. # Testing
  13. .pytest_cache/
  14. # Virtual environments
  15. .env
  16. .venv/
  17. venv/
  18. # IDE and editor files
  19. .idea/
  20. .vscode/
  21. *.swp
  22. *.swo
  23. # OS generated files
  24. .DS_Store
  25. Thumbs.db
  26. # Jupyter Notebook
  27. .ipynb_checkpoints/
  28. # Project specific directories
  29. lib/sam2/demo/
  30. ref/
  31. tmp/
  32. # Model weights and checkpoints
  33. *.pth
  34. *.pt
  35. *.ckpt
  36. *.onnx
  37. # Logs and experimental outputs
  38. *.log
  39. outputs/
  40. results/
  41. runs/
  42. lightning_logs/
  43. swanlog/
  44. # Data and documentation (exclude lib/data)
  45. /data/
  46. cache/
  47. docs/
  48. !lib/data/
  49. # Codex and git ignore itself
  50. .codex
  51. .gitignore
  52. # Test directory
  53. tests/