Update README.md
Browse files
README.md
CHANGED
@@ -4,4 +4,27 @@ library_name: transformers.js
|
|
4 |
|
5 |
https://huggingface.co/hf-audio/wav2vec2-bert-CV16-en with ONNX weights to be compatible with Transformers.js.
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
Note: Having a separate repo for ONNX weights is intended to be a temporary solution until WebML gains more traction. If you would like to make your models web-ready, we recommend converting to ONNX using [🤗 Optimum](https://huggingface.co/docs/optimum/index) and structuring your repo like this one (with ONNX weights located in a subfolder named `onnx`).
|
|
|
4 |
|
5 |
https://huggingface.co/hf-audio/wav2vec2-bert-CV16-en with ONNX weights to be compatible with Transformers.js.
|
6 |
|
7 |
+
## Usage (Transformers.js)
|
8 |
+
|
9 |
+
If you haven't already, you can install the [Transformers.js](https://huggingface.co/docs/transformers.js) JavaScript library from [NPM](https://www.npmjs.com/package/@xenova/transformers) using:
|
10 |
+
```bash
|
11 |
+
npm i @xenova/transformers
|
12 |
+
```
|
13 |
+
|
14 |
+
You can then use the model for speech recognition with:
|
15 |
+
|
16 |
+
```js
|
17 |
+
import { pipeline } from '@xenova/transformers';
|
18 |
+
|
19 |
+
// Create an Automatic Speech Recognition pipeline
|
20 |
+
const transcriber = await pipeline('automatic-speech-recognition', 'Xenova/wav2vec2-bert-CV16-en');
|
21 |
+
|
22 |
+
// Transcribe audio
|
23 |
+
const url = 'https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/jfk.wav';
|
24 |
+
const output = await transcriber(url);
|
25 |
+
// { text: 'and so my fellow americans ask not what your country can do for you ask what you can do for your country' }
|
26 |
+
```
|
27 |
+
|
28 |
+
---
|
29 |
+
|
30 |
Note: Having a separate repo for ONNX weights is intended to be a temporary solution until WebML gains more traction. If you would like to make your models web-ready, we recommend converting to ONNX using [🤗 Optimum](https://huggingface.co/docs/optimum/index) and structuring your repo like this one (with ONNX weights located in a subfolder named `onnx`).
|