jaagli commited on
Commit
ab55421
·
verified ·
1 Parent(s): b0c2f85

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -2
README.md CHANGED
@@ -18,7 +18,66 @@ dataset_info:
18
  num_examples: 79059
19
  download_size: 54972667
20
  dataset_size: 83865723
 
 
 
 
 
 
 
21
  ---
22
- # Dataset Card for "common_words_79k"
23
 
24
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  num_examples: 79059
19
  download_size: 54972667
20
  dataset_size: 83865723
21
+ task_categories:
22
+ - feature-extraction
23
+ language:
24
+ - en
25
+ pretty_name: common-words-79k
26
+ size_categories:
27
+ - 1K<n<10K
28
  ---
 
29
 
30
+ # Dataset Description
31
+
32
+ "Common Words 79K" (common-words-79k) contains 79,059 words and phrases, along with some sentences from Wikipedia that include these words and phrases.
33
+ It is derived from the following resources:
34
+
35
+ - We select classes from ImageNet-21K based on two criteria: (1) each class contains over 100 available images, and (2) the class names appear at least five times in Wikipedia.
36
+ - We then include words that met the second criterion from an [English wordlist](https://www.npmjs.com/package/wordlist-english).
37
+ - We collect word frequency data from the English Wikipedia for all the words and phrases above.
38
+
39
+
40
+ # Data Instances
41
+
42
+
43
+ Example of data instance from the dataset:
44
+
45
+ ```
46
+ {'alias': 'newborn_infant',
47
+ 'frequency': 157,
48
+ 'sentences': [
49
+ 'It is also recited as a prayer for protection of a newborn infant.',
50
+ 'The newborn infant was named Sawai Madhavrao.',
51
+ 'Jocasta handed the newborn infant over to Laius.',
52
+ "Spider-Man manages to save them and rescue Lily's newborn infant from the supervillains.",
53
+ 'After her newborn infant died, Alison Langdon mutilated herself while deeply depressed.',
54
+ ...,
55
+ 'The newborn infant was named \'Sawai\' Madhavrao ("Sawai" means "One and a Quarter").'
56
+ ]
57
+ }
58
+
59
+ ```
60
+
61
+
62
+ # How to Use
63
+
64
+ ```python
65
+ from datasets import load_dataset
66
+
67
+ # Load the dataset
68
+ common_words = load_dataset("jaagli/common-words-79k", split="whole")
69
+ ```
70
+
71
+ # Citation
72
+
73
+ ```
74
+ @misc{li2024visionlanguagemodelsshare,
75
+ title={Do Vision and Language Models Share Concepts? A Vector Space Alignment Study},
76
+ author={Jiaang Li and Yova Kementchedjhieva and Constanza Fierro and Anders Søgaard},
77
+ year={2024},
78
+ eprint={2302.06555},
79
+ archivePrefix={arXiv},
80
+ primaryClass={cs.CL},
81
+ url={https://arxiv.org/abs/2302.06555},
82
+ }
83
+ ```