Spaces:
Sleeping
Sleeping
File size: 712 Bytes
74b2d91 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# Firebase credentials
serviceAccountKey.json
# Encoded face data
EncodeFile.p
# Temporary files
*.pyc
__pycache__/
.tmp/
# Dataset directories (if they contain sensitive or large data)
Resources/
Images/
# Operating system files
.DS_Store
Thumbs.db
# Editor/IDE files
.vscode/
.idea/
# Python virtual environment
venv/
env/
# Jupyter notebook checkpoints
.ipynb_checkpoints/
# Gradio cached examples
gradio_cached_examples/
# Files and directories generated during execution (replace with your specific paths if they differ)
output/
*.log
captures/
# If using SQLite or other local DBs
*.db
*.sqlite
*.sqlite3
# Any additional directories you have that contain generated images or mode images
Modes/
|