Unified_Prompt_Guard / .dockerignore
ynyg's picture
feat: 添加 Docker 忽略文件和更新 .gitignore
9c7dff3 verified
raw
history blame contribute delete
438 Bytes
# 忽略虛擬環境和 Python 緩存
.venv/
__pycache__/
*.pyc
*.pyo
*.pyd
# 忽略深度學習模型目錄 (根據你的目錄名修改,例如 models/ 或 weights/)
models/
weights/
checkpoints/
.onnx
*.pth
*.bin
*.h5
*.safetensors
# 忽略數據集
data/
datasets/
# 忽略版本控制和編輯器配置
.git/
.idea/
.vscode/
.gitignore
.gitattributes
# 忽略日誌和臨時文件
logs/
*.log
tmp/