tyouisen commited on
Commit
b21f0a6
1 Parent(s): ebef5b0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -0
README.md CHANGED
@@ -102,6 +102,9 @@ dataset = {k: load_dataset(r"tyouisen/aclue", k) for k in task_list}
102
  # Print an example:
103
  print(dataset['polysemy_resolution']['test'][0])
104
 
 
 
 
105
  ```
106
 
107
 
 
102
  # Print an example:
103
  print(dataset['polysemy_resolution']['test'][0])
104
 
105
+ # Or download specific dataset:
106
+ dataset = load_dataset("tyouisen/aclue", "couplet_prediction", split="test") # or split = "dev"
107
+
108
  ```
109
 
110