diff --git a/chapters/en/chapter10/2.mdx b/chapters/en/chapter10/2.mdx index 4d017f327..7baaf1dd7 100644 --- a/chapters/en/chapter10/2.mdx +++ b/chapters/en/chapter10/2.mdx @@ -23,7 +23,7 @@ Once Argilla is up and running, you can log in with your credentials. Now you can go to your Python environment or notebook and install the argilla library: -`! pip install argilla` +`!pip install argilla` Let's connect with our Argilla instance. To do that you will need the following information: diff --git a/chapters/en/chapter10/3.mdx b/chapters/en/chapter10/3.mdx index b754ea66f..55b40192c 100644 --- a/chapters/en/chapter10/3.mdx +++ b/chapters/en/chapter10/3.mdx @@ -31,6 +31,7 @@ We can now think about the settings of our dataset in Argilla. These represent t ```python from datasets import load_dataset + data = load_dataset("SetFit/ag_news", split="train") data.features() ``` diff --git a/chapters/en/chapter10/4.mdx b/chapters/en/chapter10/4.mdx index ea53a2a20..710d0ce39 100644 --- a/chapters/en/chapter10/4.mdx +++ b/chapters/en/chapter10/4.mdx @@ -8,7 +8,7 @@ Before you start annotating your dataset, it is always good practice to write so In Argilla, you can go to your dataset settings page in the UI and modify the guidelines and the descriptions of your questions to help with alignment. -Screenshot of the Dataset Settings page in Argilla. +Screenshot of the Dataset Settings page in Argilla. If you want to dive deeper into the topic of how to write good guidelines, we recommend reading [this blogpost](https://argilla.io/blog/annotation-guidelines-practices) and the bibliographical references mentioned there. @@ -25,11 +25,11 @@ Sometimes, you want to have more than one submitted response per record, for exa When you open your dataset, you will realize that the first question is already filled in with some suggested labels. That's because in the previous section we mapped our question called `label` to the `label_text` column in the dataset, so that we simply need to review and correct the already existing labels: -Screenshot of the dataset in Argilla. +Screenshot of the dataset in Argilla. For the token classification, we'll need to add all labels manually, as we didn't include any suggestions. This is how it might look after the span annotations: -Screenshot of the dataset in Argilla with spans annotated. +Screenshot of the dataset in Argilla with spans annotated. As you move through the different records, there are different actions you can take: - submit your responses, once you're done with the record.