SUFE-AIFLM-Lab commited on
Commit
fdc1b8c
1 Parent(s): 1b8f5ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md CHANGED
@@ -1,3 +1,25 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - text-classification
5
+ - multiple-choice
6
+ - question-answering
7
+ language:
8
+ - zh
9
+ pretty_name: FinEval
10
+ size_categories:
11
+ - 10K<n<100K
12
  ---
13
+
14
+ FinEval is a comprehensive Chinese evaluation suite for foundation models.
15
+ Each subject consists of three splits: dev, val, and test. The dev set per subject consists of five exemplars with explanations for few-shot evaluation. The val set is intended to be used for hyperparameter tuning. And the test set is for model evaluation. Labels on the test split are not released, users are required to submit their results to automatically obtain test accuracy.
16
+
17
+ ### Load the data
18
+ ```python
19
+ from datasets import load_dataset
20
+ dataset=load_dataset(r"SUFE-AIFLM-Lab/FinEval",name="finance")
21
+
22
+ print(dataset['val'][0])
23
+ # {'id': 0, 'question': '使用位填充方法,以01111110为位首flag,数据为011011111111111111110010,求问传送时要添加几个0____', 'A': '1', 'B': '2', 'C': '3', 'D': '4', 'answer': 'C', 'explanation': ''}
24
+ ```
25
+