Unverified Commit 2a0f4c06 authored by moto's avatar moto Committed by GitHub
Browse files

Fix doc on FA (#3679)

parent 3ff5e8c8
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
{%- elif name == "Wav2Vec2FABundle.Aligner" %} {%- elif name == "Wav2Vec2FABundle.Aligner" %}
{%- set attributes = [] %} {%- set attributes = [] %}
{%- set methods = ["__call__"] %} {%- set methods = ["__call__"] %}
{%- set support_classes = ["Token"] %}
{%- elif name == "Tacotron2TTSBundle.TextProcessor" %} {%- elif name == "Tacotron2TTSBundle.TextProcessor" %}
{%- set attributes = ["tokens"] %} {%- set attributes = ["tokens"] %}
{%- set methods = ["__call__"] %} {%- set methods = ["__call__"] %}
......
...@@ -53,7 +53,7 @@ class IAligner(ABC): ...@@ -53,7 +53,7 @@ class IAligner(ABC):
emission (Tensor): Sequence of token probability distributions in log-domain. emission (Tensor): Sequence of token probability distributions in log-domain.
Shape: `(time, tokens)`. Shape: `(time, tokens)`.
tokens (list of integer sequence): Tokenized transcript. tokens (list of integer sequence): Tokenized transcript.
Output from :py:class:`Wav2Vec2FABundle.Tokenizer`. Output from :py:class:`torchaudio.pipelines.Wav2Vec2FABundle.Tokenizer`.
Returns: Returns:
(list of TokenSpan sequence): Tokens with time stamps and scores. (list of TokenSpan sequence): Tokens with time stamps and scores.
......
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