Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mddct committed Feb 7, 2025
1 parent 0625895 commit e644da8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion wenet/firered/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from wenet.utils.common import IGNORE_ID


class FirereadModel(ASRModel):
class FireReadModel(ASRModel):

def __init__(
self,
Expand Down
4 changes: 2 additions & 2 deletions wenet/utils/init_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from wenet.finetune.lora.utils import (inject_lora_to_model,
mark_only_lora_as_trainable)
from wenet.firered.encoder import FireRedConformerEncoder
from wenet.firered.model import FirereadModel
from wenet.firered.model import FireReadModel
from wenet.k2.model import K2Model
from wenet.paraformer.cif import Cif
from wenet.paraformer.layers import SanmDecoder, SanmEncoder
Expand Down Expand Up @@ -83,7 +83,7 @@
"asr_model": ASRModel,
"ctl_model": CTLModel,
"whisper": Whisper,
"firered": FirereadModel,
"firered": FireReadModel,
"k2_model": K2Model,
"transducer": Transducer,
'paraformer': Paraformer,
Expand Down

0 comments on commit e644da8

Please sign in to comment.