File size: 736 Bytes
fb8e871 18b53dd fb8e871 18b53dd fb8e871 |
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 |
# Dataset Card for "MiniNLP"
## Dataset Description
### Dataset Summary
This is a mini-nlp dataset for unitorch package.
### Data Instances
#### plain_text
An example of 'train' looks as follows.
```
{
"id": 1,
"num": 3,
"query": "Is this a test?",
"doc": "train test",
"label": "Good",
"score": 0.882
}
```
### Data Fields
The data fields are the same among all splits.
#### plain_text
- `id`: a `int32` feature.
- `num`: a `int32` feature.
- `query`: a `string` feature.
- `doc`: a `string` feature.
- `label`: a `string` feature.
- `score`: a `float32` feature.
### Data Splits Sample Size
| name |train|validation|test|
|----------|----:|---------:|---:|
|plain_text|15000| 1000 |1000|
|