---
title: faster-whisper-small.en
canonical_url: "https://www.modelscope.cn/models/gpustack/faster-whisper-small.en"
md_url: "https://www.modelscope.cn/models/gpustack/faster-whisper-small.en.md"
repository: gpustack/faster-whisper-small.en
last_updated: 2024-12-12
license: mit
library_name:
  - pytorch
frameworks:
  - pytorch
language:
  - en
downloads: 63
stars: 0
tags:
  - audio
  - automatic-speech-recognition
---

# faster-whisper-small.en

> faster-whisper-small.en - gpustack 在 ModelScope 开源的模型。Whisper small.en model for CTranslate2

gpustack/faster-whisper-small.en 是 ModelScope 魔搭社区上的机器学习模型，采用 mit 许可。

- **Repository**: gpustack/faster-whisper-small.en
- **License**: mit
- **Tags**: audio, automatic-speech-recognition
- **Downloads**: 63
- **Stars**: 0
- **Last updated**: 2024-12-12

Source: https://www.modelscope.cn/models/gpustack/faster-whisper-small.en

---

# Whisper small.en model for CTranslate2

This repository contains the conversion of [openai/whisper-small.en](https://huggingface.co/openai/whisper-small.en) to the [CTranslate2](https://github.com/OpenNMT/CTranslate2) model format.

This model can be used in CTranslate2 or projects based on CTranslate2 such as [faster-whisper](https://github.com/systran/faster-whisper).

## Example

```python
from faster_whisper import WhisperModel

model = WhisperModel("small.en")

segments, info = model.transcribe("audio.mp3")
for segment in segments:
    print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
```

## Conversion details

The original model was converted with the following command:

```
ct2-transformers-converter --model openai/whisper-small.en --output_dir faster-whisper-small.en \
    --copy_files tokenizer.json --quantization float16
```

Note that the model weights are saved in FP16. This type can be changed when the model is loaded using the [`compute_type` option in CTranslate2](https://opennmt.net/CTranslate2/quantization.html).

## More information

**For more information about the original model, see its [model card](https://huggingface.co/openai/whisper-small.en).**
