* peft issue

* Update save.py

* Update __init__.py

* Update pyproject.toml
This commit is contained in:
Daniel Han 2024-05-17 23:46:33 +10:00 committed by GitHub
commit dde6a0f0d3
2 changed files with 7 additions and 1 deletions

View file

@ -43,7 +43,7 @@ huggingface = [
"numpy",
"accelerate>=0.26.1",
"trl>=0.7.9",
"peft>=0.7.1,<0.11.0",
"peft>=0.7.1,!=0.11.0",
"protobuf<4.0.0",
]
cu118only = [

View file

@ -31,3 +31,9 @@ from .fast_lora import (
apply_lora_o,
)
from .utils import fast_dequantize, fast_gemv, QUANT_STATE, fast_linear_forward, matmul_lora
try:
print("🦥 Unsloth: Will patch your computer to enable 2x faster free finetuning.")
except:
print("Unsloth: Will patch your computer to enable 2x faster free finetuning.")
pass