README.md 1.68 KB
Newer Older
Attila Dusnoki's avatar
Attila Dusnoki committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Whisper

This version was tested with [rocm 5.7](https://github.com/ROCmSoftwarePlatform/AMDMIGraphX/tree/rocm-5.7.0) revision.

## Jupyter notebook

There is a dedicated step-by-step notebook. See [whisper.ipynb](./whisper.ipynb)

## Console application

To run the console application, follow these steps below.

Setup python environment

```bash
# this will require the python venv to installed (e.g. apt install python3.8-venv)
python3 -m venv w_venv
. w_venv/bin/activate
```

Install dependencies

`ffmpeg` needed to handle audio files.

```bash
apt install ffmpeg
```

```bash
pip install -r requirements.txt
```

Use MIGraphX Python Module

```bash
export PYTHONPATH=/opt/rocm/lib:$PYTHONPATH
```

Use the helper script to download with optimum.
The attention_mask for decoder is not exposed by default, but required to work with MIGraphX.

```bash
python download_whisper.py
```

*Note: `models/whisper-tiny.en_modified` will be used in the scripts*

There are *optional* samples which can be downloaded. But the example can be tested without them.

```bash
./download_samples.sh
```

Run the automatic-speech-recognition script with the following example input:

```bash
python asr.py --audio audio/sample1.flac --log-process
```

Or without any audio input to run the [Hugging Face dummy dataset](https://huggingface.co/datasets/hf-internal-testing/librispeech_asr_dummy) samples.


## Gradio application

Note: requires `Console application` to work

Install gradio dependencies

```bash
pip install -r gradio_requirements.txt
```

Usage

```bash
python gradio_app.py
```

This will load the models (which can take several minutes), and when the setup is ready, starts a server on `http://127.0.0.1:7860`.