.gitignore 521 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. *.egg
  7. *.egg-info/
  8. dist/
  9. build/
  10. *.whl
  11. # TypeScript
  12. lib/sam2/demo/
  13. # IDE
  14. .idea/
  15. .vscode/
  16. *.swp
  17. *.swo
  18. # OS
  19. .DS_Store
  20. Thumbs.db
  21. # Reference code & papers (do not upload)
  22. ref/
  23. tmp/
  24. # Weights & checkpoints
  25. *.pth
  26. *.pt
  27. *.ckpt
  28. *.onnx
  29. # Logs & outputs
  30. *.log
  31. outputs/
  32. results/
  33. runs/
  34. lightning_logs/
  35. # Jupyter
  36. .ipynb_checkpoints/
  37. # Environment
  38. .env
  39. .venv/
  40. venv/
  41. # data
  42. data/
  43. cache/
  44. # Codex and .gitignore
  45. .codex
  46. .gitignore