whisper-large-v3-aft-one-kcn
32
license:cc-by-nc-4.0
by
vitthalbhandari
Audio Model
OTHER
New
32 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Usagepythontransformers
from transformers import WhisperForConditionalGeneration, WhisperProcessor
import torch
processor = WhisperProcessor.from_pretrained("vitthalbhandari/whisper-large-v3-aft-one-kcn")
model = WhisperForConditionalGeneration.from_pretrained("vitthalbhandari/whisper-large-v3-aft-one-kcn")
inputs = processor(audio_array, sampling_rate=16000, return_tensors="pt")
with torch.no_grad():
generated_ids = model.generate(**inputs)
transcription = processor.batch_decode(generated_ids, skip_special_tokens=True)Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.