From 26410c52edc3491e6b3c210c94f47c44f17487bf Mon Sep 17 00:00:00 2001 From: Seashore Shi Date: Tue, 28 Apr 2026 13:24:32 +0800 Subject: [PATCH] docs: fix duplicated 'to' typo in finetuning guidance --- FINETUNING.md | 2 +- examples/scripts/finetuning/finetune_secret_demo.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FINETUNING.md b/FINETUNING.md index f8d70f3..ce90dc7 100644 --- a/FINETUNING.md +++ b/FINETUNING.md @@ -60,7 +60,7 @@ Notes: Canonical harness scripts live in `examples/scripts/finetuning/`: 1. `finetune_secret_demo.sh` - - The demo dataset contains strings redacted as by the baseline model, but with ground truths labeled as instead. It illustrates how the model can be retrained to adapt to to the category policy change. + - The demo dataset contains strings redacted as by the baseline model, but with ground truths labeled as instead. It illustrates how the model can be retrained to adapt to the category policy change. 2. `finetune_custom_label_demo.sh` - The demo defines a new label space consisting only of the background class ("O") and a single, newly defined "custom_secret" category. It illustrates how the model can be adapted to recognize this new category instead of its original categories. diff --git a/examples/scripts/finetuning/finetune_secret_demo.sh b/examples/scripts/finetuning/finetune_secret_demo.sh index 71e470b..0f3f4e7 100755 --- a/examples/scripts/finetuning/finetune_secret_demo.sh +++ b/examples/scripts/finetuning/finetune_secret_demo.sh @@ -137,7 +137,7 @@ for split in train validation test; do done echo "Finetuning Privacy Filter: Demo 1." -echo "The demo dataset contains strings redacted as by the baseline model, but with ground truths labeled as instead. It illustrates how the model can be retrained to adapt to to the category policy change." +echo "The demo dataset contains strings redacted as by the baseline model, but with ground truths labeled as instead. It illustrates how the model can be retrained to adapt to the category policy change." echo "Training data: ${DATA_DIR}/train.jsonl" echo "Validation data: ${DATA_DIR}/validation.jsonl" echo "Test data: ${DATA_DIR}/test.jsonl"