GECToR -- Grammatical Error Correction: Tag, Not Rewrite
Paper
•
2005.12592
•
Published
ONNX quantized version of the original GECToR model from Grammarly for browser-based grammatical error correction with Transformers.js.
GECToR uses a token classification approach - instead of generating corrected text, it predicts edit operations for each token:
$KEEP - Keep token unchanged$DELETE - Remove token$REPLACE_word - Replace with specific word$APPEND_word - Append word after token$TRANSFORM_* - Apply transformation (case, verb form, etc.)The model runs iteratively (typically 2-3 passes) until no more edits are predicted.
import { pipeline } from '@huggingface/transformers';
const classifier = await pipeline(
'token-classification',
'YOUR_USERNAME/gector-base-2020',
{ dtype: 'q8' }
);
const result = await classifier('He go to school yesterday.');
// Returns token predictions with edit tags
Faster than the 2024 version with slightly lower accuracy. Good balance of speed and quality.
Apache 2.0 (following original model license)