Rename columns
Browse files
README.md
CHANGED
@@ -154,13 +154,13 @@ Despite originally being intended for Natural Language Inference (NLI), this dat
|
|
154 |
|
155 |
### `pair-score` subset
|
156 |
|
157 |
-
* Columns: "
|
158 |
* Column types: `str`, `str`, `float`
|
159 |
* Examples:
|
160 |
```python
|
161 |
{
|
162 |
-
'
|
163 |
-
'
|
164 |
'label': 1.0,
|
165 |
}
|
166 |
```
|
|
|
154 |
|
155 |
### `pair-score` subset
|
156 |
|
157 |
+
* Columns: "sentence1", "sentence2", "label"
|
158 |
* Column types: `str`, `str`, `float`
|
159 |
* Examples:
|
160 |
```python
|
161 |
{
|
162 |
+
'sentence1': 'A person on a horse jumps over a broken down airplane.',
|
163 |
+
'sentence2': 'A person is training his horse for a competition.',
|
164 |
'label': 1.0,
|
165 |
}
|
166 |
```
|