Spaces:
Sleeping
Sleeping
| # 忽略虛擬環境和 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/ |