Skip to content

Commit 016c091

Browse files
Remove dead links in docs
1 parent c38354e commit 016c091

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

docs/pipelines.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -162,16 +162,16 @@ and for the translation task:
162162

163163
#### Computer Vision
164164

165-
| Task | ID | Description | Supported? |
166-
|-------------------------------------------------------------------|------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------|
167-
| [Depth Estimation](/depth-estimation) | `depth-estimation` | Predicting the depth of objects present in an image. ||
168-
| [Image Classification](/image-classification) | `image-classification` | Assigning a label or class to an entire image. ||
169-
| [Zero-Shot Image Classification](/zero-shot-image-classification) | `zero-shot-image` | Classifying images into classes that are unseen during training. ||
170-
| [Image Segmentation](/image-segmentation) | `image-segmentation` | Divides an image into segments where each pixel is mapped to an object. This task has multiple variants such as instance segmentation, panoptic segmentation and semantic segmentation. ||
171-
| [Image-to-Image](/image-to-image) | `image-to-image` | Transforming a source image to match the characteristics of a target image or a target image domain. ||
172-
| [Mask Generation](/mask-generation) | `mask-generation` | Generate masks for the objects in an image. ||
173-
| [Object Detection](/object-detection) | `object-detection` | Identify objects of certain defined classes within an image. ||
174-
| [Zero-Shot Object Detection](/zero-shot-object-detection) | `zero-shot-object` | Detecting objects in images that are unseen during training. ||
165+
| Task | ID | Description | Supported? |
166+
|-----------------------------------------------------------------------|------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------|
167+
| [Depth Estimation](https://huggingface.co/tasks/depth-estimation) | `depth-estimation` | Predicting the depth of objects present in an image. ||
168+
| [Image Classification](/image-classification) | `image-classification` | Assigning a label or class to an entire image. ||
169+
| [Zero-Shot Image Classification](/zero-shot-image-classification) | `zero-shot-image` | Classifying images into classes that are unseen during training. ||
170+
| [Image Segmentation](https://huggingface.co/tasks/image-segmentation) | `image-segmentation` | Divides an image into segments where each pixel is mapped to an object. This task has multiple variants such as instance segmentation, panoptic segmentation and semantic segmentation. ||
171+
| [Image-to-Image](/image-to-image) | `image-to-image` | Transforming a source image to match the characteristics of a target image or a target image domain. ||
172+
| [Mask Generation](https://huggingface.co/tasks/mask-generation) | `mask-generation` | Generate masks for the objects in an image. ||
173+
| [Object Detection](/object-detection) | `object-detection` | Identify objects of certain defined classes within an image. ||
174+
| [Zero-Shot Object Detection](/zero-shot-object-detection) | `zero-shot-object` | Detecting objects in images that are unseen during training. ||
175175

176176
#### Multimodal
177177

docs/text-to-text-generation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ When running the `text2text-generation` pipeline, you can the following options:
5555
- ### `streamer` *(Streamer)*
5656
[Optional] This is an instance of the `Streamer` class and is used to stream the output of the pipeline. It's useful
5757
when you want to process the output in real-time or when the output is too large to fit into memory. Visit the
58-
[Streamers](/docs/utils/generation.md#streamers) documentation for more information on how to use streamers.
58+
[Streamers](/utils/generation#streamers) documentation for more information on how to use streamers.
5959

6060
```php
6161
use Codewithkyrian\Transformers\Generation\Streamers\StdOutStreamer;
@@ -92,7 +92,7 @@ When running the `text2text-generation` pipeline, you can the following options:
9292
arguments used to either control the length of the output, or the generation strategy used, or the manipulation process
9393
for the output logits, or the nature of the output, or the special tokens to be used. They are only valid for pipelines
9494
that use the `generate`, For a complete list of all possible arguments, refer to
95-
the [generation documentation](/docs/utils/generation.md).
95+
the [generation documentation](/utils/generation).
9696

9797
```php
9898
$output = $generator(

0 commit comments

Comments
 (0)