Views
No views yet
gotutiyan/gector-roberta-base-5k,
packaged for Silent Voice, a local-first
dictation app for Windows. It runs the model on CPU through ONNX Runtime to underline
grammar mistakes as you type.gotutiyan/gector-roberta-base-5k states:Only non-commercial purposes.
| File | Size | Notes |
|---|---|---|
gector-int8.onnx | ~122 MB | Dynamic INT8 (QUInt8) weights. Default. |
gector.onnx + gector.onnx.data | ~488 MB | FP32. External-data format — both files required, kept side by side. |
| File | Size | Notes |
|---|---|---|
tokenizer.json | ~3.4 MB | RoBERTa BPE tokenizer |
labels.txt | ~85 KB | 5001 edit tags, index-aligned to the label head |
verb-form-vocab.txt | ~4.2 MB | verb inflection table for $TRANSFORM_VERB_* tags |
inputs input_ids [batch, sequence] int64
attention_mask [batch, sequence] int64
outputs label_logits [batch, sequence, 5001]
detect_logits [batch, sequence, 2]labels.txt is ordered to match the label_logits axis, index 0 being <OOV> and index 1
$KEEP. Detection classes are $CORRECT (0) and $INCORRECT (1).gector-work/export_gector.py in the Silent Voice repo: torch.onnx.export
for the FP32 graph, then onnxruntime.quantization.quantize_dynamic(weight_type=QUInt8)
for the INT8 build.