diff options
| author | 2025-12-30 21:21:59 +0800 | |
|---|---|---|
| committer | 2025-12-30 21:22:07 +0800 | |
| commit | d35712d0f200b7862450b173a1bee95d1bd85dc8 (patch) | |
| tree | d29ec96468d1f630262386e5b2c06a13622fdaee /.gitignore | |
| parent | 2a7b27169c6b208175aad3d46c97a97cb59cd751 (diff) | |
| download | base-model-d35712d0f200b7862450b173a1bee95d1bd85dc8.tar.gz base-model-d35712d0f200b7862450b173a1bee95d1bd85dc8.zip | |
feat: Update Python version requirement and add onnxscript dependency
- Changed the required Python version from >=3.12 to >=3.10 in pyproject.toml.
- Reformatted the dependencies section for better readability.
- Added "onnxscript>=0.5.7" to the train optional dependencies.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -164,4 +164,17 @@ cython_debug/ uv.lock # dataset -dataset/
\ No newline at end of file +dataset/ + +# 忽略整个 models 目录,但保留推理需要的文件 +models/ +!models/**/*.onnx +!models/**/*.onnx.data +!models/**/config.json +!models/**/tokenizer.json +!models/**/tokenizer_config.json +!models/**/special_tokens_map.json +!models/**/vocab.txt + +# CI build artifacts +model.zip
\ No newline at end of file |
