Skip to content

Commit c4c1fa1

Browse files
author
Josselin BUILS
committed
docs: fix dead links
1 parent e8186a6 commit c4c1fa1

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

docs/sdk/tutorials/export_a_kili_project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ You can export your project data from the Kili UI (see [documentation](https://d
240240

241241
The [`.export_labels`](https://python-sdk-docs.kili-technology.com/latest/sdk/label/#kili.entrypoints.queries.label.__init__.QueriesLabel.export_labels) method enables the export of a full project. It does the following preprocessing:
242242

243-
* Only fetches the labels of types `"DEFAULT"` and `"REVIEW"` (see the [label types explanations](https://docs.kili-technology.com/docs/asset-lifecycle#label-types-and-definitions-throughout-an-asset-lifecycle)).
243+
* Only fetches the labels of types `"DEFAULT"` and `"REVIEW"` (see the [label types explanations](https://docs.kili-technology.com/reference/label-types)).
244244
* If specified, selects a subset of asset ids.
245245
* Exports labels to one of the standard formats (only available for a restricted set of ML tasks).
246246
* Using various method arguments, you can decide:

docs/sdk/tutorials/finetuning_dinov2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ The pre-annotations will be helpful for the labelers to label the assets, since
695695

696696
The inference labels will be used to evaluate the quality of the model against labelers.
697697

698-
You can learn more about the different kinds of labels in the [Kili documentation](https://docs.kili-technology.com/docs/asset-lifecycle).
698+
You can learn more about the different kinds of labels in the [Kili documentation](https://docs.kili-technology.com/reference/label-types).
699699

700700

701701
```python

docs/sdk/tutorials/importing_pascalvoc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ from kili.client import Kili
3232

3333
## Download Pascal VOC format
3434

35-
The images and annotations for the full dataset can be found [here](http://host.robots.ox.ac.uk/pascal/VOC/).
35+
The images and annotations come from the Oxford's PASCAL Visual Object Classes Challenge.
3636

3737
For this tutorial we will use a subset from the validation set from 2012.
3838

docs/sdk/tutorials/set_up_workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Now, let's place some assets in the review queue. The method will return a proje
222222
kili.add_to_review(project_id=project_id, external_ids=["4.jpg"])
223223
```
224224

225-
For more information on asset statuses, refer to our [documentation](https://docs.kili-technology.com/docs/asset-lifecycle).
225+
For more information on asset statuses, refer to our [documentation](https://docs.kili-technology.com/docs/multi-steps-review#asset-steps-and-statuses).
226226

227227
### Sending an asset back to the labeling queue
228228

@@ -240,7 +240,7 @@ kili.send_back_to_queue(project_id=project_id, external_ids=["4.jpg"])
240240

241241

242242

243-
For more information on asset statuses, refer to our [documentation](https://docs.kili-technology.com/docs/asset-lifecycle).
243+
For more information on asset statuses, refer to our [documentation](https://docs.kili-technology.com/docs/multi-steps-review#asset-steps-and-statuses).
244244

245245
## Cleanup
246246

recipes/export_a_kili_project.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@
655655
"\n",
656656
"The [`.export_labels`](https://python-sdk-docs.kili-technology.com/latest/sdk/label/#kili.entrypoints.queries.label.__init__.QueriesLabel.export_labels) method enables the export of a full project. It does the following preprocessing:\n",
657657
"\n",
658-
"* Only fetches the labels of types `\"DEFAULT\"` and `\"REVIEW\"` (see the [label types explanations](https://docs.kili-technology.com/docs/asset-lifecycle#label-types-and-definitions-throughout-an-asset-lifecycle)).\n",
658+
"* Only fetches the labels of types `\"DEFAULT\"` and `\"REVIEW\"` (see the [label types explanations](https://docs.kili-technology.com/reference/label-types)).\n",
659659
"* If specified, selects a subset of asset ids.\n",
660660
"* Exports labels to one of the standard formats (only available for a restricted set of ML tasks).\n",
661661
"* Using various method arguments, you can decide:\n",

recipes/finetuning_dinov2.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@
12241224
"\n",
12251225
"The inference labels will be used to evaluate the quality of the model against labelers.\n",
12261226
"\n",
1227-
"You can learn more about the different kinds of labels in the [Kili documentation](https://docs.kili-technology.com/docs/asset-lifecycle)."
1227+
"You can learn more about the different kinds of labels in the [Kili documentation](https://docs.kili-technology.com/reference/label-types)."
12281228
]
12291229
},
12301230
{

recipes/finetuning_openai.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@
462462
"metadata": {},
463463
"source": [
464464
"Now we'll upload the model-generated labels to the assets that we upload to Kili earlier on.\n",
465-
"For more information on Kili's INFERENCE-type labels, see https://docs.kili-technology.com/docs/asset-lifecycle#inference."
465+
"For more information on Kili's INFERENCE-type labels, see https://docs.kili-technology.com/reference/label-types#inference."
466466
]
467467
},
468468
{

recipes/importing_pascalvoc.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"source": [
6565
"## Download Pascal VOC format\n",
6666
"\n",
67-
"The images and annotations for the full dataset can be found [here](http://host.robots.ox.ac.uk/pascal/VOC/).\n",
67+
"The images and annotations come from the Oxford's PASCAL Visual Object Classes Challenge.\n",
6868
"\n",
6969
"For this tutorial we will use a subset from the validation set from 2012.\n"
7070
]

recipes/set_up_workflows.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@
536536
"cell_type": "markdown",
537537
"metadata": {},
538538
"source": [
539-
"For more information on asset statuses, refer to our [documentation](https://docs.kili-technology.com/docs/asset-lifecycle)."
539+
"For more information on asset statuses, refer to our [documentation](https://docs.kili-technology.com/docs/multi-steps-review#asset-steps-and-statuses)."
540540
]
541541
},
542542
{
@@ -580,7 +580,7 @@
580580
"cell_type": "markdown",
581581
"metadata": {},
582582
"source": [
583-
"For more information on asset statuses, refer to our [documentation](https://docs.kili-technology.com/docs/asset-lifecycle)."
583+
"For more information on asset statuses, refer to our [documentation](https://docs.kili-technology.com/docs/multi-steps-review#asset-steps-and-statuses)."
584584
]
585585
},
586586
{

0 commit comments

Comments
 (0)