Spaces:
Running
Running
license: apache-2.0 | |
title: See ASR outputs | |
sdk: docker | |
emoji: π | |
colorFrom: green | |
colorTo: gray | |
short_description: 'See generated JSONL files made by ASR models as a dataframe' | |
## Install | |
```shell | |
uv venv --python 3.13.2 | |
source .venv/bin/activate | |
uv pip install -r requirements.txt | |
# in development mode | |
uv pip install -r requirements-dev.txt | |
``` | |
## Development | |
Run app: | |
```shell | |
gradio app.py | |
``` | |
## Production | |
### Build image | |
```shell | |
docker build -t see-asr-outputs . | |
``` | |
### Run | |
```shell | |
docker run -it --rm -p 8888:7860 see-asr-outputs | |
``` | |