Files
coursework-image-recognitio…/.gitignore
2025-12-22 22:35:23 +03:00

56 lines
957 B
Plaintext

# ===============================
# Python
# ===============================
__pycache__/
*.py[cod]
*.pyo
*.pyd
# ===============================
# Virtual environments
# ===============================
.venv/
venv/
ENV/
# ===============================
# IDE (PyCharm / IntelliJ)
# ===============================
.idea/
*.iml
.gigaide/
# ===============================
# OS
# ===============================
.DS_Store
Thumbs.db
# ===============================
# Project-specific (inside src/)
# ===============================
src/artifacts/
src/data/
# ===============================
# Logs
# ===============================
*.log
# ===============================
# Temporary / backup files
# ===============================
*.tmp
*.bak
*.swp
# ===============================
# Jupyter
# ===============================
.ipynb_checkpoints/
# ===============================
# CUDA cache (optional)
# ===============================
.cuda/