Skip to content

Commit a695fd7

Browse files
kjslagmreso
authored andcommitted
fix typos
1 parent 93cd3b9 commit a695fd7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

recipes/finetuning/singlegpu_finetuning.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To run fine-tuning on a single GPU, we will make use of two packages:
1616
## How to run it?
1717

1818
```bash
19-
python -m finetuning.py --use_peft --peft_method lora --quantization --use_fp16 --model_name /path_of_model_folder/8B --output_dir Path/to/save/PEFT/model
19+
python finetuning.py --use_peft --peft_method lora --quantization --use_fp16 --model_name /path_of_model_folder/8B --output_dir Path/to/save/PEFT/model
2020
```
2121
The args used in the command above are:
2222

@@ -34,7 +34,7 @@ Currently 3 open source datasets are supported that can be found in [Datasets co
3434

3535
* `grammar_dataset` : use this [notebook](../../src/llama_recipes/datasets/grammar_dataset/grammar_dataset_process.ipynb) to pull and process the Jfleg and C4 200M datasets for grammar checking.
3636

37-
* `alpaca_dataset` : to get this open source data please download the `aplaca.json` to `dataset` folder.
37+
* `alpaca_dataset` : to get this open source data please download the `alpaca.json` to `dataset` folder.
3838

3939

4040
```bash
@@ -46,7 +46,7 @@ wget -P ../../src/llama_recipes/datasets https://raw.githubusercontent.com/tatsu
4646
to run with each of the datasets set the `dataset` flag in the command as shown below:
4747

4848
```bash
49-
# grammer_dataset
49+
# grammar_dataset
5050

5151
python -m finetuning.py --use_peft --peft_method lora --quantization --dataset grammar_dataset --model_name /path_of_model_folder/8B --output_dir Path/to/save/PEFT/model
5252

0 commit comments

Comments
 (0)