Brain-Tumor-detection / .gitignore
S4G4R-Byte's picture
Initial commit with app.py, .gitignore, and requirements.txt
62a4c73
raw
history blame contribute delete
310 Bytes
# Python cache and bytecode
__pycache__/
*.py[cod]
*.so
# Virtual environments
env/
venv/
.venv/
# Model weights and large files
*.pth
*.pt
# Output images and plots
*.png
*.jpg
*.jpeg
# Gradio cached files
gradio_cached_examples/
# System/OS files
.DS_Store
Thumbs.db
# VS Code settings
.vscode/
.idea/