18 lines
363 B
Python
18 lines
363 B
Python
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)
|