Reacubeth commited on
Commit
65477d0
·
1 Parent(s): d583d54

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -2,4 +2,20 @@
2
  license: gpl-3.0
3
  ---
4
 
5
- It is the official **Evolving Concept Co-occurrence Graph** dataset of *paper Exploring and Verbalizing Academic Ideas by Concept Co-occurrence*.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: gpl-3.0
3
  ---
4
 
5
+ ## Evolving Concept Co-occurrence Graph
6
+
7
+ It is the official **Evolving Concept Co-occurrence Graph** dataset of paper *Exploring and Verbalizing Academic Ideas by Concept Co-occurrence*.
8
+
9
+
10
+ To train our model for temporal link prediction, we first collect 240 essential and common queries from 19 disciplines and one special topic (COVID-19). Then, we enter these queries into the paper database to fetch the most relevant papers between 2000 and 2021 with Elasticsearch, a modern text retrieval engine that stores and retrieves papers. Afterward, we use information extraction tools including [AutoPhrase](https://github.com/shangjingbo1226/AutoPhrase) to identify concepts. Only high-quality concepts that appear in our database will be preserved. Finally, we construct 240 evolving concept co-occurrence graphs, each containing 22 snapshots according to the co-occurrence relationship. The statistics of the concept co-occurrence graphs are provided in Appendix I.
11
+
12
+ Download with git, and you should install git-lfs first
13
+
14
+ ```bash
15
+ sudo apt-get install git-lfs
16
+ # OR
17
+ brew install git-lfs
18
+
19
+ git lfs install
20
+ git clone https://huggingface.co/datasets/Reacubeth/ConceptGraph
21
+ ```