You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
587 B
52 lines
587 B
# Python 编译缓存
|
|
__pycache__/
|
|
|
|
# 数据文件
|
|
*.csv
|
|
|
|
# 环境配置文件(包含敏感信息)
|
|
*.env
|
|
|
|
# 日志及进程文件
|
|
logs/
|
|
*.log
|
|
*.pid
|
|
|
|
# 上传文件临时目录
|
|
uploads/
|
|
|
|
# 微调生成文件
|
|
*.json
|
|
*.bin
|
|
*.pkl
|
|
*.safetensors
|
|
*.pt
|
|
*.txt
|
|
|
|
# vscode 配置
|
|
.vscode/
|
|
|
|
# github 工作流配置
|
|
.github/
|
|
|
|
# pycharm 配置
|
|
.idea/
|
|
|
|
# pytest配置
|
|
*.ini
|
|
|
|
# 测试相关
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
pytest_cache/
|
|
test-results/
|
|
test-reports/
|
|
run_tests.py |