Fix config path after config moved
Browse files- README.md +2 -2
- examples/gptq-lora-7b/README.md +1 -1
- examples/openllama-3b/README.md +3 -3
README.md
CHANGED
|
@@ -39,10 +39,10 @@ pip3 install -U git+https://github.com/huggingface/peft.git
|
|
| 39 |
accelerate config
|
| 40 |
|
| 41 |
# finetune lora
|
| 42 |
-
accelerate launch scripts/finetune.py examples/
|
| 43 |
|
| 44 |
# inference
|
| 45 |
-
accelerate launch scripts/finetune.py examples/
|
| 46 |
--inference --lora_model_dir="./lora-out"
|
| 47 |
```
|
| 48 |
|
|
|
|
| 39 |
accelerate config
|
| 40 |
|
| 41 |
# finetune lora
|
| 42 |
+
accelerate launch scripts/finetune.py examples/openllama-3b/lora.yml
|
| 43 |
|
| 44 |
# inference
|
| 45 |
+
accelerate launch scripts/finetune.py examples/openllama-3b/lora.yml \
|
| 46 |
--inference --lora_model_dir="./lora-out"
|
| 47 |
```
|
| 48 |
|
examples/gptq-lora-7b/README.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
| 3 |
This is a good place to start for beginners. This will run on an NVIDIA RTX4090 with no other changes needed.
|
| 4 |
|
| 5 |
```shell
|
| 6 |
-
accelerate launch scripts/finetune.py examples/
|
| 7 |
|
| 8 |
```
|
|
|
|
| 3 |
This is a good place to start for beginners. This will run on an NVIDIA RTX4090 with no other changes needed.
|
| 4 |
|
| 5 |
```shell
|
| 6 |
+
accelerate launch scripts/finetune.py examples/gptq-lora-7b/config.yml
|
| 7 |
|
| 8 |
```
|
examples/openllama-3b/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
| 2 |
|
| 3 |
Basic full tune
|
| 4 |
```shell
|
| 5 |
-
accelerate launch scripts/finetune.py examples/
|
| 6 |
```
|
| 7 |
|
| 8 |
LoRA
|
| 9 |
```shell
|
| 10 |
-
accelerate launch scripts/finetune.py examples/
|
| 11 |
```
|
| 12 |
|
| 13 |
QLoRA
|
| 14 |
```shell
|
| 15 |
-
accelerate launch scripts/finetune.py examples/
|
| 16 |
```
|
|
|
|
| 2 |
|
| 3 |
Basic full tune
|
| 4 |
```shell
|
| 5 |
+
accelerate launch scripts/finetune.py examples/openllama-3b/config.yml
|
| 6 |
```
|
| 7 |
|
| 8 |
LoRA
|
| 9 |
```shell
|
| 10 |
+
accelerate launch scripts/finetune.py examples/openllama-3b/lora.yml
|
| 11 |
```
|
| 12 |
|
| 13 |
QLoRA
|
| 14 |
```shell
|
| 15 |
+
accelerate launch scripts/finetune.py examples/openllama-3b/qlora.yml
|
| 16 |
```
|