Token Classification
Transformers.js
ONNX
bert
feature-extraction
coreference
multilingual
onnxruntime-web
Instructions to use cp500/infon-coref-pointer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use cp500/infon-coref-pointer with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('token-classification', 'cp500/infon-coref-pointer');
Upload meta.json with huggingface_hub
Browse files
meta.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"hidden_size": 384,
|
| 3 |
+
"n_bio_classes": 3,
|
| 4 |
+
"max_length": 256,
|
| 5 |
+
"cls_token": "<s>",
|
| 6 |
+
"files": {
|
| 7 |
+
"backbone_fp32": "onnx/coref_backbone_bio.onnx",
|
| 8 |
+
"backbone_fp16": "onnx/coref_backbone_bio.fp16.onnx",
|
| 9 |
+
"scorer_fp32": "onnx/coref_mention_scorer.onnx",
|
| 10 |
+
"scorer_fp16": "onnx/coref_mention_scorer.fp16.onnx",
|
| 11 |
+
"tokenizer": "tokenizer.json"
|
| 12 |
+
}
|
| 13 |
+
}
|