File size: 777 Bytes
de933c9 6d2a6a1 be4fcf7 ca29eee de933c9 a2737d0 47d0885 de933c9 47d0885 de933c9 32cb1d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
---
license: mit
quantized_by: flyfront
base_model: litagin/anime-whisper
tags:
- not-for-all-audiences
---
作っては見ましたが、音声を入れてもうまく認識しないことが多く誤認識することも多いです(変換手順が悪いか?)
# Anime Whisper Faster
[Anime Whisper](https://huggingface.co/litagin/anime-whisper) を [Faster Whisper](https://github.com/systran/faster-whisper)で使えるように [CTranslate2](https://github.com/OpenNMT/CTranslate2/)で変換したものです
```
python -m venv venv
pip install ctranslate2 transformers[torch]>=4.23
ct2-transformers-converter --model litagin/anime-whisper --output_dir anime-whisper-faster --copy_files tokenizer_config.json preprocessor_config.json --quantization float16
``` |