xhluca commited on
Commit
61fe2d1
1 Parent(s): ab9029e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -60,12 +60,12 @@ To get started, simply install `datasets` with `pip install datasets` and load t
60
  from datasets import load_dataset
61
 
62
  # Load the training, validation and test (IID) splits
63
- train = load_dataset("McGill-NLP/weblinx", "train")
64
- valid = load_dataset("McGill-NLP/weblinx", "validation")
65
- test = load_dataset("McGill-NLP/weblinx", "test")
66
 
67
  # Load one of the 4 out-of-domain splits (test_web, test_vis, test_geo, test_cat)
68
- test_web = load_dataset("McGill-NLP/weblinx", "test_web")
69
  ```
70
 
71
  ## Raw Data
 
60
  from datasets import load_dataset
61
 
62
  # Load the training, validation and test (IID) splits
63
+ train = load_dataset("McGill-NLP/weblinx", split="train")
64
+ valid = load_dataset("McGill-NLP/weblinx", split="validation")
65
+ test = load_dataset("McGill-NLP/weblinx", split="test")
66
 
67
  # Load one of the 4 out-of-domain splits (test_web, test_vis, test_geo, test_cat)
68
+ test_web = load_dataset("McGill-NLP/weblinx", split="test_web")
69
  ```
70
 
71
  ## Raw Data