appledora commited on
Commit
5565347
·
1 Parent(s): 604094d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license:
3
+ - cc-by-4.0
4
+ language:
5
+ - en
6
+ ---
7
+
8
+ ## Dataset Description
9
+ > This is a subset of the [conceptnet5 dataset](https://huggingface.co/datasets/conceptnet5).
10
+ ```
11
+ ConceptNet is a multilingual knowledge base, representing words and
12
+ phrases that people use and the common-sense relationships between
13
+ them. The knowledge in ConceptNet is collected from a variety of
14
+ resources, including crowd-sourced resources (such as Wiktionary and
15
+ Open Mind Common Sense), games with a purpose (such as Verbosity and
16
+ nadya.jp), and expert-created resources (such as WordNet and JMDict).
17
+
18
+ You can browse what ConceptNet knows at http://conceptnet.io.
19
+ ```
20
+
21
+ In this subset, I have extracted the relations `(37)` explicitly within the English language.
22
+ You can check out the [sample dataset](sample_dataset.csv) to get an idea about these relations, as well as visit the official [conceptnet wiki](https://github.com/commonsense/conceptnet5/wiki) for a comprehensive understanding.
23
+
24
+ There are `3409965` relationships in this dataset. I have parsed the [original assertions dataset](https://s3.amazonaws.com/conceptnet/downloads/2019/edges/conceptnet-assertions-5.7.0.csv.gz)
25
+ to nine columns.
26
+ ```
27
+ - 'uri' : The complete conceptnet uri for the relationship. e.g., /a/[/r/Antonym/,/c/en/able/,/c/en/cane/]
28
+ - 'rel' : The type of binary relationship. e.g: r/Antonym
29
+ - 'start' : the first argument URI in the binary relationship. e.g., /c/en/able
30
+ - 'end' : the second argument URI in the binary relationship. e.g., /c/en/cane
31
+ - 'meta' : a string that includes json data that has the dataset name, license type (mostly cc-4.0), contributor, etc. e.g., : {"dataset": "/d/verbosity", "license": "cc:by/4.0", "sources": [{"contributor": "/s/resource/verbosity"}], "surfaceEnd": "cane", "surfaceStart": "able", "surfaceText": "[[able]] is the opposite of [[cane]]", "weight": 0.299}
32
+ - 'dataset' : dataset info parsed from the `meta` column. e.g: /d/verbosity
33
+ - 'source' : contains contributor information, curation process etc. parsed from the `meta` column. e.g: [{'contributor': '/s/resource/wiktionary/en', 'process': '/s/process/wikiparsec/2'}]
34
+ - 'concept1' : first parsed concept. e.g: able
35
+ - 'concept2' : second parsed concept e.g: cain
36
+ ```