.gitignore 511 B

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