ylshen commited on
Commit
60ea381
·
verified ·
1 Parent(s): d522df7

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FactNet Synset Relations Dataset
2
+
3
+ ## Overview
4
+
5
+ The Synset Relations dataset contains rich semantic relationships between FactSynsets, enabling advanced reasoning and cross-lingual fact retrieval. These relations capture hypernymy, causality, temporality, geographic relationships, and other semantic connections between facts.
6
+
7
+ ## Dataset Format
8
+
9
+ The dataset contains parquet files with the following key fields:
10
+
11
+ - `relation_id`: Unique identifier for the relation
12
+ - `source_synset_id`: Source FactSynset ID
13
+ - `target_synset_id`: Target FactSynset ID
14
+ - `relation_type`: Type of relation (hypernym, causal, temporal, geographic, etc.)
15
+ - `confidence`: Confidence score for the relation
16
+ - `evidence_statement_ids`: FactStatements supporting this relation
17
+ - `detection_method`: Method used to detect the relation
18
+ - `metadata`: Additional relation-specific metadata
19
+
20
+ ## Relation Types
21
+
22
+ The dataset includes various relation types:
23
+ - `equivalent`: Semantically equivalent facts
24
+ - `hypernym`: Hierarchical relationships
25
+ - `causal`: Cause-effect relationships
26
+ - `geographic_location`/`geographic_contains`: Spatial relationships
27
+ - `part_of`/`has_part`: Part-whole relationships
28
+ - `member_of`: Membership relationships
29
+ - `follows`/`followed_by`: Temporal sequence
30
+ - `influenced_by`/`influences`: Influence relationships
31
+ - And many others including `created_by`, `used_for`, `opposite_of`, etc.
32
+
33
+ ## Usage
34
+
35
+ Synset Relations enable advanced applications like:
36
+ - Multi-hop reasoning across facts
37
+ - Causal and temporal inference
38
+ - Geographic and spatial reasoning
39
+ - Semantic similarity computation
40
+ - Hierarchical knowledge navigation
41
+
42
+ ## License
43
+
44
+ This dataset is derived from Wikidata and Wikipedia and is available under the CC BY-SA license.
45
+
46
+ ## Citation
47
+
48
+ ```
49
+ @article{shen2026factnet,
50
+ title={FactNet: A Billion-Scale Knowledge Graph for Multilingual Factual Grounding},
51
+ author={Shen, Yingli and Lai, Wen and Zhou, Jie and Zhang, Xueren and Wang, Yudong and Luo, Kangyang and Wang, Shuo and Gao, Ge and Fraser, Alexander and Sun, Maosong},
52
+ journal={arXiv preprint arXiv:2602.03417},
53
+ year={2026}
54
+ }
55
+ ```