facebook / wav2vec2-conformer-rope-large-960h-ft

huggingface.co
Total runs: 194.4K
24-hour runs: 0
7-day runs: -3.1K
30-day runs: 23.4K
Model's Last Updated: March 21 2023
automatic-speech-recognition

Introduction of wav2vec2-conformer-rope-large-960h-ft

Model Details of wav2vec2-conformer-rope-large-960h-ft

Wav2Vec2-Conformer-Large-960h with Rotary Position Embeddings

Wav2Vec2 Conformer with rotary position embeddings, pretrained and fine-tuned on 960 hours of Librispeech on 16kHz sampled speech audio. When using the model make sure that your speech input is also sampled at 16Khz.

Paper : fairseq S2T: Fast Speech-to-Text Modeling with fairseq

Authors : Changhan Wang, Yun Tang, Xutai Ma, Anne Wu, Sravya Popuri, Dmytro Okhonko, Juan Pino

The results of Wav2Vec2-Conformer can be found in Table 3 and Table 4 of the official paper .

The original model can be found under https://github.com/pytorch/fairseq/tree/master/examples/wav2vec#wav2vec-20 .

Usage

To transcribe audio files the model can be used as a standalone acoustic model as follows:

 from transformers import Wav2Vec2Processor, Wav2Vec2ConformerForCTC
 from datasets import load_dataset
 import torch
 
 # load model and processor
 processor = Wav2Vec2Processor.from_pretrained("facebook/wav2vec2-conformer-rope-large-960h-ft")
 model = Wav2Vec2ConformerForCTC.from_pretrained("facebook/wav2vec2-conformer-rope-large-960h-ft")
     
 # load dummy dataset and read soundfiles
 ds = load_dataset("patrickvonplaten/librispeech_asr_dummy", "clean", split="validation")
 
 # tokenize
 input_values = processor(ds[0]["audio"]["array"], return_tensors="pt", padding="longest").input_values
 
 # retrieve logits
 logits = model(input_values).logits
 
 # take argmax and decode
 predicted_ids = torch.argmax(logits, dim=-1)
 transcription = processor.batch_decode(predicted_ids)
Evaluation

This code snippet shows how to evaluate facebook/wav2vec2-conformer-rope-large-960h-ft on LibriSpeech's "clean" and "other" test data.

from datasets import load_dataset
from transformers import Wav2Vec2ConformerForCTC, Wav2Vec2Processor
import torch
from jiwer import wer


librispeech_eval = load_dataset("librispeech_asr", "clean", split="test")

model = Wav2Vec2ConformerForCTC.from_pretrained("facebook/wav2vec2-conformer-rope-large-960h-ft").to("cuda")
processor = Wav2Vec2Processor.from_pretrained("facebook/wav2vec2-conformer-rope-large-960h-ft")

def map_to_pred(batch):
    inputs = processor(batch["audio"]["array"], return_tensors="pt", padding="longest")
    input_values = inputs.input_values.to("cuda")
    attention_mask = inputs.attention_mask.to("cuda")
    
    with torch.no_grad():
        logits = model(input_values, attention_mask=attention_mask).logits

    predicted_ids = torch.argmax(logits, dim=-1)
    transcription = processor.batch_decode(predicted_ids)
    batch["transcription"] = transcription
    return batch

result = librispeech_eval.map(map_to_pred, remove_columns=["audio"])

print("WER:", wer(result["text"], result["transcription"]))

Result (WER) :

"clean" "other"
1.96 3.98

Runs of facebook wav2vec2-conformer-rope-large-960h-ft on huggingface.co

194.4K
Total runs
0
24-hour runs
-2.0K
3-day runs
-3.1K
7-day runs
23.4K
30-day runs

More Information About wav2vec2-conformer-rope-large-960h-ft huggingface.co Model

More wav2vec2-conformer-rope-large-960h-ft license Visit here:

https://choosealicense.com/licenses/apache-2.0

wav2vec2-conformer-rope-large-960h-ft huggingface.co

wav2vec2-conformer-rope-large-960h-ft huggingface.co is an AI model on huggingface.co that provides wav2vec2-conformer-rope-large-960h-ft's model effect (), which can be used instantly with this facebook wav2vec2-conformer-rope-large-960h-ft model. huggingface.co supports a free trial of the wav2vec2-conformer-rope-large-960h-ft model, and also provides paid use of the wav2vec2-conformer-rope-large-960h-ft. Support call wav2vec2-conformer-rope-large-960h-ft model through api, including Node.js, Python, http.

wav2vec2-conformer-rope-large-960h-ft huggingface.co Url

https://huggingface.co/facebook/wav2vec2-conformer-rope-large-960h-ft

facebook wav2vec2-conformer-rope-large-960h-ft online free

wav2vec2-conformer-rope-large-960h-ft huggingface.co is an online trial and call api platform, which integrates wav2vec2-conformer-rope-large-960h-ft's modeling effects, including api services, and provides a free online trial of wav2vec2-conformer-rope-large-960h-ft, you can try wav2vec2-conformer-rope-large-960h-ft online for free by clicking the link below.

facebook wav2vec2-conformer-rope-large-960h-ft online free url in huggingface.co:

https://huggingface.co/facebook/wav2vec2-conformer-rope-large-960h-ft

wav2vec2-conformer-rope-large-960h-ft install

