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