Skip to content

Commit 1407eb7

Browse files
feat(finetune): qwen3 0.6B finetune with LoRA(by PEFT) (#122)
* qwen3 finetune
1 parent 584888f commit 1407eb7

5 files changed

Lines changed: 1445 additions & 1940 deletions

File tree

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# playground: only keep .ipynbs, .py, ignore everything else
2+
playground/*
3+
!playground/*.ipynb
4+
!playground/*.py
5+
6+
7+
# lock files
8+
uv.lock
9+
110
# test
211
junit.xml
312

.pre-commit-config.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ repos:
1212
args: [--fix=lf]
1313
- repo: https://github.com/astral-sh/ruff-pre-commit
1414
# Ruff version.
15-
rev: v0.11.8
15+
rev: v0.11.9
1616
hooks:
1717
# Run the linter.
1818
- id: ruff
19+
args: ["--config=pyproject.toml"]
1920
# Run the formatter.
2021
- id: ruff-format
22+
args: ["--config=pyproject.toml"]

0 commit comments

Comments
 (0)