From 40a0cabd93f86a7c09406159ad03a3804c2940da Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Tue, 22 Aug 2023 22:58:55 +0200 Subject: [PATCH] Update doc toctree (#25661) * fix * fix --------- Co-authored-by: ydshieh --- docs/source/en/_toctree.yml | 265 ++++++++++++++++++------------------ 1 file changed, 132 insertions(+), 133 deletions(-) diff --git a/docs/source/en/_toctree.yml b/docs/source/en/_toctree.yml index 23e0d1c46d..d054faf071 100644 --- a/docs/source/en/_toctree.yml +++ b/docs/source/en/_toctree.yml @@ -29,151 +29,150 @@ title: Generation with LLMs title: Tutorials - sections: - - sections: - - local: tasks/sequence_classification - title: Text classification - - local: tasks/token_classification - title: Token classification - - local: tasks/question_answering - title: Question answering - - local: tasks/language_modeling - title: Causal language modeling - - local: tasks/masked_language_modeling - title: Masked language modeling - - local: tasks/translation - title: Translation - - local: tasks/summarization - title: Summarization - - local: tasks/multiple_choice - title: Multiple choice + - isExpanded: false + sections: + - local: tasks/sequence_classification + title: Text classification + - local: tasks/token_classification + title: Token classification + - local: tasks/question_answering + title: Question answering + - local: tasks/language_modeling + title: Causal language modeling + - local: tasks/masked_language_modeling + title: Masked language modeling + - local: tasks/translation + title: Translation + - local: tasks/summarization + title: Summarization + - local: tasks/multiple_choice + title: Multiple choice title: Natural Language Processing - isExpanded: false - - sections: - - local: tasks/audio_classification - title: Audio classification - - local: tasks/asr - title: Automatic speech recognition + - isExpanded: false + sections: + - local: tasks/audio_classification + title: Audio classification + - local: tasks/asr + title: Automatic speech recognition title: Audio - isExpanded: false - - sections: - - local: tasks/image_classification - title: Image classification - - local: tasks/semantic_segmentation - title: Semantic segmentation - - local: tasks/video_classification - title: Video classification - - local: tasks/object_detection - title: Object detection - - local: tasks/zero_shot_object_detection - title: Zero-shot object detection - - local: tasks/zero_shot_image_classification - title: Zero-shot image classification - - local: tasks/monocular_depth_estimation - title: Depth estimation + - isExpanded: false + sections: + - local: tasks/image_classification + title: Image classification + - local: tasks/semantic_segmentation + title: Semantic segmentation + - local: tasks/video_classification + title: Video classification + - local: tasks/object_detection + title: Object detection + - local: tasks/zero_shot_object_detection + title: Zero-shot object detection + - local: tasks/zero_shot_image_classification + title: Zero-shot image classification + - local: tasks/monocular_depth_estimation + title: Depth estimation title: Computer Vision - isExpanded: false - - sections: - - local: tasks/image_captioning - title: Image captioning - - local: tasks/document_question_answering - title: Document Question Answering - - local: tasks/visual_question_answering - title: Visual Question Answering - - local: tasks/text-to-speech - title: Text to speech + - isExpanded: false + sections: + - local: tasks/image_captioning + title: Image captioning + - local: tasks/document_question_answering + title: Document Question Answering + - local: tasks/visual_question_answering + title: Visual Question Answering + - local: tasks/text-to-speech + title: Text to speech title: Multimodal - isExpanded: false - - sections: - - local: generation_strategies - title: Customize the generation strategy + - isExpanded: false + sections: + - local: generation_strategies + title: Customize the generation strategy title: Generation - isExpanded: false title: Task Guides - sections: - - local: fast_tokenizers - title: Use fast tokenizers from 🤗 Tokenizers - - local: multilingual - title: Run inference with multilingual models - - local: create_a_model - title: Use model-specific APIs - - local: custom_models - title: Share a custom model - - local: sagemaker - title: Run training on Amazon SageMaker - - local: serialization - title: Export to ONNX - - local: tflite - title: Export to TFLite - - local: torchscript - title: Export to TorchScript - - local: benchmarks - title: Benchmarks - - local: notebooks - title: Notebooks with examples - - local: community - title: Community resources - - local: custom_tools - title: Custom Tools and Prompts - - local: troubleshooting - title: Troubleshoot + - local: fast_tokenizers + title: Use fast tokenizers from 🤗 Tokenizers + - local: multilingual + title: Run inference with multilingual models + - local: create_a_model + title: Use model-specific APIs + - local: custom_models + title: Share a custom model + - local: sagemaker + title: Run training on Amazon SageMaker + - local: serialization + title: Export to ONNX + - local: tflite + title: Export to TFLite + - local: torchscript + title: Export to TorchScript + - local: benchmarks + title: Benchmarks + - local: notebooks + title: Notebooks with examples + - local: community + title: Community resources + - local: custom_tools + title: Custom Tools and Prompts + - local: troubleshooting + title: Troubleshoot title: Developer guides - sections: - - local: performance - title: Overview - - sections: - - local: perf_train_gpu_one - title: Methods and tools for efficient training on a single GPU - - local: perf_train_gpu_many - title: Multiple GPUs and parallelism - - local: perf_train_cpu - title: Efficient training on CPU - - local: perf_train_cpu_many - title: Distributed CPU training - - local: perf_train_tpu - title: Training on TPUs - - local: perf_train_tpu_tf - title: Training on TPU with TensorFlow - - local: perf_train_special - title: Training on Specialized Hardware - - local: perf_hardware - title: Custom hardware for training - - local: hpo_train - title: Hyperparameter Search using Trainer API - title: Efficient training techniques - - sections: - - local: perf_infer_cpu - title: Inference on CPU - - local: perf_infer_gpu_one - title: Inference on one GPU - - local: perf_infer_gpu_many - title: Inference on many GPUs - - local: perf_infer_special - title: Inference on Specialized Hardware - title: Optimizing inference - - local: big_models - title: Instantiating a big model - - local: debugging - title: Troubleshooting - - local: tf_xla - title: XLA Integration for TensorFlow Models - - local: perf_torch_compile - title: Optimize inference using `torch.compile()` + - local: performance + title: Overview + - sections: + - local: perf_train_gpu_one + title: Methods and tools for efficient training on a single GPU + - local: perf_train_gpu_many + title: Multiple GPUs and parallelism + - local: perf_train_cpu + title: Efficient training on CPU + - local: perf_train_cpu_many + title: Distributed CPU training + - local: perf_train_tpu + title: Training on TPUs + - local: perf_train_tpu_tf + title: Training on TPU with TensorFlow + - local: perf_train_special + title: Training on Specialized Hardware + - local: perf_hardware + title: Custom hardware for training + - local: hpo_train + title: Hyperparameter Search using Trainer API + title: Efficient training techniques + - sections: + - local: perf_infer_cpu + title: Inference on CPU + - local: perf_infer_gpu_one + title: Inference on one GPU + - local: perf_infer_gpu_many + title: Inference on many GPUs + - local: perf_infer_special + title: Inference on Specialized Hardware + title: Optimizing inference + - local: big_models + title: Instantiating a big model + - local: debugging + title: Troubleshooting + - local: tf_xla + title: XLA Integration for TensorFlow Models + - local: perf_torch_compile + title: Optimize inference using `torch.compile()` title: Performance and scalability - sections: - - local: contributing - title: How to contribute to transformers? - - local: add_new_model - title: How to add a model to 🤗 Transformers? - - local: add_tensorflow_model - title: How to convert a 🤗 Transformers model to TensorFlow? - - local: add_new_pipeline - title: How to add a pipeline to 🤗 Transformers? - - local: testing - title: Testing - - local: pr_checks - title: Checks on a Pull Request + - local: contributing + title: How to contribute to transformers? + - local: add_new_model + title: How to add a model to 🤗 Transformers? + - local: add_tensorflow_model + title: How to convert a 🤗 Transformers model to TensorFlow? + - local: add_new_pipeline + title: How to add a pipeline to 🤗 Transformers? + - local: testing + title: Testing + - local: pr_checks + title: Checks on a Pull Request title: Contribute - - sections: - local: philosophy title: Philosophy