From b0dea54188bd235ecf75a43dd5f654831b028e0d Mon Sep 17 00:00:00 2001 From: Sarah Yurick <53962159+sarahyurick@users.noreply.github.com> Date: Wed, 14 Jan 2026 10:38:34 -0800 Subject: [PATCH] Fix bug in SDG example (#1370) Signed-off-by: Sarah Yurick Signed-off-by: NeMo Bot --- tutorials/synthetic/synthetic_data_generation_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/synthetic/synthetic_data_generation_example.py b/tutorials/synthetic/synthetic_data_generation_example.py index 95da9fbbb6..579229530a 100644 --- a/tutorials/synthetic/synthetic_data_generation_example.py +++ b/tutorials/synthetic/synthetic_data_generation_example.py @@ -51,7 +51,7 @@ class BeginsWithLanguageFilter(DocumentFilter): """ def __init__(self, languages: list[str]): - self.name = "begins_with_language_filter" + self._name = "begins_with_language_filter" self.languages = languages def score_document(self, text: str) -> float: