thewhisper-large-v3-turbo
1.3K
21
license:cc-by-4.0
by
TheStageAI
Audio Model
OTHER
New
1K downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
TheStage AI Access Token Setupbash
pip install thestage
thestage config set --access-token <YOUR_ACCESS_TOKEN>ElasticModelsbash
pip install 'thestage-elastic-models[nvidia]' \
--extra-index-url https://thestage.jfrog.io/artifactory/api/pypi/pypi-thestage-ai-production/simple
pip install datasets==3.6.0 librosa soundfile # only needed to load audio for the example belowTheWhisper SpeechKitbash
# Install ffmpeg (required for audio processing)
# Ubuntu/Debian: apt install ffmpeg
# macOS: brew install ffmpeg
git clone https://github.com/TheStageAI/TheWhisper.git
cd TheWhisper
pip install .[nvidia] # or pip install .[apple] for Apple Siliconor pip install .[apple] for Apple Siliconbash
pip install thestage-elastic-models[nvidia] --extra-index-url https://thestage.jfrog.io/artifactory/api/pypi/pypi-thestage-ai-production/simpleNVIDIA Usagepython
from thestage_speechkit.nvidia import ASRPipeline
model = ASRPipeline(
model='TheStageAI/thewhisper-large-v3-turbo',
model_size='S',
chunk_length_s=15,
batch_size=32,
device='cuda'
)
result = model(
"path_to_your_audio.wav",
chunk_length_s=15,
generate_kwargs={'do_sample': False, 'num_beams': 1, 'use_cache': True}
)
print(result["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.