speechbrain
PyTorch
English
speech-llm
audio-llm
File size: 5,393 Bytes
87473d1
cc5944e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87473d1
cc5944e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
---

language: "en"
thumbnail:
tags:
- speech-llm
- audio-llm
- speechbrain
- pytorch
license: "apache-2.0"
datasets:
- openasqa
- iemocap
- libritts
- audioset
- audioset-strong
- audiocaps
- vgg-sound
- voxceleb2
- cmu-mosei
- clotho
- fsd50k
- fma
inference: false
---


<iframe src="https://ghbtns.com/github-btn.html?user=speechbrain&repo=speechbrain&type=star&count=true&size=large&v=2" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>
<br/><br/>

# LTU-AS is an Audio/Speech LLM trained on OpenASQA dataset.

This repository provides all the necessary tools to infer a specch llm using SpeechBrain. For more details please check the ltu-as [paper](https://arxiv.org/pdf/2309.14405).


For a better experience, we encourage you to learn more about [SpeechBrain](https://speechbrain.github.io). The model performance is evaluated on 5 different tasks:

| model | Emotion Recognition Iemocap (Acc) | ASR Librispeech test-clean (WER) | Audio Classification ESC-50 (Acc) | Age Prediction Voxceleb2-test (MAE) | Gender Classification Voxceleb2-test (F1) |
|:-----------------------------:|:----------------------------------:|:----------------------------------:|:----------------------------------:|:----------------------------------:|:----------------------------------:|
| original model in the paper | 65.2% | 4.9% | 80.8% | 7.3 | 90.8% |
| our model | 69.5% | 1.45% (with Whisper large v3) | 76.6% | 6.67 | 98.8% |


## Pipeline description

1. A whisper encoder together with a TLTR (time- and layer-wise transformer) is used as an audio encoder to encode acoustic embeddings. 
2. For speech, an external ASR system is used to get the spoken texts such as whisper-large-v3 used here.
3. The spoken text is added into a user prompt then transformed to a text embedding. It is then concatenated with the acoustic embedding from the first step and fed to a fine-tuned Llama3.

## Install SpeechBrain

First of all, please install the **development** version of SpeechBrain with the following command:

```

git clone https://github.com/speechbrain/speechbrain.git

cd speechbrain

pip install -r requirements.txt

pip install --editable .

```

Please notice that we encourage you to read our tutorials and learn more about
[SpeechBrain](https://speechbrain.github.io).

### Inference of LTU-AS 

```python

from speechbrain.inference.multimodal import LTU_AS

from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor, pipeline



ltu_as = LTU_AS.from_hparams(

    source="speechbrain/speech-llm-LTU-AS-openasqa"

)



# whisper-large-v3 as ASR model, can be changed to any customised ASR model

device = "cuda:0" if torch.cuda.is_available() else "cpu"

torch_dtype = torch.float16 if torch.cuda.is_available() else torch.float32

model_id = "openai/whisper-large-v3"

model = AutoModelForSpeechSeq2Seq.from_pretrained(

    model_id, torch_dtype=torch_dtype, low_cpu_mem_usage=True, use_safetensors=True

)

model.to(device)



processor = AutoProcessor.from_pretrained(model_id)

pipe = pipeline(

    "automatic-speech-recognition",

    model=model,

    tokenizer=processor.tokenizer,

    feature_extractor=processor.feature_extractor,

    max_new_tokens=128,

    chunk_length_s=30,

    batch_size=16,

    return_timestamps=False,

    torch_dtype=torch_dtype,

    device=device,

)



# start an inference loop:

while True:

    audio_path = input("please enter the raw audio path : ")

    instruction = input("please enter the instruction : ")

    transcript = " " + pipe(audio_path)["text"]

    predicted_words = ltu_as.generate_with_raw_audio(audio_path, instruction, transcript)[0]

    print("\n")

    print(predicted_words)

    print("\n")

```

### Inference on GPU
To perform inference on the GPU, add  `run_opts={"device":"cuda"}`  when calling the `from_hparams` method.

### Training
The training information can be found [here]()

You can find our training results (models, logs, etc) [here]().

### Limitations
The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.

# **Citing LTU-AS**
```bibtex

@inproceedings{gong_ltuas,

  title={Joint Audio and Speech Understanding},

  author={Gong, Yuan and Liu, Alexander H and Luo, Hongyin, and Karlinsky, Leonid and Glass, James},

  year={2023},

  booktitle={2023 IEEE Automatic Speech Recognition and Understanding Workshop (ASRU)},

}

```

# **Citing SpeechBrain**
Please, cite SpeechBrain if you use it for your research or business.

```bibtex

@misc{speechbrain,

  title={{SpeechBrain}: A General-Purpose Speech Toolkit},

  author={Mirco Ravanelli and Titouan Parcollet and Peter Plantinga and Aku Rouhe and Samuele Cornell and Loren Lugosch and Cem Subakan and Nauman Dawalatabad and Abdelwahab Heba and Jianyuan Zhong and Ju-Chieh Chou and Sung-Lin Yeh and Szu-Wei Fu and Chien-Feng Liao and Elena Rastorgueva and François Grondin and William Aris and Hwidong Na and Yan Gao and Renato De Mori and Yoshua Bengio},

  year={2021},

  eprint={2106.04624},

  archivePrefix={arXiv},

  primaryClass={eess.AS},

  note={arXiv:2106.04624}

}

```

# **About SpeechBrain**
- Website: https://speechbrain.github.io/
- Code: https://github.com/speechbrain/speechbrain/
- HuggingFace: https://huggingface.co/speechbrain/