Add peft install for quickstart
Browse files
README.md
CHANGED
|
@@ -33,6 +33,7 @@
|
|
| 33 |
git clone https://github.com/OpenAccess-AI-Collective/axolotl
|
| 34 |
|
| 35 |
pip3 install -e .
|
|
|
|
| 36 |
|
| 37 |
accelerate config
|
| 38 |
|
|
@@ -70,8 +71,8 @@ accelerate launch scripts/finetune.py examples/lora-openllama-3b/config.yml \
|
|
| 70 |
3. Install python dependencies with ONE of the following:
|
| 71 |
- Recommended, supports QLoRA, NO gptq/int4 support
|
| 72 |
```bash
|
| 73 |
-
pip3 install -U git+https://github.com/huggingface/peft.git
|
| 74 |
pip3 install -e .
|
|
|
|
| 75 |
```
|
| 76 |
- gptq/int4 support, NO QLoRA
|
| 77 |
```bash
|
|
|
|
| 33 |
git clone https://github.com/OpenAccess-AI-Collective/axolotl
|
| 34 |
|
| 35 |
pip3 install -e .
|
| 36 |
+
pip3 install -U git+https://github.com/huggingface/peft.git
|
| 37 |
|
| 38 |
accelerate config
|
| 39 |
|
|
|
|
| 71 |
3. Install python dependencies with ONE of the following:
|
| 72 |
- Recommended, supports QLoRA, NO gptq/int4 support
|
| 73 |
```bash
|
|
|
|
| 74 |
pip3 install -e .
|
| 75 |
+
pip3 install -U git+https://github.com/huggingface/peft.git
|
| 76 |
```
|
| 77 |
- gptq/int4 support, NO QLoRA
|
| 78 |
```bash
|