.gitignore 537 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .idea
  2. *.pt
  3. *.pth
  4. *.png
  5. *.log
  6. *.onnx
  7. runs
  8. logs
  9. log
  10. /tensorboard/
  11. logs/
  12. tensorboard_logs/
  13. summaries/
  14. events.out.tfevents.*
  15. # If you have a specific directory for your runs, you can ignore it directly
  16. /runs/
  17. # Ignore checkpoint files if you don't want to track them
  18. checkpoint
  19. *.ckpt.data-*
  20. *.ckpt.index
  21. *.ckpt.meta
  22. # Ignore TensorFlow model files that are not necessary for version control
  23. *.pb
  24. /*.pbtxt
  25. # Ignore Jupyter Notebook checkpoints
  26. /.ipynb_checkpoints/
  27. __pycache__
  28. train_results
  29. *.tif
  30. *.tiff
  31. *.jpg
  32. *.png
  33. ipynb_checkpoints