| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- # -----------------------------------
- # Python
- # -----------------------------------
- __pycache__/
- *.py[cod]
- *.egg-info/
- *.egg
- *.pyo
- *.pyd
- *.pdb
- # Virtual environment
- venv/
- env/
- .venv/
- # Jupyter / Notebook
- .ipynb_checkpoints/
- # Byte-compiled
- *.so
- # -----------------------------------
- # DeepFace / OpenCV / Temp Files
- # -----------------------------------
- temp_upload.jpg
- temp/
- output/
- *.log
- *.cache
- cache/
- models/
- weights/
- # -----------------------------------
- # gRPC generated files
- # -----------------------------------
- face_recognition_pb2.py
- face_recognition_pb2_grpc.py
- # (Optional) If you want to commit proto only
- # !face_recognition.proto
- # -----------------------------------
- # OS specific
- # -----------------------------------
- .DS_Store
- Thumbs.db
- # -----------------------------------
- # IDE
- # -----------------------------------
- .vscode/
- .idea/
- # -----------------------------------
- # Deployment / Build artifacts
- # -----------------------------------
- data/
- dist/
- build/
- *.spec
- # -----------------------------------
- # Python backups
- # -----------------------------------
- *.bak
- *.tmp
- *~
|