Token Classification
Transformers.js
ONNX
English
bert
slot-filling
ner
quantized
Eval Results (legacy)
Instructions to use jottypro/notes-slots with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use jottypro/notes-slots with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('token-classification', 'jottypro/notes-slots');
File size: 2,456 Bytes
d78d445 | 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 | {
"labels": [
"O",
"B-PARTICIPANT",
"I-PARTICIPANT",
"B-PRIORITY",
"I-PRIORITY",
"B-DATETIME",
"I-DATETIME",
"B-RECURRENCE",
"I-RECURRENCE"
],
"log_transitions": [
[
-0.21329336044444958,
-2.395360318337538,
-37.78172024711259,
-5.113746528770403,
-37.78172024711259,
-2.4165778278557335,
-37.78172024711259,
-5.167092509475696,
-37.78172024711259
],
[
-1.9565559334666265,
-7.683403681052827,
-1.293163013988475,
-1.5653064830124768,
-35.31442479698237,
-1.4200054184622015,
-35.31442479698237,
-2.016976992941391,
-35.31442479698237
],
[
-0.7998719529095837,
-4.688285092698433,
-1.770514360614312,
-2.2173646848853252,
-34.1110656778552,
-1.9261676703261035,
-34.1110656778552,
-2.1493112216403105,
-34.1110656778552
],
[
-2.5018849863224055,
-6.792344427469811,
-34.423365543399356,
-6.792344427469811,
-0.4122218905710442,
-2.249049645200796,
-34.423365543399356,
-1.9095425048844321,
-34.423365543399356
],
[
-2.1546649629174146,
-6.799055862057797,
-34.43007697798734,
-6.799055862057797,
-0.8432184925939632,
-1.6229061294849618,
-34.43007697798734,
-1.3697102331043514,
-34.43007697798734
],
[
-1.7336909992051686,
-7.0015491582681655,
-35.73118256286516,
-6.490723534502308,
-35.73118256286516,
-4.544813385447166,
-0.21370417595891933,
-5.902936869600278,
-35.73118256286516
],
[
-1.570300746704473,
-8.211482916444066,
-35.84250403237361,
-3.8676774945913692,
-35.84250403237361,
-4.260239197863619,
-0.3115875933053358,
-3.71167324611479,
-35.84250403237361
],
[
-2.4161263407420552,
-6.846943139584381,
-34.477964255513925,
-5.460648778465241,
-34.477964255513925,
-2.5984478975360075,
-34.477964255513925,
-6.846943139584381,
-0.18636798974569402
],
[
-2.919795707464039,
-7.301822342136933,
-34.93284345806648,
-4.257299904414462,
-34.93284345806648,
-1.1684242991412823,
-34.93284345806648,
-7.301822342136933,
-0.4785362197822449
]
]
}
|