japanese-asr/ja_asr.jsut_basic5000
Viewer • Updated • 5k • 705 • 11
How to use AkitoP/whisper-large-v3-japense-phone_accent with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="AkitoP/whisper-large-v3-japense-phone_accent") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("AkitoP/whisper-large-v3-japense-phone_accent")
model = AutoModelForSpeechSeq2Seq.from_pretrained("AkitoP/whisper-large-v3-japense-phone_accent", device_map="auto")This is a Whisper model designed to transcribe Japanese speech into Katakana with pitch accent annotations. The model is built upon the whisper-large-v3-turbo and has been fine-tuned using a subset (1/20) of the Galgame-Speech dataset, as well as the jsut-5000 dataset.
We are currently seeking Japanese pitch accent annotated datasets. If you have such data, please reach out!
Base model
openai/whisper-large-v3