svo_probes / README.md
bryant1410's picture
Add example code in the README
d8116eb
|
raw
history blame contribute delete
No virus
481 Bytes
---
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]`.
```