wav2vec2-conformer-rope-large-960h-ft is an open source model from GitHub that offers a free installation service, and any user can find wav2vec2-conformer-rope-large-960h-ft on GitHub to install. At the same time, huggingface.co provides the effect of wav2vec2-conformer-rope-large-960h-ft install, users can directly use wav2vec2-conformer-rope-large-960h-ft installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

wav2vec2-conformer-rope-large-960h-ft install url in huggingface.co:

https://huggingface.co/facebook/wav2vec2-conformer-rope-large-960h-ft

Url of wav2vec2-conformer-rope-large-960h-ft

wav2vec2-conformer-rope-large-960h-ft huggingface.co Url

Provider of wav2vec2-conformer-rope-large-960h-ft huggingface.co

facebook
ORGANIZATIONS

Other API from facebook

huggingface.co

Total runs: 8.1M
Run Growth: -9.2M
Growth Rate: -111.13%
Updated:September 15 2023
huggingface.co

Total runs: 8.0M
Run Growth: 217.5K
Growth Rate: 2.71%
Updated:January 20 2022
huggingface.co

Total runs: 3.8M
Run Growth: -405.1K
Growth Rate: -10.13%
Updated:September 06 2023
huggingface.co

Total runs: 3.2M
Run Growth: 942.3K
Growth Rate: 29.09%
Updated:January 17 2024
huggingface.co

Total runs: 2.7M
Run Growth: -506.9K
Growth Rate: -18.19%
Updated:December 28 2021
huggingface.co

Total runs: 2.2M
Run Growth: 728.0K
Growth Rate: 31.65%
Updated:January 25 2024
huggingface.co

Total runs: 2.2M
Run Growth: 94.9K
Growth Rate: 4.55%
Updated:March 23 2023
huggingface.co

Total runs: 1.9M
Run Growth: -374.9K
Growth Rate: -20.08%
Updated:November 21 2025
huggingface.co

Total runs: 721.7K
Run Growth: -252.3K
Growth Rate: -36.21%
Updated:September 06 2023
huggingface.co

Total runs: 481.1K
Run Growth: -125.6K
Growth Rate: -25.98%
Updated:May 22 2023
huggingface.co

Total runs: 442.2K
Run Growth: 78.7K
Growth Rate: 17.83%
Updated:February 29 2024
huggingface.co

Total runs: 429.4K
Run Growth: -69.0K
Growth Rate: -16.06%
Updated:March 17 2025
huggingface.co

Total runs: 388.9K
Run Growth: -153.5K
Growth Rate: -36.87%
Updated:January 12 2024
huggingface.co

Total runs: 343.6K
Run Growth: -52.4K
Growth Rate: -14.64%
Updated:January 12 2024
huggingface.co

Total runs: 311.5K
Run Growth: 38.3K
Growth Rate: 12.20%
Updated:September 15 2023
huggingface.co

Total runs: 305.9K
Run Growth: -49.4K
Growth Rate: -16.00%
Updated:September 06 2023
huggingface.co

Total runs: 292.0K
Run Growth: 27.1K
Growth Rate: 8.78%
Updated:November 17 2022
huggingface.co

Total runs: 289.4K
Run Growth: 70.9K
Growth Rate: 24.97%
Updated:June 15 2023
huggingface.co

Total runs: 262.6K
Run Growth: 141.8K
Growth Rate: 53.84%
Updated:May 22 2023
huggingface.co

Total runs: 236.9K
Run Growth: 14.3K
Growth Rate: 6.02%
Updated:July 23 2024
huggingface.co

Total runs: 216.3K
Run Growth: -152.2K
Growth Rate: -69.64%
Updated:July 25 2023
huggingface.co

Total runs: 188.7K
Run Growth: 99.7K
Growth Rate: 52.41%
Updated:February 12 2023
huggingface.co

Total runs: 176.3K
Run Growth: 73.0K
Growth Rate: 41.37%
Updated:September 06 2023
huggingface.co

Total runs: 171.7K
Run Growth: -227.7K
Growth Rate: -131.11%
Updated:November 17 2023
huggingface.co

Total runs: 163.0K
Run Growth: 2.8K
Growth Rate: 1.69%
Updated:September 01 2023
huggingface.co

Total runs: 148.2K
Run Growth: 122.6K
Growth Rate: 82.19%
Updated:November 16 2023
huggingface.co

Total runs: 123.4K
Run Growth: 3.5K
Growth Rate: 2.82%
Updated:June 03 2022
huggingface.co

Total runs: 109.6K
Run Growth: -5.5K
Growth Rate: -4.91%
Updated:September 15 2023
huggingface.co

Total runs: 109.5K
Run Growth: 25.8K
Growth Rate: 23.30%
Updated:November 20 2023
huggingface.co

Total runs: 109.2K
Run Growth: 25.2K
Growth Rate: 22.90%
Updated:January 25 2023
huggingface.co

Total runs: 97.6K
Run Growth: -228.3K
Growth Rate: -236.40%
Updated:June 13 2023
huggingface.co

Total runs: 85.3K
Run Growth: 60.3K
Growth Rate: 71.50%
Updated:February 12 2023
huggingface.co

Total runs: 60.5K
Run Growth: -19.2K
Growth Rate: -31.67%
Updated:March 28 2026
huggingface.co

Total runs: 58.7K
Run Growth: 15.8K
Growth Rate: 26.69%
Updated:January 25 2023
huggingface.co

Total runs: 54.1K
Run Growth: -15.8K
Growth Rate: -29.17%
Updated:January 29 2026