Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coqui-ai/stt-model-manager
Coqui STT Model Manager - install, manage and try out Coqui STT models from the Model Zoo
https://github.com/coqui-ai/stt-model-manager
coqui-ai flask python react speech-recognition stt websocket
Last synced: about 1 month ago
JSON representation
Coqui STT Model Manager - install, manage and try out Coqui STT models from the Model Zoo
- Host: GitHub
- URL: https://github.com/coqui-ai/stt-model-manager
- Owner: coqui-ai
- License: mpl-2.0
- Created: 2021-05-24T10:18:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-24T11:12:31.000Z (almost 2 years ago)
- Last Synced: 2024-11-08T13:17:45.238Z (about 2 months ago)
- Topics: coqui-ai, flask, python, react, speech-recognition, stt, websocket
- Language: JavaScript
- Homepage: https://coqui.ai
- Size: 8.53 MB
- Stars: 24
- Watchers: 9
- Forks: 18
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Coqui STT Model manager
> **Note**
>
> **This project is no longer actively maintained**, and we have stopped hosting the online Model Zoo. We've seen focus shift towards newer STT models such as [Whisper](https://github.com/openai/whisper), and have ourselves focused on [Coqui TTS](https://github.com/coqui-ai/TTS) and [Coqui Studio](https://coqui.ai/).
>
> The models will remain available in [the releases of the coqui-ai/STT-models repo](https://github.com/coqui-ai/STT-models/releases).πΈSTT Model Manager is a tool for installing and trying out Coqui STT models from the [Coqui Model Zoo](https://coqui.ai/models/).
# Usage
Dependencies:
- Python >= 3.7 (On Raspberry Pi, only Python 3.7 is supported)
```bash
$ pip install coqui_stt_model_manager
$ stt-model-manager
```On Raspberry Pi:
```bash
$ pip install https://github.com/coqui-ai/STT/releases/download/v1.3.0/stt-1.3.0-cp37-cp37m-linux_armv7l.whl
$ pip install coqui_stt_model_manager
$ stt-model-manager
```![](./images/cover-2.png)
# Build and install from source
Build dependencies:
- Node.JS
- Yarn
- Python >=3.7
- Up-to-date pip/setuptools/wheel packages```bash
$ # Create and activate virtualenv:
$ python -m venv /tmp/venv
$ /tmp/venv/bin/activate
$ # Update Python packaging tools:
$ python -m pip install -U pip setuptools wheel
$ # Install package
$ make install
```# Development installation (editable, with pre-commit hooks)
See [`CONTRIBUTING`](./CONTRIBUTING.md).
# Running in development mode (watching file changes and rebuilding automatically)
The following command will watch the React-based front-end files for changes and rebuild automatically:
```bash
$ yarn watch
```Then, in a separate terminal window run the following to start the Python server in debug mode:
```bash
$ # Create and activate virtualenv:
$ python -m venv /tmp/venv
$ /tmp/venv/bin/activate
$ # Start server in debug mode with automatic server reloads:
$ stt-model-manager --debug
```For now you have to reload the browser manually. We'd gladly welcome a PR adding auto-refresh functionality :)
# Build Python package (sdist/wheel)
```bash
$ make package
$ ll dist/
$ pip install dist/*.whl
```