# Git .git .gitignore # Python __pycache__/ *.py[cod] *$py.class *.so .Python env/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg # Virtual Environment venv/ ENV/ # IDE .idea/ .vscode/ *.swp *.swo # Logs *.log logs/ # OS .DS_Store Thumbs.db # Project specific *.pth *.pt *.ckpt *.bin *.onnx *.h5 *.hdf5 *.pkl *.joblib *.npy *.npz # Jupyter Notebook .ipynb_checkpoints *.ipynb # Documentation LICENSE *.md !README.md # Test files test/ tests/ *_test.py *_tests.py