JamyDohrn commited on
Commit
6fed5e5
·
verified ·
1 Parent(s): 3425d64

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +134 -3
README.md CHANGED
@@ -1,3 +1,134 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - zh
5
+ tags:
6
+ - finance
7
+ ---
8
+ # Dataset Card for CRAFT
9
+
10
+ [![arXiv](https://img.shields.io/badge/arXiv-2508.01302-b31b1b.svg?logo=arxiv)](https://arxiv.org/abs/2508.01302)
11
+ [![GitHub](https://img.shields.io/badge/GitHub-CRAFT_&_KEDAS-blue?logo=github)](https://github.com/JamyDon/LTE)
12
+ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg?logo=apache)](LICENSE)
13
+
14
+ <!-- Provide a quick summary of the dataset. -->
15
+
16
+ This is CRAFT, a dataset for **C**hinese **R**eal-time statistics **A**nd **F**inance knowledge edi**T**ing). CRAFT supports real-time data curation with a [fully automated pipeline](https://github.com/JamyDon/CRAFT-KEDAS/tree/main/CRAFT).
17
+
18
+ This repository contains the CRAFT dataset curated in 25Q1.
19
+
20
+ ## Dataset Details
21
+
22
+ ### Dataset Description
23
+
24
+ <!-- Provide a longer summary of what this dataset is. -->
25
+
26
+ - **Curated by:** The CRAFT&KEDAS team.
27
+ - **Language(s) (NLP):** Chinese
28
+ - **License:** Apache-2.0
29
+
30
+ ### Dataset Sources
31
+
32
+ <!-- Provide the basic links for the dataset. -->
33
+
34
+ - Monthly statistical reports from the [National Bureau of Statistics of China](https://data.stats.gov.cn/) via the [`cn-stats` API](https://github.com/songjian/cnstats).
35
+ - Annual financial statements of publicly listed Chinese companies via the [`AKShare` API](https://github.com/akfamily/akshare).
36
+ - Commonsense data from [C3](https://dataset.org/c3/).
37
+
38
+ ## Uses
39
+
40
+ <!-- Address questions around how the dataset is intended to be used. -->
41
+
42
+ Real-time knowledge editing. Evaluates Edit Success, Locality, and Portability.
43
+
44
+ ## Dataset Structure
45
+
46
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
47
+
48
+ ```json
49
+ {
50
+ "case_id": "an integer ID",
51
+ "subject": [
52
+ "related subject 1",
53
+ "related subject 2"
54
+ ],
55
+ "prompt": [
56
+ "prompt 1",
57
+ "prompt 2"
58
+ ],
59
+ "target_new": [
60
+ "new target 1",
61
+ "new target 2"
62
+ ],
63
+ "portability": {
64
+ "Subject_Aliasing": [
65
+ {
66
+ "prompt": "subject aliasing query 1",
67
+ "ground_truth": [
68
+ "subject aliasing answer 1"
69
+ ]
70
+ },
71
+ {
72
+ "prompt": "subject aliasing query 2",
73
+ "ground_truth": [
74
+ "subject aliasing answer 2"
75
+ ]
76
+ }
77
+ ],
78
+ "Reasoning": [
79
+ {
80
+ "prompt": "reasoning query",
81
+ "ground_truth": [
82
+ "reasoning answer"
83
+ ]
84
+ }
85
+ ]
86
+ },
87
+ "locality": {
88
+ "Relation_Specificity": [
89
+ {
90
+ "prompt": "relation specificity query 1",
91
+ "ground_truth": [
92
+ "relation specificity answer 1"
93
+ ]
94
+ },
95
+ {
96
+ "prompt": "relation specificity query 2",
97
+ "ground_truth": [
98
+ "relation specificity answer 2"
99
+ ]
100
+ }
101
+ ],
102
+ "common_sense": [
103
+ {
104
+ "prompt": "common sense query 1",
105
+ "ground_truth": [
106
+ "common sense answer 1"
107
+ ]
108
+ },
109
+ {
110
+ "prompt": "common sense query 2",
111
+ "ground_truth": [
112
+ "common sense answer 2"
113
+ ]
114
+ }
115
+ ]
116
+ }
117
+ }
118
+ ```
119
+
120
+ ## Citation
121
+
122
+ If you find our work useful, feel free to cite our paper:
123
+
124
+ ```bib
125
+ @misc{tang2025aligninglanguagemodelsrealtime,
126
+ title={Aligning Language Models with Real-time Knowledge Editing},
127
+ author={Chenming Tang and Yutong Yang and Kexue Wang and Yunfang Wu},
128
+ year={2025},
129
+ eprint={2508.01302},
130
+ archivePrefix={arXiv},
131
+ primaryClass={cs.CL},
132
+ url={https://arxiv.org/abs/2508.01302},
133
+ }
134
+ ```