86 lines
869 B
Plaintext
86 lines
869 B
Plaintext
# Python 缓存
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# 虚拟环境和本地环境文件
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env
|
|
.env.*
|
|
*.env
|
|
|
|
# Conda 本地环境目录
|
|
.conda/
|
|
conda-meta/
|
|
|
|
# IDE / 编辑器
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# 数据集和本地原始数据
|
|
data/
|
|
datasets/
|
|
raw_data/
|
|
|
|
# 训练、验证、测试输出
|
|
runs/
|
|
outputs/
|
|
output/
|
|
results/
|
|
logs/
|
|
checkpoints/
|
|
weights/
|
|
predictions/
|
|
reports/
|
|
figures/
|
|
|
|
# 模型权重和导出产物
|
|
*.pt
|
|
*.pth
|
|
*.ckpt
|
|
*.safetensors
|
|
*.onnx
|
|
*.engine
|
|
*.trt
|
|
*.torchscript
|
|
|
|
# 量化和性能测试产物
|
|
quantized/
|
|
calibration_cache/
|
|
benchmark/
|
|
profile/
|
|
*.profile
|
|
*.prof
|
|
|
|
# 数组、表格和中间结果
|
|
*.npy
|
|
*.npz
|
|
*.pkl
|
|
*.pickle
|
|
*.csv.tmp
|
|
*.json.tmp
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# 日志和临时文件
|
|
*.log
|
|
*.tmp
|
|
*.temp
|
|
|