How to use Isma/wav2vec2_intermediate_checkpoint_03_oct_07h with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Isma/wav2vec2_intermediate_checkpoint_03_oct_07h")
# Load model directly from transformers import AutoProcessor, AutoModel processor = AutoProcessor.from_pretrained("Isma/wav2vec2_intermediate_checkpoint_03_oct_07h") model = AutoModel.from_pretrained("Isma/wav2vec2_intermediate_checkpoint_03_oct_07h")