AiRoom / .gitignore
H1017's picture
Upload folder using huggingface_hub
bd7463f verified
raw
history blame contribute delete
612 Bytes
# Python 编译文件
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# 虚拟环境
venv/
ENV/
env/
.env
# 下载的资源文件
resources/
*.pt
*.pth
*.bin
*.safetensors
*.onnx
model_cache/
# 生成的图像
*.png
*.jpg
*.jpeg
*.gif
*.bmp
*.tiff
sample_input.png
# 日志文件
*.log
logs/
# IDE 相关文件
.idea/
.vscode/
*.swp
*.swo
.DS_Store
# 临时文件
.ipynb_checkpoints/
.pytest_cache/
.coverage
htmlcov/
.tox/