Skip to content

Commit f15013a

Browse files
committed
fix markdown
1 parent d201599 commit f15013a

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

src/pipelines.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ export class Pipeline extends Callable {
270270
* ```
271271
*
272272
* ### Quickstart models
273-
* See ../good-first-models#text-classification
273+
* See [Quickstart models](../good-first-models#text-classification)
274274
*/
275275
export class TextClassificationPipeline extends (/** @type {new (options: TextPipelineConstructorArgs) => TextClassificationPipelineType} */ (Pipeline)) {
276276

@@ -384,7 +384,7 @@ export class TextClassificationPipeline extends (/** @type {new (options: TextPi
384384
* ```
385385
*
386386
* ### Quickstart models
387-
* See ../good-first-models#token-classification
387+
* See [Quickstart models](../good-first-models#token-classification)
388388
*/
389389
export class TokenClassificationPipeline extends (/** @type {new (options: TextPipelineConstructorArgs) => TokenClassificationPipelineType} */ (Pipeline)) {
390390

@@ -494,7 +494,7 @@ export class TokenClassificationPipeline extends (/** @type {new (options: TextP
494494
* ```
495495
*
496496
* ### Quickstart models
497-
* See ../good-first-models#question-answering
497+
* See [Quickstart models](../good-first-models#question-answering)
498498
*/
499499
export class QuestionAnsweringPipeline extends (/** @type {new (options: TextPipelineConstructorArgs) => QuestionAnsweringPipelineType} */ (Pipeline)) {
500500

@@ -647,7 +647,7 @@ export class QuestionAnsweringPipeline extends (/** @type {new (options: TextPip
647647
* ```
648648
*
649649
* ### Quickstart models
650-
* See ../good-first-models#fill-mask
650+
* See [Quickstart models](../good-first-models#fill-mask)
651651
*/
652652
export class FillMaskPipeline extends (/** @type {new (options: TextPipelineConstructorArgs) => FillMaskPipelineType} */ (Pipeline)) {
653653

@@ -835,7 +835,7 @@ export class Text2TextGenerationPipeline extends (/** @type {new (options: TextP
835835
* ```
836836
*
837837
* ### Quickstart models
838-
* See ../good-first-models#summarization
838+
* See [Quickstart models](../good-first-models#summarization)
839839
*/
840840
export class SummarizationPipeline extends (/** @type {new (options: TextPipelineConstructorArgs) => SummarizationPipelineType} */ (/** @type {any} */ (Text2TextGenerationPipeline))) {
841841
/** @type {'summary_text'} */
@@ -910,7 +910,7 @@ export class SummarizationPipeline extends (/** @type {new (options: TextPipelin
910910
* ```
911911
*
912912
* ### Quickstart models
913-
* See ../good-first-models#translation
913+
* See [Quickstart models](../good-first-models#translation)
914914
*/
915915
export class TranslationPipeline extends (/** @type {new (options: TextPipelineConstructorArgs) => TranslationPipelineType} */ (/** @type {any} */ (Text2TextGenerationPipeline))) {
916916
/** @type {'translation_text'} */
@@ -1000,7 +1000,7 @@ function isChat(x) {
10001000
* ```
10011001
*
10021002
* ### Quickstart models
1003-
* See ../good-first-models#text-generation
1003+
* See [Quickstart models](../good-first-models#text-generation)
10041004
*/
10051005
export class TextGenerationPipeline extends (/** @type {new (options: TextPipelineConstructorArgs) => TextGenerationPipelineType} */ (Pipeline)) {
10061006

@@ -1314,7 +1314,7 @@ export class ZeroShotClassificationPipeline extends (/** @type {new (options: Te
13141314
* ```
13151315
*
13161316
* ### Quickstart models
1317-
* See ../good-first-models#feature-extraction
1317+
* See [Quickstart models](../good-first-models#feature-extraction)
13181318
*/
13191319
export class FeatureExtractionPipeline extends (/** @type {new (options: TextPipelineConstructorArgs) => FeatureExtractionPipelineType} */ (Pipeline)) {
13201320
/**
@@ -1425,7 +1425,7 @@ export class FeatureExtractionPipeline extends (/** @type {new (options: TextPip
14251425
* ```
14261426
*
14271427
* ### Quickstart models
1428-
* See ../good-first-models#image-feature-extraction
1428+
* See [Quickstart models](../good-first-models#image-feature-extraction)
14291429
*/
14301430
export class ImageFeatureExtractionPipeline extends (/** @type {new (options: ImagePipelineConstructorArgs) => ImageFeatureExtractionPipelineType} */ (Pipeline)) {
14311431
/**
@@ -1516,7 +1516,7 @@ export class ImageFeatureExtractionPipeline extends (/** @type {new (options: Im
15161516
* ```
15171517
*
15181518
* ### Quickstart models
1519-
* See ../good-first-models#audio-classification
1519+
* See [Quickstart models](../good-first-models#audio-classification)
15201520
*/
15211521
export class AudioClassificationPipeline extends (/** @type {new (options: AudioPipelineConstructorArgs) => AudioClassificationPipelineType} */ (Pipeline)) {
15221522

@@ -1760,7 +1760,7 @@ export class ZeroShotAudioClassificationPipeline extends (/** @type {new (option
17601760
* ```
17611761
*
17621762
* ### Quickstart models
1763-
* See ../good-first-models#automatic-speech-recognition
1763+
* See [Quickstart models](../good-first-models#automatic-speech-recognition)
17641764
*/
17651765
export class AutomaticSpeechRecognitionPipeline extends (/** @type {new (options: TextAudioPipelineConstructorArgs) => AutomaticSpeechRecognitionPipelineType} */ (Pipeline)) {
17661766

@@ -2095,7 +2095,7 @@ export class ImageToTextPipeline extends (/** @type {new (options: TextImagePipe
20952095
* ```
20962096
*
20972097
* ### Quickstart models
2098-
* See ../good-first-models#image-classification
2098+
* See [Quickstart models](../good-first-models#image-classification)
20992099
*/
21002100
export class ImageClassificationPipeline extends (/** @type {new (options: ImagePipelineConstructorArgs) => ImageClassificationPipelineType} */ (Pipeline)) {
21012101

@@ -2183,7 +2183,7 @@ export class ImageClassificationPipeline extends (/** @type {new (options: Image
21832183
* ```
21842184
*
21852185
* ### Quickstart models
2186-
* See ../good-first-models#image-segmentation
2186+
* See [Quickstart models](../good-first-models#image-segmentation)
21872187
*/
21882188
export class ImageSegmentationPipeline extends (/** @type {new (options: ImagePipelineConstructorArgs) => ImageSegmentationPipelineType} */ (Pipeline)) {
21892189
/**
@@ -2525,7 +2525,7 @@ export class ZeroShotImageClassificationPipeline extends (/** @type {new (option
25252525
* ```
25262526
*
25272527
* ### Quickstart models
2528-
* See ../good-first-models#object-detection
2528+
* See [Quickstart models](../good-first-models#object-detection)
25292529
*/
25302530
export class ObjectDetectionPipeline extends (/** @type {new (options: ImagePipelineConstructorArgs) => ObjectDetectionPipelineType} */ (Pipeline)) {
25312531

@@ -2994,7 +2994,7 @@ export class TextToAudioPipeline extends (/** @type {new (options: TextToAudioPi
29942994
* ```
29952995
*
29962996
* ### Quickstart models
2997-
* See ../good-first-models#image-to-image
2997+
* See [Quickstart models](../good-first-models#image-to-image)
29982998
*/
29992999
export class ImageToImagePipeline extends (/** @type {new (options: ImagePipelineConstructorArgs) => ImageToImagePipelineType} */ (Pipeline)) {
30003000
/**
@@ -3060,7 +3060,7 @@ export class ImageToImagePipeline extends (/** @type {new (options: ImagePipelin
30603060
* ```
30613061
*
30623062
* ### Quickstart models
3063-
* See ../good-first-models#depth-estimation
3063+
* See [Quickstart models](../good-first-models#depth-estimation)
30643064
*/
30653065
export class DepthEstimationPipeline extends (/** @type {new (options: ImagePipelineConstructorArgs) => DepthEstimationPipelineType} */ (Pipeline)) {
30663066
/**

0 commit comments

Comments
 (0)