whisper-medium-ccaas
30
2
license:apache-2.0
by
startelelogic
Audio Model
OTHER
New
30 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Inference Usagepythontransformers
from transformers import WhisperProcessor, WhisperForConditionalGeneration
import torch
model_name = "startelelogic/whisper-medium-ccaas"
processor = WhisperProcessor.from_pretrained(model_name)
model = WhisperForConditionalGeneration.from_pretrained(model_name).to("cuda")
inputs = processor("audio.wav", return_tensors="pt", sampling_rate=16000)
with torch.no_grad():
generated_ids = model.generate(inputs.input_features.to("cuda"))
text = processor.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(text)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.