index.rst 3.9 KB
Newer Older
moto's avatar
moto committed
1
2
3
4
5
6
Torchaudio Documentation
========================

Torchaudio is a library for audio and signal processing with PyTorch.
It provides I/O, signal and data processing functions, datasets,
model implementations and application components.
Brian Johnson's avatar
Brian Johnson committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

Features described in this documentation are classified by release status:

  *Stable:*  These features will be maintained long-term and there should generally
  be no major performance limitations or gaps in documentation.
  We also expect to maintain backwards compatibility (although
  breaking changes can happen and notice will be given one release ahead
  of time).

  *Beta:*  Features are tagged as Beta because the API may change based on
  user feedback, because the performance needs to improve, or because
  coverage across operators is not yet complete. For Beta features, we are
  committing to seeing the feature through to the Stable classification.
  We are not, however, committing to backwards compatibility.

  *Prototype:*  These features are typically not available as part of
  binary distributions like PyPI or Conda, except sometimes behind run-time
  flags, and are at an early stage for feedback and testing.
25

moto's avatar
moto committed
26
27
28
29
.. toctree::
   :maxdepth: 1
   :hidden:
   :caption: Torchaudio Documentation
30

moto's avatar
moto committed
31
   Index <self>
32

moto's avatar
moto committed
33
34
API References
--------------
35

36
.. toctree::
37
   :maxdepth: 1
moto's avatar
moto committed
38
   :caption: API Reference
39

40
41
42
43
   torchaudio
   backend
   functional
   transforms
44
   datasets
45
   models
46
   pipelines
47
   sox_effects
jamarshon's avatar
jamarshon committed
48
   compliance.kaldi
49
   kaldi_io
moto's avatar
moto committed
50
   utils
moto's avatar
moto committed
51
52
53
54
55
56
57
58

Prototype API References
------------------------

.. toctree::
   :maxdepth: 1
   :caption: Prototype API Reference

hwangjeff's avatar
hwangjeff committed
59
   prototype
moto's avatar
moto committed
60
   prototype.io
moto's avatar
moto committed
61
   prototype.ctc_decoder
62

63
64
65
Getting Started
---------------
    
moto's avatar
moto committed
66
.. toctree::
67
68
   :maxdepth: 1
   :caption: Getting Started
moto's avatar
moto committed
69

70
71
72
73
74
75
76
77
78
   tutorials/audio_io_tutorial
   tutorials/audio_resampling_tutorial
   tutorials/audio_data_augmentation_tutorial
   tutorials/audio_feature_extractions_tutorial
   tutorials/audio_feature_augmentation_tutorial
   tutorials/audio_datasets_tutorial

Advanced Usages
---------------
79

Brian Johnson's avatar
Brian Johnson committed
80
81
.. toctree::
   :maxdepth: 1
82
   :caption: Advanced Usages
83

84
85
86
   tutorials/speech_recognition_pipeline_tutorial
   tutorials/forced_alignment_tutorial
   tutorials/tacotron2_pipeline_tutorial
moto's avatar
moto committed
87
   tutorials/mvdr_tutorial
88
   tutorials/asr_inference_with_ctc_decoder_tutorial
89
90

Citing torchaudio
91
-----------------
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107

If you find torchaudio useful, please cite the following paper:

- Yang, Y.-Y., Hira, M., Ni, Z., Chourdia, A., Astafurov, A., Chen, C., Yeh, C.-F., Puhrsch, C.,
  Pollack, D., Genzel, D., Greenberg, D., Yang, E. Z., Lian, J., Mahadeokar, J., Hwang, J.,
  Chen, J., Goldsborough, P., Roy, P., Narenthiran, S., Watanabe, S., Chintala, S.,
  Quenneville-Bélair, V, & Shi, Y. (2021).
  TorchAudio: Building Blocks for Audio and Speech Processing. arXiv preprint arXiv:2110.15018.


In BibTeX format:

.. code-block:: bibtex

    @article{yang2021torchaudio,
      title={TorchAudio: Building Blocks for Audio and Speech Processing},
108
109
110
111
112
113
114
115
      author={Yao-Yuan Yang and Moto Hira and Zhaoheng Ni and
              Anjali Chourdia and Artyom Astafurov and Caroline Chen and
              Ching-Feng Yeh and Christian Puhrsch and David Pollack and
              Dmitriy Genzel and Donny Greenberg and Edward Z. Yang and
              Jason Lian and Jay Mahadeokar and Jeff Hwang and Ji Chen and
              Peter Goldsborough and Prabhat Roy and Sean Narenthiran and
              Shinji Watanabe and Soumith Chintala and
              Vincent Quenneville-Bélair and Yangyang Shi},
116
117
118
119
      journal={arXiv preprint arXiv:2110.15018},
      year={2021}
    }

120
121
122
123
124
125
126
127
128
129
130
131
.. toctree::
   :maxdepth: 1
   :caption: PyTorch Libraries
   :hidden:

   PyTorch <https://pytorch.org/docs>
   torchaudio <https://pytorch.org/audio>
   torchtext <https://pytorch.org/text>
   torchvision <https://pytorch.org/vision>
   TorchElastic <https://pytorch.org/elastic/>
   TorchServe <https://pytorch.org/serve>
   PyTorch on XLA Devices <http://pytorch.org/xla/>