timit-asr/timit_asr
Updated • 664 • 27
How to use arthchan2003/retrained_from_timit with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="arthchan2003/retrained_from_timit") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("arthchan2003/retrained_from_timit")
model = AutoModelForCTC.from_pretrained("arthchan2003/retrained_from_timit", device_map="auto")# Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("arthchan2003/retrained_from_timit")
model = AutoModelForCTC.from_pretrained("arthchan2003/retrained_from_timit", device_map="auto")This model is a fine-tuned version of facebook/wav2vec2-base on the timit_asr dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
Base model
facebook/wav2vec2-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="arthchan2003/retrained_from_timit")