You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: textcat tutorial and small doc fixes (#5055)
<!-- Thanks for your contribution! As part of our Community Growers
initiative 🌱, we're donating Justdiggit bunds in your name to reforest
sub-Saharan Africa. To claim your Community Growers certificate, please
contact David Berenstein in our Slack community or fill in this form
https://tally.so/r/n9XrxK once your PR has been merged. -->
# Description
Please include a summary of the changes and the related issue. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
Closes#5035
**Type of change**
(Remember to title the PR according to the type of change)
- [x] Documentation update
**How Has This Been Tested**
(Please describe the tests that you ran to verify your changes.)
`mkdocs serve`
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: David Berenstein <[email protected]>
Copy file name to clipboardExpand all lines: argilla/docs/how_to_guides/dataset.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ A **dataset** is a collection of records that you can configure for labelers to
25
25
client=client
26
26
)
27
27
```
28
-
> Check the [Dataset - Python Reference](../../reference/argilla/datasets/datasets.md) to see the attributes, arguments, and methods of the `Dataset` class in detail.
28
+
> Check the [Dataset - Python Reference](../reference/argilla/datasets/datasets.md) to see the attributes, arguments, and methods of the `Dataset` class in detail.
29
29
30
30
=== "`rg.Settings`"
31
31
@@ -45,7 +45,7 @@ A **dataset** is a collection of records that you can configure for labelers to
45
45
)
46
46
```
47
47
48
-
> Check the [Settings - Python Reference](../../reference/argilla/settings/settings.md) to see the attributes, arguments, and methods of the `Settings` class in detail.
48
+
> Check the [Settings - Python Reference](../reference/argilla/settings/settings.md) to see the attributes, arguments, and methods of the `Settings` class in detail.
Copy file name to clipboardExpand all lines: argilla/docs/how_to_guides/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
-
description: These are the how-to guides for the Argilla Python SDK. They provide step-by-step instructions for common scenarios, including detailed explanations and code samples.
2
+
description: These are the how-to guides for the Argilla SDK. They provide step-by-step instructions for common scenarios, including detailed explanations and code samples.
3
3
hide: toc
4
4
---
5
5
6
6
# How-to guides
7
7
8
-
These are the how-to guides for *the Argilla Python SDK*. They provide step-by-step instructions for common scenarios, including detailed explanations and code samples.
8
+
These are the how-to guides for *the Argilla SDK*. They provide step-by-step instructions for common scenarios, including detailed explanations and code samples.
Copy file name to clipboardExpand all lines: argilla/docs/how_to_guides/query_export.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ You can search for records in your dataset by **querying** or **filtering**. The
18
18
filter=filter
19
19
)
20
20
```
21
-
> Check the [Query - Python Reference](../../reference/argilla/search.md) to see the attributes, arguments, and methods of the `Query` class in detail.
21
+
> Check the [Query - Python Reference](../reference/argilla/search.md) to see the attributes, arguments, and methods of the `Query` class in detail.
22
22
23
23
=== "`rg.Filter`"
24
24
@@ -29,7 +29,7 @@ You can search for records in your dataset by **querying** or **filtering**. The
29
29
]
30
30
)
31
31
```
32
-
> Check the [Filter - Python Reference](../../reference/argilla/search.md) to see the attributes, arguments, and methods of the `Filter` class in detail.
32
+
> Check the [Filter - Python Reference](../reference/argilla/search.md) to see the attributes, arguments, and methods of the `Filter` class in detail.
Copy file name to clipboardExpand all lines: argilla/docs/how_to_guides/record.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ A **record** in Argilla is a data item that requires annotation, consisting of o
33
33
],
34
34
)
35
35
```
36
-
> Check the [Record - Python Reference](../../reference/argilla/records/records.md) to see the attributes, arguments, and methods of the `Record` class in detail.
36
+
> Check the [Record - Python Reference](../reference/argilla/records/records.md) to see the attributes, arguments, and methods of the `Record` class in detail.
37
37
38
38
## Add records
39
39
@@ -222,7 +222,7 @@ You can associate vectors, like text embeddings, to your records. They can be us
222
222
223
223
You can also add vectors to a record in an initialized `Record` object.
224
224
225
-
> Check the [Vector - Python Reference](../../reference/argilla/records/vectors.md) to see the attributes, arguments, and methods of the `Vector` class in detail.
225
+
> Check the [Vector - Python Reference](../reference/argilla/records/vectors.md) to see the attributes, arguments, and methods of the `Vector` class in detail.
226
226
227
227
```python
228
228
# Add records to the dataset with the vector 'my_vector' and dimension=3
@@ -274,10 +274,10 @@ You can associate vectors, like text embeddings, to your records. They can be us
274
274
275
275
Suggestions refer to suggested responses (e.g. model predictions) that you can add to your records to make the annotation process faster. These can be added during the creation of the record or at a later stage. Only one suggestion can be provided for each question, and suggestion values must be compliant with the pre-defined questions e.g. if we have a `RatingQuestion` between 1 and 5, the suggestion should have a valid value within that range.
276
276
277
-
=== "As `Record objects"
277
+
=== "As `Record` objects"
278
278
You can also add suggestions to a record in an initialized `Record` object.
279
279
280
-
> Check the [Suggestions - Python Reference](../../reference/argilla/records/suggestions.md) to see the attributes, arguments, and methods of the `Suggestion` class in detail.
280
+
> Check the [Suggestions - Python Reference](../reference/argilla/records/suggestions.md) to see the attributes, arguments, and methods of the `Suggestion` class in detail.
281
281
282
282
```python
283
283
# Add records to the dataset with the label 'my_label'
@@ -348,7 +348,7 @@ If your dataset includes some annotations, you can add those to the records as y
348
348
=== "As `Record` objects"
349
349
You can also add suggestions to a record in an initialized `Record` object.
350
350
351
-
> Check the [Responses - Python Reference](../../reference/argilla/records/responses.md) to see the attributes, arguments, and methods of the `Suggestion` class in detail.
351
+
> Check the [Responses - Python Reference](../reference/argilla/records/responses.md) to see the attributes, arguments, and methods of the `Suggestion` class in detail.
352
352
353
353
```python
354
354
# Add records to the dataset with the label 'my_label'
0 commit comments