bryant1410 commited on
Commit
d8116eb
1 Parent(s): f1166e6

Add example code in the README

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -3,6 +3,21 @@ license: cc-by-4.0
3
  language:
4
  - en
5
  pretty_name: SVO-Probes
 
 
6
  ---
7
 
8
- This dataset comes from https://github.com/deepmind/svo_probes
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  language:
4
  - en
5
  pretty_name: SVO-Probes
6
+ size_categories:
7
+ - 10K<n<100K
8
  ---
9
 
10
+ # SVO-Probes
11
+
12
+ This dataset comes from https://github.com/deepmind/svo_probes.
13
+
14
+ ## Usage
15
+
16
+ ```python
17
+ from datasets import load_dataset
18
+
19
+ # Note that the following line says "train" split, but there are actually no splits in this dataset.
20
+ dataset = load_dataset("MichiganNLP/svo_probes", split="train")
21
+
22
+ # To see an example, access the first element of the dataset with `dataset[0]`.
23
+ ```