Views
No views yet
| Metric | Value |
|---|---|
| Base Model | CohereLabs/cohere-transcribe-03-2026 |
| Quantization | NVFP4 W4A16 (weight-only) |
| Weight Format | NVIDIA FP4 (E2M1, block_size=16) |
| Activation Format | BF16 (unchanged) |
| Calibration | None (dynamic scales from weights) |
| Tool | NVIDIA ModelOpt v0.44.0 |
| Original Size | 3.9 GB (BF16) |
| Quantized Size | 1.5 GB (NVFP4) |
| Compression | ~2.6x |
1vllm serve jeffpeng3/cohere-transcribe-03-2026-NVFP4 \
2 --quantization modelopt \
3 --dtype bfloat161import torch
2from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
3
4model_id = "jeffpeng3/cohere-transcribe-03-2026-NVFP4"
5
6processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
7model = AutoModelForSpeechSeq2Seq.from_pretrained(
8 model_id,
9 torch_dtype=torch.bfloat16,
10 device_map="auto",
11 trust_remote_code=True,
12)
13
14# Transcribe an audio file
15from transformers.audio_utils import load_audio
16
17audio = load_audio("path/to/audio.wav", sampling_rate=16000)
18inputs = processor(audio, sampling_rate=16000, return_tensors="pt", language="en").to(model.device)
19inputs = inputs.to(dtype=model.dtype)
20
21outputs = model.generate(**inputs, max_new_tokens=256)
22text = processor.decode(outputs[0], skip_special_tokens=True)
23print(text)cohere-transcribe-03-2026-NVFP4/
├── config.json # Model config + quantization metadata
├── hf_quant_config.json # ModelOpt quantization config
├── model.safetensors # NVFP4 quantized weights (1.5 GB)
├── modeling_cohere_asr.py # Custom model code
├── processing_cohere_asr.py # Custom processor code
├── tokenizer.json / .model # SentencePiece tokenizer
└── preprocessor_config.json # Feature extractor config1vllm serve jeffpeng3/cohere-transcribe-03-2026-NVFP4 \
2 --quantization modelopt \
3 --dtype bfloat16 \
4 --max-model-len 1024