From 411ac504eb78e11fb818208383f651e7072f6ac6 Mon Sep 17 00:00:00 2001 From: Alpamys Date: Sat, 4 Jul 2026 14:03:46 +0500 Subject: [PATCH] docs: credit @CODING-DARSH for vision/audio vocab expansion (#291) --- CHANGELOG.md | 7 +++++++ CONTRIBUTORS.md | 1 + 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc5a127..f5cc6cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,13 @@ reproducing 70+ versions of notes. ## [Unreleased] +### Fixed +- Vision and audio SFT paths now apply configured vocabulary expansion + (`data.add_new_tokens` / `data.new_special_tokens`) via the shared + `apply_vocab_expansion()` helper, consistent with the text SFT path — they + previously ignored it. Closes #290 + ([#291](https://github.com/MakazhanAlpamys/Soup/pull/291) by [@CODING-DARSH](https://github.com/CODING-DARSH)). + ## [0.71.27] - 2026-07-03 ### Added diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ed3cc5c..7152804 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -47,6 +47,7 @@ Listed by first contribution. PR numbers link the work. - **Darsh** ([@CODING-DARSH](https://github.com/CODING-DARSH)) - Harden judge-URL validation against hostname prefix bypass (`startswith` → `urlparse`) in `eval/gate.py` ([#288](https://github.com/MakazhanAlpamys/Soup/pull/288)) - Apply configured vocabulary expansion (`data.add_new_tokens` / `new_special_tokens`) during SFT trainer init ([#287](https://github.com/MakazhanAlpamys/Soup/pull/287)) + - Reuse the shared vocab-expansion helper in the vision + audio SFT paths ([#291](https://github.com/MakazhanAlpamys/Soup/pull/291)) ---