From de1e1c76b973a474ce3894d02456457b53c5fc7f Mon Sep 17 00:00:00 2001 From: Mikhail Gerassimov Date: Mon, 15 Apr 2024 22:36:02 +0500 Subject: [PATCH] error: Unrecognized arguments: --val_split_fraction 0.1 (#1295) --- README.md | 2 +- tutorials/prepare_dataset.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0082d426a8..6c55a1ee5c 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ litgpt finetune lora \ --checkpoint_dir checkpoints/microsoft/phi-2 \ --data JSON \ --data.json_path my_custom_dataset.json \ - --val_split_fraction 0.1 \ + --data.val_split_fraction 0.1 \ --out_dir out/phi-2-lora # 3) Chat with the model diff --git a/tutorials/prepare_dataset.md b/tutorials/prepare_dataset.md index 867b612f91..055b769bac 100644 --- a/tutorials/prepare_dataset.md +++ b/tutorials/prepare_dataset.md @@ -334,7 +334,7 @@ Then simply run any of the finetuning scripts with this input: litgpt finetune lora \ --data JSON \ --data.json_path path/to/your/data.json \ - --val_split_fraction 0.1 \ + --data.val_split_fraction 0.1 \ --checkpoint_dir "checkpoints/tiiuae/falcon-7b" ```