martin
initial
67c46fd
raw
history blame
377 Bytes
import logging
from funasr_detach.models.transformer.model import Transformer
from funasr_detach.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)