File size: 1,349 Bytes
f9b61ee 1df417b | 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 | ---
dataset_info:
features:
- name: text
dtype: string
- name: spans
list:
- name: end
dtype: int64
- name: label
dtype: string
- name: start
dtype: int64
- name: meta
struct:
- name: file_id
dtype: string
- name: sentence_id
dtype: int64
splits:
- name: train
num_bytes: 12633387
num_examples: 61603
- name: eval
num_bytes: 1582593
num_examples: 7700
- name: test
num_bytes: 1586745
num_examples: 7701
- name: overlapping
num_bytes: 2465230
num_examples: 8427
download_size: 7023581
dataset_size: 18267955
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: eval
path: data/eval-*
- split: test
path: data/test-*
- split: overlapping
path: data/overlapping-*
---
# SpaCy Grammar Error Detection Dataset - Binary Labels
This repository contains the SpaCy-formatted dataset for grammar error detection with binary labels.
## Files:
- `train.json`: Training data
- `eval.json`: Evaluation data
- `test.json`: Test data
- `overlapping.json`: Sentences with overlapping error spans
## Format:
Each file contains a JSON array of examples in SpaCy format, with text and span annotations.
## Usage:
These files can be used directly with SpaCy's span categorization training.
|