Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.63 KB

README.md

File metadata and controls

38 lines (26 loc) · 1.63 KB

Insanely-Fast-Whisper | Worker

CI | Test Handler   CD | Build-Test-Release

🚀 | Runpod worker for Insanely-Fast-Whisper.

Build an Image:

docker build -t <your_dockerhub_directory>/image_name:tag

Ensure that you have Docker installed and properly set up before running the docker build commands. Once built, you can deploy this serverless worker in your desired environment with confidence that it will automatically scale based on demand.

Test Inputs

The following inputs can be used for testing the model:

{
  "input": {
    "audio": "https://github.com/runpod-workers/sample-inputs/raw/main/audio/gettysburg.wav",
    "batch_size": 24, (Number of parallel batches you want to compute. Reduce if you face OOMs. (default: 24))
    "chunk_length": 30,
    "task": "transcribe", (Task to perform: transcribe or translate to another language. (default: transcribe))
    "language": None, (Language of the input audio. (default: "None" (Whisper auto-detects the language)))
  }
}

Acknowledgments