Spaces:
Running
on
Zero
Running
on
Zero
Create .gitignore
Browse files- .gitignore +101 -0
.gitignore
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
*.so
|
| 6 |
+
.Python
|
| 7 |
+
build/
|
| 8 |
+
develop-eggs/
|
| 9 |
+
dist/
|
| 10 |
+
downloads/
|
| 11 |
+
eggs/
|
| 12 |
+
.eggs/
|
| 13 |
+
lib/
|
| 14 |
+
lib64/
|
| 15 |
+
parts/
|
| 16 |
+
sdist/
|
| 17 |
+
var/
|
| 18 |
+
wheels/
|
| 19 |
+
*.egg-info/
|
| 20 |
+
.installed.cfg
|
| 21 |
+
*.egg
|
| 22 |
+
MANIFEST
|
| 23 |
+
|
| 24 |
+
# PyInstaller
|
| 25 |
+
*.manifest
|
| 26 |
+
*.spec
|
| 27 |
+
|
| 28 |
+
# Unit test / coverage reports
|
| 29 |
+
htmlcov/
|
| 30 |
+
.tox/
|
| 31 |
+
.nox/
|
| 32 |
+
.coverage
|
| 33 |
+
.coverage.*
|
| 34 |
+
.cache
|
| 35 |
+
nosetests.xml
|
| 36 |
+
coverage.xml
|
| 37 |
+
*.cover
|
| 38 |
+
.hypothesis/
|
| 39 |
+
.pytest_cache/
|
| 40 |
+
|
| 41 |
+
# Virtual environments
|
| 42 |
+
.env
|
| 43 |
+
.venv
|
| 44 |
+
env/
|
| 45 |
+
venv/
|
| 46 |
+
ENV/
|
| 47 |
+
env.bak/
|
| 48 |
+
venv.bak/
|
| 49 |
+
|
| 50 |
+
# IDEs
|
| 51 |
+
.vscode/
|
| 52 |
+
.idea/
|
| 53 |
+
*.swp
|
| 54 |
+
*.swo
|
| 55 |
+
*~
|
| 56 |
+
|
| 57 |
+
# OS
|
| 58 |
+
.DS_Store
|
| 59 |
+
.DS_Store?
|
| 60 |
+
._*
|
| 61 |
+
.Spotlight-V100
|
| 62 |
+
.Trashes
|
| 63 |
+
ehthumbs.db
|
| 64 |
+
Thumbs.db
|
| 65 |
+
|
| 66 |
+
# Jupyter Notebook
|
| 67 |
+
.ipynb_checkpoints
|
| 68 |
+
|
| 69 |
+
# Gradio
|
| 70 |
+
gradio_cached_examples/
|
| 71 |
+
flagged/
|
| 72 |
+
|
| 73 |
+
# Models and large files
|
| 74 |
+
models/
|
| 75 |
+
*.bin
|
| 76 |
+
*.safetensors
|
| 77 |
+
*.ckpt
|
| 78 |
+
*.pt
|
| 79 |
+
*.pth
|
| 80 |
+
|
| 81 |
+
# Generated images
|
| 82 |
+
outputs/
|
| 83 |
+
temp/
|
| 84 |
+
cache/
|
| 85 |
+
|
| 86 |
+
# Logs
|
| 87 |
+
*.log
|
| 88 |
+
logs/
|
| 89 |
+
|
| 90 |
+
# Environment variables
|
| 91 |
+
.env.local
|
| 92 |
+
.env.production
|
| 93 |
+
.env.development
|
| 94 |
+
|
| 95 |
+
# Temporary files
|
| 96 |
+
tmp/
|
| 97 |
+
temp_uploads/
|
| 98 |
+
*.tmp
|
| 99 |
+
|
| 100 |
+
# Hugging Face
|
| 101 |
+
.huggingface/
|