"vscode:/vscode.git/clone" did not exist on "2e7e4280aa6f380a4e3afad6524295a17901c56c"
Unverified Commit 074490b2 authored by Seb0's avatar Seb0 Committed by GitHub
Browse files

fix(docs): fix task guide links in model docs (#22226)

fix(docs): task guide links in model docs
parent 314cdf7c
...@@ -55,20 +55,20 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -55,20 +55,20 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
- To fine-tune [`TFData2VecVisionForImageClassification`] on a custom dataset, see [this notebook](https://colab.research.google.com/github/sayakpaul/TF-2.0-Hacks/blob/master/data2vec_vision_image_classification.ipynb). - To fine-tune [`TFData2VecVisionForImageClassification`] on a custom dataset, see [this notebook](https://colab.research.google.com/github/sayakpaul/TF-2.0-Hacks/blob/master/data2vec_vision_image_classification.ipynb).
**Data2VecText documentation resources** **Data2VecText documentation resources**
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
- [Causal language modeling task guide](./tasks/language_modeling) - [Causal language modeling task guide](../tasks/language_modeling)
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
**Data2VecAudio documentation resources** **Data2VecAudio documentation resources**
- [Audio classification task guide](./tasks/audio_classification) - [Audio classification task guide](../tasks/audio_classification)
- [Automatic speech recognition task guide](./tasks/asr) - [Automatic speech recognition task guide](../tasks/asr)
**Data2VecVision documentation resources** **Data2VecVision documentation resources**
- [Image classification](./tasks/image_classification) - [Image classification](../tasks/image_classification)
- [Semantic segmentation](./tasks/semantic_segmentation) - [Semantic segmentation](../tasks/semantic_segmentation)
If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource. If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource.
......
...@@ -60,11 +60,11 @@ contributed by [kamalkraj](https://huggingface.co/kamalkraj). The original code ...@@ -60,11 +60,11 @@ contributed by [kamalkraj](https://huggingface.co/kamalkraj). The original code
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
## DebertaV2Config ## DebertaV2Config
......
...@@ -48,7 +48,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -48,7 +48,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
- A blog post on [Supercharged Customer Service with Machine Learning](https://huggingface.co/blog/supercharge-customer-service-with-machine-learning) with DeBERTa. - A blog post on [Supercharged Customer Service with Machine Learning](https://huggingface.co/blog/supercharge-customer-service-with-machine-learning) with DeBERTa.
- [`DebertaForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification.ipynb). - [`DebertaForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification.ipynb).
- [`TFDebertaForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification-tf.ipynb). - [`TFDebertaForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification-tf.ipynb).
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
<PipelineTag pipeline="token-classification" /> <PipelineTag pipeline="token-classification" />
...@@ -56,21 +56,21 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -56,21 +56,21 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
- [`TFDebertaForTokenClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/token-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/token_classification-tf.ipynb). - [`TFDebertaForTokenClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/token-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/token_classification-tf.ipynb).
- [Token classification](https://huggingface.co/course/chapter7/2?fw=pt) chapter of the 🤗 Hugging Face Course. - [Token classification](https://huggingface.co/course/chapter7/2?fw=pt) chapter of the 🤗 Hugging Face Course.
- [Byte-Pair Encoding tokenization](https://huggingface.co/course/chapter6/5?fw=pt) chapter of the 🤗 Hugging Face Course. - [Byte-Pair Encoding tokenization](https://huggingface.co/course/chapter6/5?fw=pt) chapter of the 🤗 Hugging Face Course.
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
<PipelineTag pipeline="fill-mask"/> <PipelineTag pipeline="fill-mask"/>
- [`DebertaForMaskedLM`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/language-modeling#robertabertdistilbert-and-masked-language-modeling) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/language_modeling.ipynb). - [`DebertaForMaskedLM`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/language-modeling#robertabertdistilbert-and-masked-language-modeling) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/language_modeling.ipynb).
- [`TFDebertaForMaskedLM`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/language-modeling#run_mlmpy) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/language_modeling-tf.ipynb). - [`TFDebertaForMaskedLM`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/language-modeling#run_mlmpy) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/language_modeling-tf.ipynb).
- [Masked language modeling](https://huggingface.co/course/chapter7/3?fw=pt) chapter of the 🤗 Hugging Face Course. - [Masked language modeling](https://huggingface.co/course/chapter7/3?fw=pt) chapter of the 🤗 Hugging Face Course.
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
<PipelineTag pipeline="question-answering"/> <PipelineTag pipeline="question-answering"/>
- [`DebertaForQuestionAnswering`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/question-answering) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/question_answering.ipynb). - [`DebertaForQuestionAnswering`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/question-answering) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/question_answering.ipynb).
- [`TFDebertaForQuestionAnswering`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/question-answering) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/question_answering-tf.ipynb). - [`TFDebertaForQuestionAnswering`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/question-answering) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/question_answering-tf.ipynb).
- [Question answering](https://huggingface.co/course/chapter7/7?fw=pt) chapter of the 🤗 Hugging Face Course. - [Question answering](https://huggingface.co/course/chapter7/7?fw=pt) chapter of the 🤗 Hugging Face Course.
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
## DebertaConfig ## DebertaConfig
......
...@@ -40,7 +40,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -40,7 +40,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
<PipelineTag pipeline="object-detection"/> <PipelineTag pipeline="object-detection"/>
- Demo notebooks regarding inference + fine-tuning on a custom dataset for [`DeformableDetrForObjectDetection`] can be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/Deformable-DETR). - Demo notebooks regarding inference + fine-tuning on a custom dataset for [`DeformableDetrForObjectDetection`] can be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/Deformable-DETR).
- See also: [Object detection task guide](./tasks/object_detection). - See also: [Object detection task guide](../tasks/object_detection).
If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource. If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource.
......
...@@ -78,7 +78,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -78,7 +78,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
<PipelineTag pipeline="image-classification"/> <PipelineTag pipeline="image-classification"/>
- [`DeiTForImageClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/image-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/image_classification.ipynb). - [`DeiTForImageClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/image-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/image_classification.ipynb).
- See also: [Image classification task guide](./tasks/image_classification) - See also: [Image classification task guide](../tasks/image_classification)
Besides that: Besides that:
......
...@@ -39,7 +39,7 @@ The original code can be found [here](https://github.com/jozhang97/DETA). ...@@ -39,7 +39,7 @@ The original code can be found [here](https://github.com/jozhang97/DETA).
A list of official Hugging Face and community (indicated by 🌎) resources to help you get started with DETA. A list of official Hugging Face and community (indicated by 🌎) resources to help you get started with DETA.
- Demo notebooks for DETA can be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/DETA). - Demo notebooks for DETA can be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/DETA).
- See also: [Object detection task guide](./tasks/object_detection) - See also: [Object detection task guide](../tasks/object_detection)
If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource. If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource.
......
...@@ -157,7 +157,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -157,7 +157,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
<PipelineTag pipeline="object-detection"/> <PipelineTag pipeline="object-detection"/>
- All example notebooks illustrating fine-tuning [`DetrForObjectDetection`] and [`DetrForSegmentation`] on a custom dataset an be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/DETR). - All example notebooks illustrating fine-tuning [`DetrForObjectDetection`] and [`DetrForSegmentation`] on a custom dataset an be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/DETR).
- See also: [Object detection task guide](./tasks/object_detection) - See also: [Object detection task guide](../tasks/object_detection)
If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource. If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource.
......
...@@ -68,7 +68,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -68,7 +68,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
<PipelineTag pipeline="image-classification"/> <PipelineTag pipeline="image-classification"/>
- [`DinatForImageClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/image-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/image_classification.ipynb). - [`DinatForImageClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/image-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/image_classification.ipynb).
- See also: [Image classification task guide](./tasks/image_classification) - See also: [Image classification task guide](../tasks/image_classification)
If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource. If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we'll review it! The resource should ideally demonstrate something new instead of duplicating an existing resource.
......
...@@ -75,7 +75,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -75,7 +75,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
- [`DistilBertForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification.ipynb). - [`DistilBertForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification.ipynb).
- [`TFDistilBertForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification-tf.ipynb). - [`TFDistilBertForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification-tf.ipynb).
- [`FlaxDistilBertForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/flax/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification_flax.ipynb). - [`FlaxDistilBertForSequenceClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/flax/text-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/text_classification_flax.ipynb).
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
<PipelineTag pipeline="token-classification"/> <PipelineTag pipeline="token-classification"/>
...@@ -84,7 +84,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -84,7 +84,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
- [`TFDistilBertForTokenClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/token-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/token_classification-tf.ipynb). - [`TFDistilBertForTokenClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/token-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/token_classification-tf.ipynb).
- [`FlaxDistilBertForTokenClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/flax/token-classification). - [`FlaxDistilBertForTokenClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/flax/token-classification).
- [Token classification](https://huggingface.co/course/chapter7/2?fw=pt) chapter of the 🤗 Hugging Face Course. - [Token classification](https://huggingface.co/course/chapter7/2?fw=pt) chapter of the 🤗 Hugging Face Course.
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
<PipelineTag pipeline="fill-mask"/> <PipelineTag pipeline="fill-mask"/>
...@@ -93,7 +93,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -93,7 +93,7 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
- [`TFDistilBertForMaskedLM`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/language-modeling#run_mlmpy) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/language_modeling-tf.ipynb). - [`TFDistilBertForMaskedLM`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/language-modeling#run_mlmpy) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/language_modeling-tf.ipynb).
- [`FlaxDistilBertForMaskedLM`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/flax/language-modeling#masked-language-modeling) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/masked_language_modeling_flax.ipynb). - [`FlaxDistilBertForMaskedLM`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/flax/language-modeling#masked-language-modeling) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/masked_language_modeling_flax.ipynb).
- [Masked language modeling](https://huggingface.co/course/chapter7/3?fw=pt) chapter of the 🤗 Hugging Face Course. - [Masked language modeling](https://huggingface.co/course/chapter7/3?fw=pt) chapter of the 🤗 Hugging Face Course.
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
<PipelineTag pipeline="question-answering"/> <PipelineTag pipeline="question-answering"/>
...@@ -101,12 +101,12 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ...@@ -101,12 +101,12 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h
- [`TFDistilBertForQuestionAnswering`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/question-answering) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/question_answering-tf.ipynb). - [`TFDistilBertForQuestionAnswering`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/question-answering) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/question_answering-tf.ipynb).
- [`FlaxDistilBertForQuestionAnswering`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/flax/question-answering). - [`FlaxDistilBertForQuestionAnswering`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/flax/question-answering).
- [Question answering](https://huggingface.co/course/chapter7/7?fw=pt) chapter of the 🤗 Hugging Face Course. - [Question answering](https://huggingface.co/course/chapter7/7?fw=pt) chapter of the 🤗 Hugging Face Course.
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
**Multiple choice** **Multiple choice**
- [`DistilBertForMultipleChoice`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/multiple-choice) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/multiple_choice.ipynb). - [`DistilBertForMultipleChoice`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/multiple-choice) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/multiple_choice.ipynb).
- [`TFDistilBertForMultipleChoice`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/multiple-choice) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/multiple_choice-tf.ipynb). - [`TFDistilBertForMultipleChoice`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/multiple-choice) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/multiple_choice-tf.ipynb).
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
⚗️ Optimization ⚗️ Optimization
......
...@@ -33,6 +33,7 @@ This model was contributed by [nielsr](https://huggingface.co/nielsr). The origi ...@@ -33,6 +33,7 @@ This model was contributed by [nielsr](https://huggingface.co/nielsr). The origi
A list of official Hugging Face and community (indicated by 🌎) resources to help you get started with DPT. A list of official Hugging Face and community (indicated by 🌎) resources to help you get started with DPT.
- Demo notebooks for [`DPTForDepthEstimation`] can be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/DPT). - Demo notebooks for [`DPTForDepthEstimation`] can be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/DPT).
- [Semantic segmentation task guide](../tasks/semantic_segmentation) - [Semantic segmentation task guide](../tasks/semantic_segmentation)
- [Monocular depth estimation task guide](../tasks/monocular_depth_estimation) - [Monocular depth estimation task guide](../tasks/monocular_depth_estimation)
......
...@@ -41,7 +41,7 @@ The original code can be found [here](https://github.com/snap-research/Efficient ...@@ -41,7 +41,7 @@ The original code can be found [here](https://github.com/snap-research/Efficient
## Documentation resources ## Documentation resources
- [Image classification task guide](./tasks/image_classification) - [Image classification task guide](../tasks/image_classification)
## EfficientFormerConfig ## EfficientFormerConfig
......
...@@ -66,12 +66,12 @@ This model was contributed by [lysandre](https://huggingface.co/lysandre). The o ...@@ -66,12 +66,12 @@ This model was contributed by [lysandre](https://huggingface.co/lysandre). The o
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
- [Causal language modeling task guide](./tasks/language_modeling) - [Causal language modeling task guide](../tasks/language_modeling)
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
## ElectraConfig ## ElectraConfig
......
...@@ -49,12 +49,12 @@ and [ERNIE](https://github.com/PaddlePaddle/ERNIE/blob/repro). ...@@ -49,12 +49,12 @@ and [ERNIE](https://github.com/PaddlePaddle/ERNIE/blob/repro).
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
- [Causal language modeling task guide](./tasks/language_modeling) - [Causal language modeling task guide](../tasks/language_modeling)
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
## ErnieConfig ## ErnieConfig
......
...@@ -34,10 +34,10 @@ This model was contributed by [Susnato Dhar](https://huggingface.co/susnato). Th ...@@ -34,10 +34,10 @@ This model was contributed by [Susnato Dhar](https://huggingface.co/susnato). Th
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
## ErnieMConfig ## ErnieMConfig
......
...@@ -88,9 +88,9 @@ The `openfold` library is licensed under the Apache License 2.0. ...@@ -88,9 +88,9 @@ The `openfold` library is licensed under the Apache License 2.0.
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
## EsmConfig ## EsmConfig
......
...@@ -48,11 +48,11 @@ Tips: ...@@ -48,11 +48,11 @@ Tips:
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
## FlaubertConfig ## FlaubertConfig
......
...@@ -43,11 +43,11 @@ This model was contributed by [gchhablani](https://huggingface.co/gchhablani). T ...@@ -43,11 +43,11 @@ This model was contributed by [gchhablani](https://huggingface.co/gchhablani). T
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
## FNetConfig ## FNetConfig
......
...@@ -62,11 +62,11 @@ This model was contributed by [sgugger](https://huggingface.co/sgugger). The ori ...@@ -62,11 +62,11 @@ This model was contributed by [sgugger](https://huggingface.co/sgugger). The ori
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Question answering task guide](./tasks/question_answering) - [Question answering task guide](../tasks/question_answering)
- [Masked language modeling task guide](./tasks/masked_language_modeling) - [Masked language modeling task guide](../tasks/masked_language_modeling)
- [Multiple choice task guide](./tasks/multiple_choice) - [Multiple choice task guide](../tasks/multiple_choice)
## FunnelConfig ## FunnelConfig
......
...@@ -41,7 +41,7 @@ The original code can be found [here](https://github.com/microsoft/GenerativeIma ...@@ -41,7 +41,7 @@ The original code can be found [here](https://github.com/microsoft/GenerativeIma
A list of official Hugging Face and community (indicated by 🌎) resources to help you get started with GIT. A list of official Hugging Face and community (indicated by 🌎) resources to help you get started with GIT.
- Demo notebooks regarding inference + fine-tuning GIT on custom data can be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/GIT). - Demo notebooks regarding inference + fine-tuning GIT on custom data can be found [here](https://github.com/NielsRogge/Transformers-Tutorials/tree/master/GIT).
- See also: [Causal language modeling task guide](./tasks/language_modeling) - See also: [Causal language modeling task guide](../tasks/language_modeling)
If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we will review it. If you're interested in submitting a resource to be included here, please feel free to open a Pull Request and we will review it.
The resource should ideally demonstrate something new instead of duplicating an existing resource. The resource should ideally demonstrate something new instead of duplicating an existing resource.
......
...@@ -50,9 +50,9 @@ Träd är fina för att de är färgstarka. Men ibland är det fint ...@@ -50,9 +50,9 @@ Träd är fina för att de är färgstarka. Men ibland är det fint
## Documentation resources ## Documentation resources
- [Text classification task guide](./tasks/sequence_classification) - [Text classification task guide](../tasks/sequence_classification)
- [Token classification task guide](./tasks/token_classification) - [Token classification task guide](../tasks/token_classification)
- [Causal language modeling task guide](./tasks/language_modeling) - [Causal language modeling task guide](../tasks/language_modeling)
## GPTSw3Tokenizer ## GPTSw3Tokenizer
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment