Datasets:
license: cc-by-4.0 | |
language: | |
- en | |
pretty_name: SVO-Probes | |
size_categories: | |
- 10K<n<100K | |
# SVO-Probes | |
This dataset comes from https://github.com/deepmind/svo_probes. | |
## Usage | |
```python | |
from datasets import load_dataset | |
# Note that the following line says "train" split, but there are actually no splits in this dataset. | |
dataset = load_dataset("MichiganNLP/svo_probes", split="train") | |
# To see an example, access the first element of the dataset with `dataset[0]`. | |
``` | |