From 6ba3ffa0d50159de25d0980de1fa49fde421b5c3 Mon Sep 17 00:00:00 2001 From: Mike Knepper Date: Fri, 21 Nov 2025 06:39:04 -0600 Subject: [PATCH 1/2] Update config_builder info helper --- .../self-hosted-tutorials/getting-started/1-the-basics.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nemo/NeMo-Data-Designer/self-hosted-tutorials/getting-started/1-the-basics.ipynb b/nemo/NeMo-Data-Designer/self-hosted-tutorials/getting-started/1-the-basics.ipynb index b99b1194..66e36eba 100644 --- a/nemo/NeMo-Data-Designer/self-hosted-tutorials/getting-started/1-the-basics.ipynb +++ b/nemo/NeMo-Data-Designer/self-hosted-tutorials/getting-started/1-the-basics.ipynb @@ -164,7 +164,7 @@ "metadata": {}, "outputs": [], "source": [ - "config_builder.info.sampler_table" + "config_builder.info.display(\"samplers\")" ] }, { From fb13cd14e8e376ccb2a3e0d372147f9a51a81ebf Mon Sep 17 00:00:00 2001 From: Mike Knepper Date: Tue, 25 Nov 2025 17:26:06 -0600 Subject: [PATCH 2/2] Remove the drop=True arg in notebook 3 to match the lib's notebook --- .../getting-started/3-seeding-with-a-dataset.ipynb | 2 -- 1 file changed, 2 deletions(-) diff --git a/nemo/NeMo-Data-Designer/self-hosted-tutorials/getting-started/3-seeding-with-a-dataset.ipynb b/nemo/NeMo-Data-Designer/self-hosted-tutorials/getting-started/3-seeding-with-a-dataset.ipynb index 0f6e7365..4d82183f 100644 --- a/nemo/NeMo-Data-Designer/self-hosted-tutorials/getting-started/3-seeding-with-a-dataset.ipynb +++ b/nemo/NeMo-Data-Designer/self-hosted-tutorials/getting-started/3-seeding-with-a-dataset.ipynb @@ -237,14 +237,12 @@ " name=\"patient_sampler\",\n", " column_type=\"sampler\",\n", " sampler_type=\"person\",\n", - " drop=True,\n", ")\n", "\n", "config_builder.add_column(\n", " name=\"doctor_sampler\",\n", " column_type=\"sampler\",\n", " sampler_type=\"person\",\n", - " drop=True,\n", ")\n", "\n", "config_builder.add_column(\n",