Fix config path after config moved

This commit is contained in:
NanoCode012
2023-06-12 17:06:15 +09:00
parent f31a338cbb
commit 52cde69288
3 changed files with 6 additions and 6 deletions

View File

@@ -39,10 +39,10 @@ pip3 install -U git+https://github.com/huggingface/peft.git
accelerate config
# finetune lora
accelerate launch scripts/finetune.py examples/lora-openllama-3b/config.yml
accelerate launch scripts/finetune.py examples/openllama-3b/lora.yml
# inference
accelerate launch scripts/finetune.py examples/lora-openllama-3b/config.yml \
accelerate launch scripts/finetune.py examples/openllama-3b/lora.yml \
--inference --lora_model_dir="./lora-out"
```