Yuti commited on
Commit
e871978
·
verified ·
1 Parent(s): 5a94124

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -19
README.md CHANGED
@@ -1,21 +1,26 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: word1
5
- dtype: string
6
- - name: word2
7
- dtype: string
8
- - name: similarity
9
- dtype: float32
10
- splits:
11
- - name: train
12
- num_bytes: 23249
13
- num_examples: 999
14
- download_size: 15864
15
- dataset_size: 23249
16
- configs:
17
- - config_name: default
18
- data_files:
19
- - split: train
20
- path: data/train-*
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - feature-extraction
5
+ language:
6
+ - en
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
+ # SimLex-999 Dataset
9
+
10
+ This is the SimLex-999 dataset in Hugging Face `datasets` format.
11
+
12
+ ## Description
13
+ SimLex-999 is a gold standard resource for evaluating semantic similarity models.
14
+
15
+ ## Columns
16
+ - `word1`: First word of the pair
17
+ - `word2`: Second word of the pair
18
+ - `similarity`: Human-annotated similarity score (0-10)
19
+
20
+ ## Reference
21
+ https://fh295.github.io/simlex.html
22
+
23
+ ## Usage
24
+ ```python
25
+ from datasets import load_dataset
26
+ dataset = load_dataset("Yuti/SimLex-999")