TingChen-ppmc/Tianjin_Dialect_Conversational_Speech_Corpus
Viewer • Updated • 5.17k • 60
How to use TingChen-ppmc/whisper-small-Tianjin with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="TingChen-ppmc/whisper-small-Tianjin") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("TingChen-ppmc/whisper-small-Tianjin")
model = AutoModelForSpeechSeq2Seq.from_pretrained("TingChen-ppmc/whisper-small-Tianjin", device_map="auto")This is a finetuned version of Whisper-small on Tianjin_Dialect_Conversational_Speech_Corpus
CER: 46.17
WER: 67.65
Chinese Word Error Rate (WER) is based on Jieba Word segmentation
Base model
openai/whisper-small