You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
309 B

  1. # Python
  2. __pycache__
  3. *.pyc
  4. *.pyo
  5. *.pyd
  6. .Python
  7. env/
  8. venv/
  9. .env
  10. *.log
  11. # Docker
  12. Dockerfile
  13. docker-compose.yml
  14. .dockerignore
  15. # Git
  16. .git
  17. .gitignore
  18. # IDE
  19. .vscode/
  20. .idea/
  21. # Face data (will be mounted as volume)
  22. *.pkl
  23. *.faiss
  24. data/
  25. # Others
  26. README.md
  27. *.md
  28. tests/
  29. .pytest_cache/