MCPcopy Create free account
hub / github.com/modelscope/FunASR / __init__

Method __init__

funasr/models/llm_asr/model.py:950–962  ·  view source on GitHub ↗

Initialize LLMASR3. Args: *args: Variable positional arguments. **kwargs: Additional keyword arguments.

(
        self,
        *args,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

948 """ """
949
950 def __init__(
951 self,
952 *args,
953 **kwargs,
954 ):
955
956 """Initialize LLMASR3.
957
958 Args:
959 *args: Variable positional arguments.
960 **kwargs: Additional keyword arguments.
961 """
962 super().__init__(*args, **kwargs)
963
964 def encode(self, speech, speech_lengths):
965 # audio encoder

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected