FunASR/funasr/models/e_branchformer/model.py

18 lines
363 B
Python
Raw Normal View History

2024-05-18 15:50:56 +08:00
import logging
from funasr.models.transformer.model import Transformer
from funasr.register import tables
@tables.register("model_classes", "EBranchformer")
class EBranchformer(Transformer):
"""CTC-attention hybrid Encoder-Decoder model"""
def __init__(
self,
*args,
**kwargs,
):
super().__init__(*args, **kwargs)