Instructions to use futrx/fullstop-punctuation-multilang-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use futrx/fullstop-punctuation-multilang-large with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('token-classification', 'futrx/fullstop-punctuation-multilang-large');
Transformers.js - Enable external data format in Node.js
#2
by Xenova HF Staff - opened
- config.json +7 -2
config.json
CHANGED
|
@@ -40,5 +40,10 @@
|
|
| 40 |
"transformers_version": "4.33.2",
|
| 41 |
"type_vocab_size": 1,
|
| 42 |
"use_cache": true,
|
| 43 |
-
"vocab_size": 250002
|
| 44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
"transformers_version": "4.33.2",
|
| 41 |
"type_vocab_size": 1,
|
| 42 |
"use_cache": true,
|
| 43 |
+
"vocab_size": 250002,
|
| 44 |
+
"transformers.js_config": {
|
| 45 |
+
"use_external_data_format": {
|
| 46 |
+
"model.onnx": true
|
| 47 |
+
}
|
| 48 |
+
}
|
| 49 |
+
}
|