From e87a5cf67144ef851a11d70ac6d028ec502d97d0 Mon Sep 17 00:00:00 2001 From: David Berenstein Date: Thu, 20 Jun 2024 20:18:34 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: burtenshaw --- docs/_source/_common/snippets/start_page.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_source/_common/snippets/start_page.md b/docs/_source/_common/snippets/start_page.md index 7696f729bd..eddfa95440 100644 --- a/docs/_source/_common/snippets/start_page.md +++ b/docs/_source/_common/snippets/start_page.md @@ -45,7 +45,7 @@ client = rg.Argilla( Specify a workspace where the dataset will be created. Check your workspaces in ["My settings"](/user-settings). To create a new workspace, check the [docs](https://argilla-io.github.io/argilla/latest/how_to_guides/workspace/). -Create a Dataset with two labels ("positive" and "negative"). Don't forget to replace "". Here, we are using a task template, check the docs to [create a fully custom dataset](https://argilla-io.github.io/argilla/latest/how_to_guides/dataset/). +Here, we are defining a creating a dataset with a text field and a label question ("positive" and "negative"), check the docs to [create a fully custom dataset](https://argilla-io.github.io/argilla/latest/how_to_guides/dataset/). Don't forget to replace "". ```python settings = rg.Settings( @@ -76,7 +76,7 @@ dataset.create() ### 4. Add records -You canCreate a list with the records you want to add. Ensure that you match the fields with the ones specified in the previous step. +You can create a list with records that you want to add. Ensure that you match the fields with those specified in the question settings. You can also use `pandas` or `datasets.load_dataset` to [read an existing dataset and create records from it](https://argilla-io.github.io/argilla/latest/how_to_guides/record/).