Hengzongshu commited on
Commit
b69771f
·
verified ·
1 Parent(s): b22c9c4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: apache-2.0
4
+ pretty_name: NSU Academic Concept Paths Dataset
5
+ tags:
6
+ - academic-knowledge-extraction
7
+ - concept-path-mining
8
+ - openalex
9
+ - innovation-detection
10
+ - scholarly-data
11
+ ---
12
+
13
+ # NSU Academic Concept Paths Dataset
14
+
15
+ This dataset supports the research presented in:
16
+ **"Constraint-Driven Small Language Models Based on Agent and OpenAlex Knowledge Graph: Mining Conceptual Pathways and Discovering Innovation Points in Academic Papers"**
17
+ by Ziye Xia and Sergei S. Ospichev (2025).
18
+
19
+ It contains curated academic data from **Novosibirsk State University (NSU)**, annotated with structured concept paths and innovation points grounded in the **OpenAlex knowledge graph**.
20
+
21
+ ## 📁 Files
22
+
23
+ - `train.json`: Training set (structured instruction-tuning data for the 4-stage agent pipeline)
24
+ - `val.json`: Validation set
25
+ - `test.json`: Test set (includes human-annotated innovation points)
26
+ - `concept_paths.json`: Full list of 84,181 extracted concept paths
27
+ - `innovation_annotations.json`: 1,196 expert-validated innovation points
28
+
29
+ ## 📊 Statistics
30
+
31
+ | Item | Count |
32
+ |------|-------|
33
+ | Papers | 7,960 |
34
+ | Unique OpenAlex Concepts | 11,446 |
35
+ | Concept Paths | 84,181 |
36
+ | Innovation Annotations | 1,196 |
37
+ | Concept Associations (validated) | 127,203 |
38
+
39
+ ## 🧠 Data Format (Example from `train.json`)
40
+
41
+ Each sample follows an instruction-tuning format:
42
+
43
+ ```json
44
+ {
45
+ "instruction": "Extract concept pairs from the research methods section.",
46
+ "input": "<research_methods>... text ...</research_methods>",
47
+ "output": "[[\"Physics\", \"Superconductivity\"], [\"Materials Science\", \"High-Tc materials\"]]"
48
+ }