Update to Transformers.js v3.4
Browse files
README.md
CHANGED
@@ -7,15 +7,15 @@ https://huggingface.co/BAAI/bge-m3 with ONNX weights to be compatible with Trans
|
|
7 |
|
8 |
## Usage (Transformers.js)
|
9 |
|
10 |
-
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/@
|
11 |
```bash
|
12 |
-
npm i @
|
13 |
```
|
14 |
|
15 |
You can then use the model to compute embeddings, as follows:
|
16 |
|
17 |
```js
|
18 |
-
import { pipeline } from '@
|
19 |
|
20 |
// Create a feature-extraction pipeline
|
21 |
const extractor = await pipeline('feature-extraction', 'Xenova/bge-m3');
|
@@ -40,7 +40,7 @@ console.log(embeddings.tolist()); // Convert embeddings to a JavaScript list
|
|
40 |
|
41 |
You can also use the model for retrieval. For example:
|
42 |
```js
|
43 |
-
import { pipeline, cos_sim } from '@
|
44 |
|
45 |
// Create a feature-extraction pipeline
|
46 |
const extractor = await pipeline('feature-extraction', 'Xenova/bge-m3');
|
|
|
7 |
|
8 |
## Usage (Transformers.js)
|
9 |
|
10 |
+
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/@huggingface/transformers) using:
|
11 |
```bash
|
12 |
+
npm i @huggingface/transformers
|
13 |
```
|
14 |
|
15 |
You can then use the model to compute embeddings, as follows:
|
16 |
|
17 |
```js
|
18 |
+
import { pipeline } from '@huggingface/transformers';
|
19 |
|
20 |
// Create a feature-extraction pipeline
|
21 |
const extractor = await pipeline('feature-extraction', 'Xenova/bge-m3');
|
|
|
40 |
|
41 |
You can also use the model for retrieval. For example:
|
42 |
```js
|
43 |
+
import { pipeline, cos_sim } from '@huggingface/transformers';
|
44 |
|
45 |
// Create a feature-extraction pipeline
|
46 |
const extractor = await pipeline('feature-extraction', 'Xenova/bge-m3');
|