ango commited on
Commit
f1e1ac2
1 Parent(s): aa90279

upload all files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. app.py +24 -0
  2. assets/__pycache__/color.cpython-39.pyc +0 -0
  3. assets/__pycache__/constant.cpython-39.pyc +0 -0
  4. assets/__pycache__/content.cpython-39.pyc +0 -0
  5. assets/__pycache__/path.cpython-39.pyc +0 -0
  6. assets/color.py +8 -0
  7. assets/constant.py +1 -0
  8. assets/content.py +131 -0
  9. assets/difficulty_distribution.json +1 -0
  10. assets/evaluation.py +185 -0
  11. assets/keypoint_distribution.json +1 -0
  12. assets/path.py +4 -0
  13. components/__pycache__/__init__.cpython-39.pyc +0 -0
  14. components/__pycache__/about.cpython-39.pyc +0 -0
  15. components/__pycache__/data.cpython-39.pyc +0 -0
  16. components/__pycache__/detail.cpython-39.pyc +0 -0
  17. components/__pycache__/result.cpython-39.pyc +0 -0
  18. components/__pycache__/submit.cpython-39.pyc +0 -0
  19. components/__pycache__/top.cpython-39.pyc +0 -0
  20. components/about.py +7 -0
  21. components/data.py +80 -0
  22. components/detail.py +85 -0
  23. components/result.py +57 -0
  24. components/submit.py +15 -0
  25. components/top.py +13 -0
  26. requirements.txt +2 -0
  27. results/202309/details/Atom-7B/acc_result.json +0 -0
  28. results/202309/details/Atom-7B/category_result-all.json +1 -0
  29. results/202309/details/Atom-7B/difficulty_result.json +1 -0
  30. results/202309/details/Baichuan-13B/acc_result.json +0 -0
  31. results/202309/details/Baichuan-13B/category_result-all.json +1 -0
  32. results/202309/details/Baichuan-13B/difficulty_result.json +1 -0
  33. results/202309/details/Baichuan-7B/acc_result.json +0 -0
  34. results/202309/details/Baichuan-7B/category_result-all.json +1 -0
  35. results/202309/details/Baichuan-7B/difficulty_result.json +1 -0
  36. results/202309/details/Baichuan2-13B/acc_result.json +0 -0
  37. results/202309/details/Baichuan2-13B/category_result-all.json +1 -0
  38. results/202309/details/Baichuan2-13B/difficulty_result.json +1 -0
  39. results/202309/details/Baichuan2-7B/acc_result.json +0 -0
  40. results/202309/details/Baichuan2-7B/category_result-all.json +1 -0
  41. results/202309/details/Baichuan2-7B/difficulty_result.json +1 -0
  42. results/202309/details/ChatGLM-6B/acc_result.json +0 -0
  43. results/202309/details/ChatGLM-6B/category_result-all.json +1 -0
  44. results/202309/details/ChatGLM-6B/difficulty_result.json +1 -0
  45. results/202309/details/ChatGLM2-6B/acc_result.json +0 -0
  46. results/202309/details/ChatGLM2-6B/category_result-all.json +1 -0
  47. results/202309/details/ChatGLM2-6B/difficulty_result.json +1 -0
  48. results/202309/details/ChineseLlama-13B/acc_result.json +0 -0
  49. results/202309/details/ChineseLlama-13B/category_result-all.json +1 -0
  50. results/202309/details/ChineseLlama-13B/difficulty_result.json +1 -0
app.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ from components.about import create_about
4
+ from components.detail import create_detail
5
+ from components.submit import create_submit
6
+ from components.top import create_top
7
+ from components.data import create_data
8
+ from components.result import create_result
9
+
10
+ with gr.Blocks(title="Ango Leaderboard") as app:
11
+ top_components = create_top()
12
+ with gr.Tab("Result"):
13
+ create_result(top_components)
14
+ with gr.Tab("Details"):
15
+ create_detail(top_components)
16
+ with gr.Tab("Data"):
17
+ create_data(top_components)
18
+ with gr.Tab("Submit"):
19
+ create_submit()
20
+ with gr.Tab("About"):
21
+ create_about()
22
+
23
+ app.queue()
24
+ app.launch(server_name="127.0.0.1", server_port=8080, ssl_verify=False)
assets/__pycache__/color.cpython-39.pyc ADDED
Binary file (334 Bytes). View file
 
assets/__pycache__/constant.cpython-39.pyc ADDED
Binary file (149 Bytes). View file
 
assets/__pycache__/content.cpython-39.pyc ADDED
Binary file (12.8 kB). View file
 
assets/__pycache__/path.cpython-39.pyc ADDED
Binary file (176 Bytes). View file
 
assets/color.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ color_dict = {
2
+ '言语理解与表达': '#B22222',
3
+ '数量关系': '#CC6600',
4
+ '判断推理': '#CC9900',
5
+ '资料分析': '#228B22',
6
+ '常识判断': '#0077BE',
7
+ '未分类': '#9400D3'
8
+ }
assets/constant.py ADDED
@@ -0,0 +1 @@
 
 
1
+ DELIMITER = "|"
assets/content.py ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ TITLE = """<h1 align="center" id="space-title">🧊🌊ANGO Leaderboard</h1>"""
2
+ INTRODUCTION_TEXT = """
3
+
4
+ ANGO is <b>A</b> <b>N</b>ovel <b>G</b>eneration-<b>O</b>riented Chinese LLM evaluation benchmark.
5
+
6
+ We introduces the format of single-question multiple-keypoints dataset for the first time, which include 171 keypoints accumulated in 4 hierarchical levels and 9 difficulty categories.
7
+
8
+
9
+ The data were exclusively obtained from the Administrative Proficiency Test,
10
+ which serves as a significant component of the Chinese civil service examination.
11
+
12
+
13
+ We will apply a seasonal system for the leaderboard, updating them every two months.
14
+ The corresponding test dataset will be announced at the beginning of each season,
15
+ and some questions will be eliminated at the end of the season.
16
+
17
+
18
+ Read more details in "About" page!
19
+ """
20
+ KEYPOINT_TEXT = """
21
+ Because single question may contains more than one keypoint, so the total number of keypoint count is higher than question count
22
+ """
23
+ TEST_SET_TEXT = """
24
+ The test set comprises a total of 1768 records.
25
+
26
+ Among these records, there are 988 distinct combinations of Keypoints, which indicates the provision of an additional few-shot examples amounting to 988 * 5.
27
+
28
+ The test set encompasses all 171 Keypoint categories.
29
+
30
+ For further information, please refer to the "About" page.
31
+ """
32
+ TEST_SCRIPT_TEXT = """
33
+ <br>
34
+ The evaluation script requires three mandatory arguments, while the others should remain unchanged.
35
+
36
+ --model_path: specifies the location where the model parameters are saved.
37
+ --dataset_path: indicates the directory where the ANGO test set data is stored.
38
+
39
+ --save_path: denotes the path where the evaluation results will be saved.
40
+
41
+ You can modify the specific functions to adapt them to your model.
42
+
43
+ <br>
44
+ Upon completion of the evaluation, the script will generate three files:
45
+
46
+ acc_result: This file contains the predicted results for each record, along with statistical data at the question level.
47
+
48
+ category_result: This file provides statistical data at the Keypoint level.
49
+
50
+ difficulty_result: This file includes statistical data categorized by difficulty level.
51
+ """
52
+ SUBMIT_TEXT = """
53
+ Need More Resource
54
+ """
55
+
56
+ ABOUT_HTML = """
57
+ <h1>What is ANGO</h1>
58
+ <p>We introduce a novel Chinese LLM benchmark dataset called ANGO, aiming to provide more in-depth guidance for model training and evaluation. We introduce the format of a single-question multiple-keypoints dataset for the first time, which will provide the most complete description for each question, enabling the test results to comprehensively showcase the model's performance from multiple perspectives. Based on the single-question multiple-keypoints format, we design a more detailed and refined model capability classification system - the Keypoint Tree, which reflects the relationships between different keypoints. It includes a total of 171 specific model capabilities accumulated in 4 hierarchical levels. With the help of the KeyPoint Tree, the performance of models on multiple levels of capabilities can be quickly measured, and corresponding adjustments can be made. ANGO also involves two new question attributes: human accuracy and human error-prone options. Based on human accuracy, we propose a more detailed difficulty classification compared to previous benchmarks. By combining the human accuracy of the question itself, the human accuracy of the involved key points, and the actual score of the question, all questions are divided into 9 difficulty levels, providing a quantifiable reference for evaluating models of different difficulty.</p>
59
+
60
+ <p>In addition to the innovative data, we propose a complete set of verification processes tailored for ANGO, which can provide fairer results compared to the current leaderboards. This includes conducting multiple experiments with option shuffling to mitigate the issue of data leakage, designing test set sampling strategies that fully utilize the characteristics of ANGO, and implementing elimination mechanisms for high-accuracy questions. Based on these, we establish a dynamic updating system for the test set, resembling a seasonal system. Thanks to these methods, ANGO can continually update the test results, ensuring the fairness and effectiveness of the leaderboard. By preserving the test results from multiple seasons, it can provide researchers with an overview of the current trends in optimizing models within the community.</p>
61
+
62
+ <h1 id="space-title">Data Source</h1>
63
+ <p>The data utilized in our study were exclusively obtained from the Administrative Proficiency Test, which serves as a significant component of the Chinese civil service examination.</p>
64
+ <p>The Administrative Proficiency Test is entirely composed of multiple-choice questions and aims to evaluate the abilities and skills necessary for practical administrative work. This test covers a wide range of knowledge areas, including Expression& Comprehension , Data Analysis, Quantitative Relations, Judgement&Inference, and Common Knowledge. As a comprehensive assessment tool, it requires candidates to respond to a series of questions related to administrative work within a limited timeframe. These questions may involve policy formulation, problem-solving, personnel and resource management, as well as handling emergency situations. By formulating these questions, it facilitates the evaluation of candidates' analytical thinking, Judgement&Inference, problem-solving abilities, and language proficiency.</p>
65
+ <p>The nature of the Administrative Proficiency Test necessitates candidates to tackle complex questions within a specified timeframe, making it an ideal testing environment for assessing the language capabilities of language models. Language models typically demonstrate excellent performance in generating and comprehending text, and this test provides concrete and intricate contexts that simulate real-world language communication and decision-making processes. By employing language models to answer these questions, we can evaluate their understanding of complex problems, Judgement&Inference abilities, as well as the accuracy and fluency of their language expressions.</p>
66
+ <p>Furthermore, the Administrative Proficiency Test encompasses a broad coverage and diversity. It includes questions and scenarios from various administrative domains, such as government administration, social affairs, and economic development. This diversity aids in evaluating the language processing abilities of language models across different fields, thereby providing a more comprehensive understanding of their potential strengths and limitations in practical applications. Moreover, it offers valuable insights for future model improvements and applications.</p>
67
+ <p>ANGO's data covers all 34 provinces in China and includes three different types of examinations conducted between 2008 and 2023, including formal and mock exams.</p>
68
+ <h1 id="space-title">Data Processing</h1>
69
+ <p>In order to enhance the quality of our data, we employed a simple yet efficient preprocessing approach.</p>
70
+ <h4>Duplicate Removal</h4>
71
+ <p>Given that mock exams often include previous exam questions, our data contained numerous duplicates. To address this issue, we employed a straightforward strategy of removing duplicates based on the record ID obtained from the data source. As a result of this step, the size of our data was reduced to 88,799 instances.</p>
72
+
73
+ <h4>Image Removal</h4>
74
+ <p>The data consisted of two types of images: formula pictures and other types (such as images containing graphics). However, since our primary focus was on Chinese Natural Language Processing (NLP) evaluation rather than the multi-modal domain, we opted to remove all records containing pure images. This resulted in the removal of 17,650 records.</p>
75
+
76
+ <h4>Formula Replacement</h4>
77
+ <p>As mentioned earlier, our data still contained formula pictures, and we recognized the importance of including formulae to ensure diversity in our data. To address this, we extracted 8,144 unique formula images from a pool of 34,062 LaTeX formulas derived from 5,574 questions. These images were then processed using a Formula OCR (Optical Character Recognition) model, followed by manual verification to ensure formula accuracy. Ultimately, we obtained a clean data consisting of 71,149 instances.</p>
78
+ <h1 id="space-title">Data Format</h1>
79
+
80
+ <ul>
81
+ <li><strong>Question:</strong> The content of the question.</li>
82
+ <li><strong>Material:</strong> Some questions require additional information from a given material.</li>
83
+ <li><strong>Type:</strong> The classification of the question, encompassing single-choice and multiple-choice formats.</li>
84
+ <li><strong>Options:</strong> The candidate answers, presented in a line-separated format.</li>
85
+ <li><strong>Choice:</strong> The correct answer to the question.</li>
86
+ <li><strong>Keypoints:</strong> All the keypoints involved in the question.</li>
87
+ <li><strong>Human Accuracy:</strong> The accuracy of humans on this question.</li>
88
+ <li><strong>Human Count:</strong> The number of times this question has been completed by humans.</li>
89
+ <li><strong>Most Wrong:</strong> The option that humans are most likely to choose incorrectly.</li>
90
+ <li><strong>Difficulty:</strong> The level of difficulty of the question, given by our standard.</li>
91
+ <li><strong>Solution:</strong> A concise explanation of the methodology to arrive at the correct answer.</li>
92
+ <li><strong>Source:</strong> The original index and examination source of the question.</li>
93
+ <li><strong>Formulas:</strong> The count of formulas present in the material, question, and options.</li>
94
+ </ul>
95
+
96
+ <p>Here is an example record:</p>
97
+
98
+ <div style="border: 1px solid black; padding: 10px;">
99
+ <p>
100
+ <strong>Question:</strong> Forward: Backward<br>
101
+ <strong>Material:</strong> Please select the option that best resembles the relationship between the given words or phrases in the question stem.<br>
102
+ <strong>Type:</strong> Single Choice<br>
103
+ <strong>Options:</strong><br>
104
+ A. Urge: Advise<br>
105
+ B. Ocean: Land<br>
106
+ C. Vibration: Quiet<br>
107
+ D. Extend: Compress<br>
108
+ <strong>Choice:</strong> D<br>
109
+ <strong>Difficulty:</strong> 4<br>
110
+ <strong>KeyPoints:</strong> Semantic Relationship - Antonym<br>
111
+ <strong>Human Accuracy:</strong> 79.564999<br>
112
+ <strong>Human Count:</strong> 183494<br>
113
+ <strong>Most Wrong:</strong> C<br>
114
+ <strong>Solution:</strong> Step 1: Determine the logical relationship between the words in the question stem. The two words in the question stem are antonyms. Step 2: Determine the logical relationship between the options. The option that has the same logical relationship as the question stem is option D. Option A is a synonym relationship, option B is a parallel relationship, and in option C, the antonym of "quiet" should be "noisy" instead of "vibration". Therefore, the correct answer is D.<br>
115
+ <strong>Source:</strong> 2011 Jiangsu Province Civil Service Recruitment Examination 'Administrative Aptitude Test' (Category A), Question 41<br>
116
+ <strong>Formulas:</strong> 0
117
+ </p>
118
+ </div>
119
+
120
+ <h1 id="space-title">Evaluation(Not Implement Yet)</h1>
121
+ <p>To mitigate the impact of data leakage during model pretraining on benchmark evaluations, we have employed multiple benchmark evaluation tricks to enhance fairness and real-time performance of the benchmarks.</p>
122
+
123
+ <h4>Confusion of Options Order</h4>
124
+ <p>Sometimes, a model's correct answer to a specific question may not be due to mastering a certain ability or understanding the question, but rather because it has recognized patterns of token order in the training data. By shuffling the order of options in multiple-choice questions and making multiple predictions with the correct answer placed in different options, we can average the results to reduce the model's reliance on character order.</p>
125
+
126
+ <h4>Season For Dynamic Evaluation</h4>
127
+ <p>Thanks to sampling strategies optimized for ANGO, we can periodically sample the test set and update the leaderboard. This prevents certain institutions or individuals from maliciously hacking ANGO to inflate the model's performance. However, due to the limited number of questions in some key areas, dynamic iteration may not be feasible for all questions.</p>
128
+
129
+ <h4>Question Elimination Mechanism</h4>
130
+ <p>In addition to the aforementioned dynamic updating of season, a new question elimination mechanism has been proposed. This mechanism calculates the average accuracy of each question across all models for each iteration. Questions with accuracies exceeding a threshold are temporarily removed by ANGO to ensure reliable discrimination among questions in ANGO.</p>
131
+ """
assets/difficulty_distribution.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data":[{"marker":{"color":[24,130,9283,18231,23734,10120,9546,69,12],"colorbar":{"title":{"text":"Total"}},"colorscale":[[0.0,"#440154"],[0.1111111111111111,"#482878"],[0.2222222222222222,"#3e4989"],[0.3333333333333333,"#31688e"],[0.4444444444444444,"#26828e"],[0.5555555555555556,"#1f9e89"],[0.6666666666666666,"#35b779"],[0.7777777777777778,"#6ece58"],[0.8888888888888888,"#b5de2b"],[1.0,"#fde725"]]},"x":[1,2,3,4,5,6,7,8,9],"y":[24,130,9283,18231,23734,10120,9546,69,12],"type":"bar"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"yaxis":{"type":"log"}}}
assets/evaluation.py ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import re
4
+ import argparse
5
+ import torch
6
+ import gc
7
+ from tqdm import tqdm
8
+
9
+ from transformers import AutoModelForCausalLM, AutoModel, AutoTokenizer
10
+
11
+ os.environ['CUDA_VISIBLE_DEVICES'] = '1'
12
+
13
+
14
+ def parse_args():
15
+ parser = argparse.ArgumentParser(description='Validation')
16
+ parser.add_argument('--model_path', dest="model_path")
17
+ parser.add_argument('--dataset_path', dest="dataset_path")
18
+ parser.add_argument('--save_path', dest='save_path')
19
+ parser.add_argument('--max_length', dest="max_length", default=2000)
20
+ parser.add_argument('--max_new_tokens', dest="max_new_tokens", default=48)
21
+ parser.add_argument('--input_template', dest="input_template",
22
+ default="材料:{material}\n问题:{question}\n{options}\n答案:{response}")
23
+ parser.add_argument('--query_template', dest="query_template", default="问题:{question}\n{options}\n答案:{response}")
24
+ parser.add_argument('--system_prompt', dest="system_prompt",
25
+ default="你是一名考生,请回答问题的正确选项,比如C。如果有多个正确选项,请按顺序回答所有正确选项,比如ABD。")
26
+ parser.add_argument('--level_delimiter', dest="level_delimiter", default="|")
27
+ args = parser.parse_args()
28
+ return args
29
+
30
+
31
+ class Validator:
32
+ def __init__(self, args):
33
+ self.load_model(args.model_path)
34
+ self.load_dataset(args.dataset_path)
35
+ self.save_dir = os.path.join(args.save_path, os.path.split(model_path)[-1])
36
+ if not os.path.exists(self.save_dir):
37
+ os.makedirs(self.save_dir)
38
+
39
+ self.max_length = args.max_length
40
+ self.max_new_tokens = args.max_new_tokens
41
+ self.input_template = args.input_template
42
+ self.query_template = args.query_template
43
+ self.system_prompt = args.system_prompt
44
+ self.level_delimiter = args.level_delimiter
45
+
46
+ def load_model(self, model_path):
47
+ self.tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
48
+
49
+ self.model = AutoModelForCausalLM.from_pretrained(model_path, device_map={"": 0}, trust_remote_code=True)
50
+ self.model.eval()
51
+
52
+ def load_dataset(self, dataset_path):
53
+ self.dataset = json.load(open(dataset_path, encoding="utf-8"))
54
+
55
+ def format_prompt(self, material, question, options, response):
56
+ if material:
57
+ return self.input_template.format(material=material, question=question, options=options,
58
+ response=response).strip()
59
+ return self.query_template.format(question=question, options=options, response=response).strip()
60
+
61
+ def build_prompt(self, item):
62
+ query_prompt = self.format_prompt(item['material'], item['question'], item['options'], "")
63
+ history_prompts = []
64
+ for sub in item['history']:
65
+ history_prompts.append(self.format_prompt(sub['material'], sub['question'], sub['options'], sub['choice']))
66
+
67
+ final_prompt = self.system_prompt + "\n" + "\n".join(history_prompts) + "\n" + query_prompt
68
+
69
+ if len(self.tokenizer.tokenize(final_prompt)) > self.max_length:
70
+ history_prompts.pop()
71
+ break
72
+ return self.system_prompt + "\n" + "\n".join(history_prompts) + "\n" + query_prompt
73
+
74
+ def get_predict(self, prompt):
75
+ gen_kwargs = {"do_sample": False, "max_new_tokens": self.max_new_tokens}
76
+ inputs = self.tokenizer([prompt], return_tensors="pt")
77
+ inputs = inputs.to(self.model.device)
78
+ with torch.no_grad():
79
+ outputs = self.model.generate(**inputs, return_dict_in_generate=True, **gen_kwargs)
80
+ predict = self.tokenizer.decode(outputs.sequences[0], skip_special_tokens=True)[len(prompt):]
81
+ return predict
82
+
83
+ def extract_answer(self, results):
84
+ predict_result = {"acc": 0, "wrong_value": 0, "human_acc": 0, "hit": 0, "total": 0, "wrong_hit": 0,
85
+ "wrong_total": 0, 'detail': []}
86
+ for result in results:
87
+ answer = result['item']['choice']
88
+ most_wrong = result['item']['most_wrong']
89
+ human_acc = result['item']['human_acc'] * 0.01
90
+
91
+ predict = ""
92
+ for e in re.split(r'[、,.,和\s]\s*', result['predict']):
93
+ if not e.isascii():
94
+ break
95
+ predict += e
96
+ result['predict'] = predict
97
+ predict_result['detail'].append(
98
+ {"answer": answer, "most_wrong": most_wrong, "predict": predict, "human_acc": human_acc})
99
+ predict_result['hit'] += 1 if answer == predict else 0
100
+ predict_result['wrong_hit'] += 1 if most_wrong == predict else 0
101
+ predict_result['wrong_value'] += 1 - human_acc if most_wrong == predict else 0
102
+ predict_result['human_acc'] += human_acc
103
+ predict_result['total'] += 1
104
+ predict_result['acc'] = predict_result['hit'] / predict_result['total']
105
+ predict_result['wrong_total'] = predict_result['total'] - predict_result['hit']
106
+ predict_result['wrong_value'] = predict_result['wrong_value'] / predict_result['wrong_total']
107
+ predict_result['human_acc'] = predict_result['human_acc'] / len(results)
108
+
109
+ json.dump(predict_result, open(os.path.join(self.save_dir, "acc_result.json"), "w", encoding="utf-8"),
110
+ ensure_ascii=False)
111
+
112
+ def category_summary(self, results):
113
+ category_result = {"总计": {"hit": 0, "all": 0, "difficulty": {}, "human_acc": 0}}
114
+ for result in results:
115
+ hit = 1 if result['item']['choice'] == result['predict'] else 0
116
+ categories_list = result['item']['categories']
117
+ difficulty = result['item']['difficulty']
118
+ human_acc = result['item']['human_acc']
119
+ for categories in categories_list:
120
+ if difficulty not in category_result["总计"]["difficulty"]:
121
+ category_result["总计"]["difficulty"][difficulty] = {"hit": 0, "all": 0}
122
+ category_result["总计"]["difficulty"][difficulty]['hit'] += hit
123
+ category_result["总计"]["difficulty"][difficulty]['all'] += 1
124
+ category_result["总计"]['hit'] += hit
125
+ category_result["总计"]['all'] += 1
126
+ category_result["总计"]['human_acc'] += human_acc
127
+ category_subset = []
128
+ for category in categories:
129
+ category_subset.append(category)
130
+ category_name = self.level_delimiter.join(category_subset)
131
+ if not category_name:
132
+ category_name = "未分类"
133
+ if category_name not in category_result:
134
+ category_result[category_name] = {"hit": 0, "all": 0, "difficulty": {}, "human_acc": 0}
135
+ if difficulty not in category_result[category_name]["difficulty"]:
136
+ category_result[category_name]["difficulty"][difficulty] = {"hit": 0, "all": 0}
137
+ category_result[category_name]["difficulty"][difficulty]['hit'] += hit
138
+ category_result[category_name]["difficulty"][difficulty]['all'] += 1
139
+ category_result[category_name]['hit'] += hit
140
+ category_result[category_name]['all'] += 1
141
+ category_result[category_name]['human_acc'] += human_acc
142
+
143
+ for k, v in category_result.items():
144
+ v['acc'] = v['hit'] / v['all']
145
+ v['human_acc'] = v['human_acc'] / v['all']
146
+ for d, sub_v in v['difficulty'].items():
147
+ sub_v['acc'] = sub_v['hit'] / sub_v['all']
148
+ json.dump(category_result, open(os.path.join(self.save_dir, "category_result.json"), "w", encoding="utf-8"),
149
+ ensure_ascii=False)
150
+
151
+ def difficulty_summary(self, results):
152
+ difficulty_result = {"总计": {"hit": 0, "all": 0}}
153
+ for result in results:
154
+ hit = 1 if result['item']['choice'] == result['predict'] else 0
155
+ difficulty = result['item']['difficulty']
156
+ if difficulty not in difficulty_result:
157
+ difficulty_result[difficulty] = {"hit": 0, "all": 0}
158
+ difficulty_result[difficulty]['hit'] += hit
159
+ difficulty_result[difficulty]['all'] += 1
160
+ difficulty_result["总计"]['hit'] += hit
161
+ difficulty_result["总计"]['all'] += 1
162
+
163
+ for k in difficulty_result:
164
+ difficulty_result[k]['acc'] = difficulty_result[k]['hit'] / difficulty_result[k]['all']
165
+
166
+ json.dump(difficulty_result, open(os.path.join(self.save_dir, "difficulty_result.json"), "w", encoding="utf-8"),
167
+ ensure_ascii=False)
168
+
169
+ def __call__(self):
170
+ results = []
171
+ for item in tqdm(self.dataset):
172
+ prompt = self.build_prompt(item)
173
+ predict = self.get_predict(prompt)
174
+ results.append({"item": item, "predict": predict})
175
+ gc.collect()
176
+
177
+ json.dump(results, open(os.path.join(self.save_dir, "raw.json"), "w", encoding="utf-8"), ensure_ascii=False)
178
+ self.extract_answer(results)
179
+ self.category_summary(results)
180
+ self.difficulty_summary(results)
181
+
182
+
183
+ if __name__ == "__main__":
184
+ args = parse_args()
185
+ Validator(args)()
assets/keypoint_distribution.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data":[{"branchvalues":"total","insidetextorientation":"radial","labels":["关联词-转折","关联词-因果","关联词-对策","关联词-并列","主题词","程度词","行文脉络-总分","行文脉络-分总","行文脉络-分总分","特殊问法","实词","代词","首句特征","非首句特征","确定捆绑","确定顺序","尾句特征","开头","中间","结尾","词的辨析-词义侧重","词的辨析-固定搭配","词的辨析-感情色彩","词的辨析-程度轻重","关联关系-转折关系","关联关系-因果关系","关联关系-并列关系","对应关系-解释类对应","对应关系-重点词句对应","给完工时间型","给效率比例型","给具体单位型","工程问题-其他","非典型最值问题","构造数列","最不利构造","多集合反向构造","周期相遇问题","周期余数问题","周期问题-其他","火车过桥","平均速度","普通行程","相遇追及","流水行船","行程问题-其他","平面几何","立体几何","两集合","三集合","基础排列组合","相邻问题","不相邻问题","同素分堆问题","环形排列问题","错位排列","排列组合问题-其他","给情况求概率","给概率求概率","概率问题-其他","普通不定方程","不定方程组","主客体","大前提","方式目的","原因结果","单定义-其他句式","故事类","拆词","常规问法","搭桥","必要条件","补充论据","加强选非题","加强-其他","削弱论点","拆桥","他因削弱","削弱选非题","削弱论据","因果倒置","削弱-其他","常规翻译","集合推理","推理形式","翻译推理-其他","语义关系-近义关系","语义关系-反义关系","语义-其他","逻辑关系-全同关系","逻辑关系-并列关系","逻辑关系-交叉关系","逻辑关系-包容关系","逻辑关系-对应关系","中心理解题","细节判断题","词句理解题","标题填入题","语句排序题","语句填空题","接语选择题","实词填空","成语填空","混搭填空","词的辨析","语境分析","工程问题","最值问题","年龄问题","和差倍比问题","周期问题","数列问题","行程问题","几何问题","容斥原理问题","排列组合问题","概率问题","经济利润问题","不定方程问题","统筹规划问题","数学运算-其他","公倍数与公约数问题","单定义","多定义","加强题型","削弱题型","翻译推理","组合排列-材料","原因解释","语义关系","逻辑关系","拆分思维","直接找数","简单加减计算","排序类","基期计算","现期计算","基期比较","间隔基期","基期和差","现期追赶","一般增长率","混合增长率","间隔增长率","年均增长率","增长量计算","增长量比较","间隔增长量","年均增长量","现期比重","基期比重","两期比重","混合比重","基期平均数","现期平均数","平均数的增长率","平均数的增长量","两期平均数比较","基期倍数","现期倍数","比值计算","比值比较","时政","中国特色社会主义建设","宏观经济与调控政策","物理常识","化学常识","生物常识","科技理论与成就","生活常识","中国历史","世界历史","文学常识","文化常识","自然常识","国情社情","宪法","行政法","民法","刑法","劳动法","其他法律法规","民事诉讼法","经济法","阅读理解","语句表达","逻辑填空","数学运算","定义判断","逻辑判断","类比推理","文字资料","综合资料","简单计算","基期与现期","增长率","增长量","比重问题","平均数问题","倍数与比值相关","综合分析","政治常识","经济常识","科技常识","人文常识","地理国情","法律常识","未分类","言语理解与表达","数量关系","判断推理","资料分析","常识判断"],"marker":{"colors":["#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#B22222","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC6600","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#CC9900","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#B22222","#B22222","#B22222","#CC6600","#CC9900","#CC9900","#CC9900","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#228B22","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#0077BE","#9400D3","#B22222","#CC6600","#CC9900","#228B22","#0077BE"]},"parents":["中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","中心理解题","词句理解题","词句理解题","语句排序题","语句排序题","语句排序题","语句排序题","语句排序题","语句填空题","语句填空题","语句填空题","词的辨析","词的辨析","词的辨析","词的辨析","语境分析","语境分析","语境分析","语境分析","语境分析","工程问题","工程问题","工程问题","工程问题","最值问题","最值问题","最值问题","最值问题","周期问题","周期问题","周期问题","行程问题","行程问题","行程问题","行程问题","行程问题","行程问题","几何问题","几何问题","容斥原理问题","容斥原理问题","排列组合问题","排列组合问题","排列组合问题","排列组合问题","排列组合问题","排列组合问题","排列组合问题","概率问题","概率问题","概率问题","不定方程问题","不定方程问题","单定义","单定义","单定义","单定义","单定义","单定义","单定义","多定义","加强题型","加强题型","加强题型","加强题型","加强题型","削弱题型","削弱题型","削弱题型","削弱题型","削弱题型","削弱题型","削弱题型","翻译推理","翻译推理","翻译推理","翻译推理","语义关系","语义关系","语义关系","逻辑关系","逻辑关系","逻辑关系","逻辑关系","逻辑关系","阅读理解","阅读理解","阅读理解","阅读理解","语句表达","语句表达","语句表达","逻辑填空","逻辑填空","逻辑填空","逻辑填空","逻辑填空","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","数学运算","定义判断","定义判断","逻辑判断","逻辑判断","逻辑判断","逻辑判断","逻辑判断","类比推理","类比推理","类比推理","简单计算","简单计算","简单计算","基期与现期","基期与现期","基期与现期","基期与现期","基期与现期","基期与现期","增长率","增长率","增长率","增长率","增长量","增长量","增长量","增长量","比重问题","比重问题","比重问题","比重问题","平均数问题","平均数问题","平均数问题","平均数问题","平均数问题","倍数与比值相关","倍数与比值相关","倍数与比值相关","倍数与比值相关","政治常识","政治常识","经济常识","科技常识","科技常识","科技常识","科技常识","科技常识","人文常识","人文常识","人文常识","人文常识","地理国情","地理国情","法律常识","法律常识","法律常识","法律常识","法律常识","法律常识","法律常识","法律常识","言语理解与表达","言语理解与表达","言语理解与表达","数量关系","判断推理","判断推理","判断推理","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","资料分析","常识判断","常识判断","常识判断","常识判断","常识判断","常识判断","","","","","",""],"values":[892,340,1028,634,1029,211,649,1130,409,629,193,153,110,139,659,560,38,234,417,295,1116,3837,801,808,662,378,1371,2173,4832,162,203,149,51,339,154,111,20,80,103,32,22,38,211,322,75,14,230,183,124,157,373,51,41,29,16,18,23,304,108,36,125,126,266,433,1148,521,1300,118,209,525,582,308,598,220,8,708,226,110,155,90,81,5,708,133,325,36,210,178,117,113,761,278,873,2087,6957,2221,346,465,1506,946,750,3340,2396,2474,6562,9416,565,624,169,1063,215,216,682,413,281,551,448,565,251,163,19,63,3995,525,1716,1375,1202,708,525,505,4112,240,105,118,52,152,24,18,22,61,7,147,50,41,2,113,34,4,2,244,120,91,2,35,94,53,7,3,50,64,32,1,3751,247,433,614,362,687,627,631,737,124,916,1087,568,629,347,669,513,309,75,641,69,105,9989,3202,24188,6288,4520,5526,4857,2168,1,275,284,240,153,457,192,147,441,3999,435,2921,2866,1198,2728,15907,37379,6288,14903,4358,14147],"type":"sunburst"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}}}}
assets/path.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ SEASON = {
2
+ "latest": "202309",
3
+ "2023-09": "202309"
4
+ }
components/__pycache__/__init__.cpython-39.pyc ADDED
Binary file (138 Bytes). View file
 
components/__pycache__/about.cpython-39.pyc ADDED
Binary file (336 Bytes). View file
 
components/__pycache__/data.cpython-39.pyc ADDED
Binary file (2.98 kB). View file
 
components/__pycache__/detail.cpython-39.pyc ADDED
Binary file (4.07 kB). View file
 
components/__pycache__/result.cpython-39.pyc ADDED
Binary file (3.24 kB). View file
 
components/__pycache__/submit.cpython-39.pyc ADDED
Binary file (742 Bytes). View file
 
components/__pycache__/top.cpython-39.pyc ADDED
Binary file (705 Bytes). View file
 
components/about.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ from assets.content import ABOUT_HTML
4
+
5
+
6
+ def create_about():
7
+ gr.HTML(ABOUT_HTML)
components/data.py ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ import gradio as gr
4
+ import pandas as pd
5
+ import plotly
6
+ import plotly.graph_objects as go
7
+
8
+ from assets.color import color_dict
9
+ from assets.path import SEASON
10
+
11
+
12
+ def read_testset(season):
13
+ return pd.read_json(os.path.join("results", SEASON[season], "test_dataset.json"))
14
+
15
+
16
+ def build_keypoint_plot(dataset):
17
+ keypoint_set = {}
18
+ for i, categories in enumerate(dataset['categories']):
19
+ for category in categories:
20
+ parent = ""
21
+ for keypoint in category:
22
+ if not keypoint:
23
+ keypoint = "未分类"
24
+ if keypoint not in keypoint_set:
25
+ keypoint_set[keypoint] = {"value": 0}
26
+ keypoint_set[keypoint]['value'] += 1
27
+ keypoint_set[keypoint]['parent'] = parent
28
+ keypoint_set[keypoint]['color'] = category[0] if category[0] else "未分类"
29
+ parent = keypoint
30
+
31
+ labels, parents, values, colors = [], [], [], []
32
+ for k, v in keypoint_set.items():
33
+ labels.append(k)
34
+ parents.append(v['parent'])
35
+ values.append(v['value'])
36
+ colors.append(color_dict[v['color']])
37
+
38
+ fig = go.Figure(go.Sunburst(
39
+ labels=labels,
40
+ parents=parents,
41
+ values=values,
42
+ branchvalues="total",
43
+ insidetextorientation='radial',
44
+ marker={"colors": colors}
45
+ ))
46
+ return fig
47
+
48
+
49
+ def build_difficulty_plot(dataset):
50
+ xs = sorted(dataset['difficulty'].unique())
51
+ ys = [len(dataset[dataset['difficulty'] == x]) for x in xs]
52
+
53
+ fig = go.Figure([go.Bar(x=xs, y=ys, marker={"color": ys, "colorscale": "Viridis",
54
+ "colorbar": {"title": "Total"}})])
55
+ fig.update_layout(yaxis=dict(type='log'))
56
+ return fig
57
+
58
+
59
+ def build_plot(season):
60
+ dataset = pd.read_json(os.path.join("results", SEASON[season], "test_dataset.json"))
61
+ return build_keypoint_plot(dataset), build_difficulty_plot(dataset)
62
+
63
+
64
+ def create_data(top_components):
65
+ with gr.Tab("All data"):
66
+ with gr.Row():
67
+ all_keypoint_plot = gr.Plot(
68
+ plotly.io.from_json(open("assets/keypoint_distribution.json", encoding="utf-8").read()),
69
+ label="Keypoint Distribution")
70
+ all_difficulty_plot = gr.Plot(
71
+ plotly.io.from_json(open("assets/difficulty_distribution.json", encoding="utf-8").read()),
72
+ label="Difficulty Distribution")
73
+ with gr.Tab("Test Data"):
74
+ with gr.Row():
75
+ k_fig, d_fig = build_plot("latest")
76
+ test_keypoint_plot = gr.Plot(k_fig, label="Keypoint Distribution")
77
+ test_difficulty_plot = gr.Plot(d_fig, label="Difficulty Distribution")
78
+
79
+ return {"all_keypoint": all_keypoint_plot, "all_difficulty": all_difficulty_plot,
80
+ "test_keypoint": test_keypoint_plot, "test_difficulty": test_difficulty_plot}
components/detail.py ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import os
3
+
4
+ import gradio as gr
5
+ import plotly.graph_objects as go
6
+
7
+ from assets.constant import DELIMITER
8
+ from assets.path import SEASON
9
+
10
+ DEEPEST = 4
11
+
12
+
13
+ def build_plot(category_result, columns):
14
+ k_x, k_y, k_text, k_color = [], [], [], []
15
+ d_xy = {}
16
+ for c in columns:
17
+ k_x.append(c.split(DELIMITER)[-1])
18
+ result = category_result.get(c)
19
+ k_y.append(round(result.get("acc"), 4))
20
+ sub_count = sum([1 for k in category_result if k.startswith(c)]) - 1
21
+ k_text.append(
22
+ f'hit:{result.get("hit")} sub_count:{sub_count}')
23
+ for d, v in result['difficulty'].items():
24
+ if d not in d_xy:
25
+ d_xy[d] = {"hit": 0, "all": 0}
26
+ d_xy[d]['hit'] += v['hit']
27
+ d_xy[d]['all'] += v['all']
28
+ k_color.append(result.get("all"))
29
+ d_x = sorted(d_xy, reverse=True)
30
+ d_y, d_text, d_color = [], [], []
31
+ for d in d_x:
32
+ v = d_xy[d]
33
+ d_y.append(v['hit'] / v['all'])
34
+ d_text.append(f'hit/total:{v["hit"]}/{v["all"]}')
35
+ d_color.append(v['all'])
36
+
37
+ k_fig = go.Figure([go.Bar(x=k_x, y=k_y, hovertext=k_text, marker={"color": k_color, "colorscale": "Viridis",
38
+ "colorbar": {"title": "Total"}})])
39
+ k_fig.update_layout(yaxis=dict(range=[0, 1]))
40
+ d_fig = go.Figure([go.Bar(x=d_x, y=d_y, hovertext=d_text,
41
+ marker={"color": d_color, "colorscale": "Cividis", "colorbar": {"title": "Total"}})])
42
+ d_fig.update_layout(yaxis=dict(range=[0, 1]))
43
+ return k_fig, d_fig, k_x
44
+
45
+
46
+ def create_detail(top_components):
47
+ models = os.listdir(os.path.join("results", SEASON["latest"], "details"))
48
+ model_dropdown = gr.Dropdown(choices=models, label="Select Model")
49
+
50
+ category_result = gr.State()
51
+ with gr.Row():
52
+ keypoint_dropdowns = [gr.Dropdown([], visible=False, label=f"Level{i + 1}") for i in range(DEEPEST)]
53
+ keypoint_plot = gr.Plot(label="Keypoint Acc")
54
+ difficulty_plot = gr.Plot(label="Difficulty Acc")
55
+
56
+ for i in range(DEEPEST):
57
+ keypoint_dropdown = keypoint_dropdowns[i]
58
+
59
+ def keypoint_dropdown_func(x, *args):
60
+ keypoints = DELIMITER.join(args)
61
+ columns = [k for k in x if k.startswith(keypoints) and k.count(DELIMITER) == len(args)]
62
+ sub = True
63
+ if not columns:
64
+ columns = [keypoints]
65
+ sub = False
66
+ k_fig, d_fig, choices = build_plot(x, columns)
67
+ updates = list(args) + [gr.update(choices=choices, visible=sub)] + [
68
+ gr.update(choices=[], visible=False)] * (DEEPEST - len(args) - 1)
69
+ return gr.update(value=k_fig), gr.update(value=d_fig), *updates
70
+
71
+ keypoint_dropdown.input(keypoint_dropdown_func, [category_result, *keypoint_dropdowns[:i + 1]],
72
+ [keypoint_plot, difficulty_plot, *keypoint_dropdowns])
73
+
74
+ def model_dropdown_func(x):
75
+ dir = os.path.join("results", SEASON["latest"], "details", x)
76
+ new_category_result = json.load(open(os.path.join(dir, "category_result-all.json"), encoding="utf-8"))
77
+ columns = sorted([k for k in new_category_result if k.count(DELIMITER) == 0],
78
+ key=lambda c: new_category_result[c]['all'], reverse=True)
79
+ k_fig, d_fig, choices = build_plot(new_category_result, columns)
80
+ return new_category_result, gr.update(value=k_fig), gr.update(value=d_fig), gr.update(choices=choices,
81
+ visible=True), *[
82
+ gr.update(value=None, visible=False) for _ in range(DEEPEST - 1)]
83
+
84
+ model_dropdown.change(model_dropdown_func, model_dropdown, [category_result, keypoint_plot, difficulty_plot,
85
+ *keypoint_dropdowns])
components/result.py ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import os
3
+
4
+ import gradio as gr
5
+ import pandas as pd
6
+
7
+ from assets.constant import DELIMITER
8
+ from assets.content import KEYPOINT_TEXT
9
+ from assets.path import SEASON
10
+
11
+
12
+ def build_question(season):
13
+ dir = os.path.join("results", SEASON[season], "details")
14
+ rows = []
15
+ for model in os.listdir(dir):
16
+ acc_result = json.load(open(os.path.join(dir, model, "acc_result.json"), encoding="utf-8"))
17
+ rows.append(
18
+ [model, round(acc_result['acc'], 4), round(acc_result['human_acc'], 4), round(acc_result['wrong_value'], 4),
19
+ acc_result['hit'],acc_result['wrong_hit'], acc_result['wrong_total'], acc_result['total']])
20
+ return pd.DataFrame(rows, columns=["Model", "Acc", "Human Acc", "Wrong Value", "Hit", "Wrong Hit", "Wrong Total",
21
+ "Total"]).sort_values("Acc", ascending=False)
22
+
23
+
24
+ def build_keypoint(season):
25
+ dir = os.path.join("results", SEASON[season], "details")
26
+ rows, columns, final_columns = [], [], []
27
+ for model in os.listdir(dir):
28
+ category_result = json.load(open(os.path.join(dir, model, "category_result-all.json"), encoding="utf-8"))
29
+ if not columns:
30
+ columns = sorted([k for k in category_result if not k.count(DELIMITER)],
31
+ key=lambda x: category_result[x]['all'], reverse=True)
32
+ final_columns = [f"{c}:{category_result.get(c).get('all')}" for c in columns]
33
+ rows.append([model] + [round(category_result.get(c).get("acc"), 4) for c in columns])
34
+ return pd.DataFrame(rows, columns=["Model"] + final_columns).sort_values(final_columns[0], ascending=False)
35
+
36
+
37
+ def build_difficulty(season):
38
+ dir = os.path.join("results", SEASON[season], "details")
39
+ rows, columns, final_columns = [], [], []
40
+ for model in os.listdir(dir):
41
+ difficulty_result = json.load(open(os.path.join(dir, model, "difficulty_result.json"), encoding="utf-8"))
42
+ if not columns:
43
+ columns = sorted(difficulty_result, reverse=True)
44
+ final_columns = [f"{c}:{difficulty_result.get(c).get('all')}" for c in columns]
45
+ rows.append([model] + [round(difficulty_result.get(c).get("acc"), 4) for c in columns])
46
+
47
+ return pd.DataFrame(rows, columns=["Model"] + final_columns).sort_values(final_columns[0], ascending=False)
48
+
49
+
50
+ def create_result(top_components):
51
+ with gr.Tab("Question Level"):
52
+ question_df = gr.DataFrame(build_question("latest"), label="Acc Result")
53
+ with gr.Tab("Keypoint Level"):
54
+ gr.Markdown(KEYPOINT_TEXT)
55
+ keypoint_df = gr.DataFrame(build_keypoint("latest"), label="Keypoint Level1 Result")
56
+ with gr.Tab("Difficulty Level"):
57
+ difficulty_df = gr.DataFrame(build_difficulty("latest"), label="Difficulty Result")
components/submit.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ import gradio as gr
4
+
5
+ from assets.content import SUBMIT_TEXT, TEST_SCRIPT_TEXT, TEST_SET_TEXT
6
+ from assets.path import SEASON
7
+
8
+
9
+ def create_submit():
10
+ test_box = gr.Markdown(value=TEST_SET_TEXT, scale=4)
11
+ test_file = gr.File(value=os.path.join("results", SEASON["latest"], "test_dataset.json"),
12
+ label="Test Set", scale=1)
13
+ script_box = gr.Markdown(value=TEST_SCRIPT_TEXT, scale=4)
14
+ script_button = gr.File(value=os.path.join("assets/evaluation.py"), label="Test Set", scale=1)
15
+ gr.Markdown(SUBMIT_TEXT)
components/top.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ from assets.content import TITLE, INTRODUCTION_TEXT
4
+ from assets.path import SEASON
5
+
6
+
7
+ def create_top():
8
+ gr.HTML(TITLE)
9
+ gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
10
+ with gr.Row():
11
+ season_dropdown = gr.Dropdown(choices=list(SEASON), value="latest", label="Season Select")
12
+ language_dropdown = gr.Dropdown(choices=['en', 'zh'], value='en', label='Language Select')
13
+ return {"season": season_dropdown, "language": language_dropdown}
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ plotly
2
+ pandas
results/202309/details/Atom-7B/acc_result.json ADDED
The diff for this file is too large to render. See raw diff
 
results/202309/details/Atom-7B/category_result-all.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 1329, "all": 3862, "difficulty": {"3": {"hit": 227, "all": 546, "acc": 0.4157509157509158}, "4": {"hit": 439, "all": 1078, "acc": 0.4072356215213358}, "5": {"hit": 351, "all": 1102, "acc": 0.31851179673321234}, "6": {"hit": 195, "all": 647, "acc": 0.30139103554868624}, "7": {"hit": 115, "all": 485, "acc": 0.23711340206185566}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.3441222164681512}, "判断推理": {"hit": 115, "all": 350, "difficulty": {"3": {"hit": 20, "all": 41, "acc": 0.4878048780487805}, "4": {"hit": 31, "all": 77, "acc": 0.4025974025974026}, "5": {"hit": 52, "all": 155, "acc": 0.33548387096774196}, "6": {"hit": 10, "all": 55, "acc": 0.18181818181818182}, "7": {"hit": 2, "all": 22, "acc": 0.09090909090909091}}, "human_acc": 67.0821947146088, "acc": 0.32857142857142857}, "判断推理|类比推理": {"hit": 29, "all": 96, "difficulty": {"3": {"hit": 9, "all": 12, "acc": 0.75}, "4": {"hit": 5, "all": 20, "acc": 0.25}, "5": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "6": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.3020833333333333}, "判断推理|类比推理|逻辑关系": {"hit": 18, "all": 52, "difficulty": {"3": {"hit": 7, "all": 10, "acc": 0.7}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.34615384615384615}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.45454545454545453}, "判断推理|类比推理|语义关系": {"hit": 7, "all": 30, "difficulty": {"5": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.23333333333333334}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.3}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.3}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.1}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 69, "all": 226, "difficulty": {"5": {"hit": 29, "all": 87, "acc": 0.3333333333333333}, "7": {"hit": 10, "all": 48, "acc": 0.20833333333333334}, "6": {"hit": 16, "all": 50, "acc": 0.32}, "4": {"hit": 14, "all": 38, "acc": 0.3684210526315789}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 46.34274676514825, "acc": 0.3053097345132743}, "常识判断|人文常识": {"hit": 14, "all": 42, "difficulty": {"5": {"hit": 8, "all": 20, "acc": 0.4}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 8, "acc": 0.375}}, "human_acc": 53.66391099976427, "acc": 0.3333333333333333}, "常识判断|人文常识|文化常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.2}, "常识判断|人文常识|文学常识": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.5}, "常识判断|人文常识|中国历史": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.2}, "常识判断|科技常识": {"hit": 15, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.3}, "常识判断|科技常识|科技理论与成就": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.2}, "常识判断|地理国情": {"hit": 3, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.14285714285714285}, "常识判断|地理国情|自然常识": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.0}, "常识判断|科技常识|化学常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 49.661417476859995, "acc": 0.2}, "常识判断|科技常识|生物常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.6}, "常识判断|地理国情|国情社情": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.3}, "常识判断|法律常识": {"hit": 29, "all": 80, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 42.31029945337126, "acc": 0.3625}, "常识判断|法律常识|刑法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.76204423705999, "acc": 0.2}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.3}, "常识判断|法律常识|民法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.35864705227, "acc": 0.3}, "常识判断|人文常识|世界历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 53.975357187650005, "acc": 0.4}, "常识判断|法律常识|宪法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.4}, "常识判断|经济常识": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.640840877308335, "acc": 0.16666666666666666}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.16899929108, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.3}, "数量关系": {"hit": 131, "all": 485, "difficulty": {"5": {"hit": 30, "all": 116, "acc": 0.25862068965517243}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 45, "all": 132, "acc": 0.3409090909090909}, "4": {"hit": 25, "all": 68, "acc": 0.36764705882352944}, "7": {"hit": 29, "all": 160, "acc": 0.18125}}, "human_acc": 40.061365720053836, "acc": 0.27010309278350514}, "数量关系|数学运算": {"hit": 131, "all": 485, "difficulty": {"5": {"hit": 30, "all": 116, "acc": 0.25862068965517243}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 45, "all": 132, "acc": 0.3409090909090909}, "4": {"hit": 25, "all": 68, "acc": 0.36764705882352944}, "7": {"hit": 29, "all": 160, "acc": 0.18125}}, "human_acc": 40.061365720053836, "acc": 0.27010309278350514}, "数量关系|数学运算|几何问题": {"hit": 8, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.3333333333333333}, "数量关系|数学运算|几何问题|平面几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.25}, "数量关系|数学运算|最值问题": {"hit": 11, "all": 65, "difficulty": {"5": {"hit": 1, "all": 16, "acc": 0.0625}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.16923076923076924}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 7, "all": 34, "difficulty": {"5": {"hit": 1, "all": 10, "acc": 0.1}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.20588235294117646}, "常识判断|法律常识|行政法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.4}, "常识判断|法律常识|其他法律法规": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.4}, "常识判断|政治常识": {"hit": 6, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 37.802677258790474, "acc": 0.2857142857142857}, "常识判断|政治常识|时政": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.4}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.2}, "数量关系|数学运算|周期问题": {"hit": 9, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 38.245969273603045, "acc": 0.2727272727272727}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.4}, "数量关系|数学运算|排列组合问题": {"hit": 19, "all": 74, "difficulty": {"6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 7, "all": 14, "acc": 0.5}, "7": {"hit": 5, "all": 36, "acc": 0.1388888888888889}}, "human_acc": 33.405759431517595, "acc": 0.25675675675675674}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 7, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.5}, "言语理解与表达": {"hit": 877, "all": 2295, "difficulty": {"5": {"hit": 195, "all": 587, "acc": 0.3321976149914821}, "4": {"hit": 314, "all": 707, "acc": 0.44413012729844414}, "3": {"hit": 187, "all": 455, "acc": 0.41098901098901097}, "6": {"hit": 111, "all": 327, "acc": 0.3394495412844037}, "7": {"hit": 70, "all": 219, "acc": 0.319634703196347}}, "human_acc": 66.81637952144999, "acc": 0.3821350762527233}, "言语理解与表达|逻辑填空": {"hit": 658, "all": 1841, "difficulty": {"5": {"hit": 156, "all": 498, "acc": 0.3132530120481928}, "4": {"hit": 210, "all": 513, "acc": 0.4093567251461988}, "3": {"hit": 150, "all": 384, "acc": 0.390625}, "6": {"hit": 88, "all": 277, "acc": 0.3176895306859206}, "7": {"hit": 54, "all": 169, "acc": 0.31952662721893493}}, "human_acc": 66.44656371118516, "acc": 0.3574144486692015}, "言语理解与表达|逻辑填空|实词填空": {"hit": 50, "all": 151, "difficulty": {"5": {"hit": 16, "all": 49, "acc": 0.32653061224489793}, "4": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 10, "all": 26, "acc": 0.38461538461538464}, "6": {"hit": 8, "all": 24, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.33112582781456956}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 225, "all": 622, "difficulty": {"5": {"hit": 50, "all": 163, "acc": 0.3067484662576687}, "4": {"hit": 73, "all": 172, "acc": 0.42441860465116277}, "3": {"hit": 54, "all": 131, "acc": 0.4122137404580153}, "7": {"hit": 22, "all": 60, "acc": 0.36666666666666664}, "6": {"hit": 26, "all": 96, "acc": 0.2708333333333333}}, "human_acc": 66.76874610652267, "acc": 0.3617363344051447}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 56, "all": 143, "difficulty": {"5": {"hit": 16, "all": 43, "acc": 0.37209302325581395}, "4": {"hit": 20, "all": 42, "acc": 0.47619047619047616}, "3": {"hit": 10, "all": 25, "acc": 0.4}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 66.64745600073147, "acc": 0.3916083916083916}, "数量关系|数学运算|几何问题|立体几何": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.4166666666666667}, "数量关系|数学运算|和差倍比问题": {"hit": 4, "all": 20, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.2}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 273, "all": 771, "difficulty": {"5": {"hit": 65, "all": 201, "acc": 0.32338308457711445}, "4": {"hit": 87, "all": 217, "acc": 0.4009216589861751}, "3": {"hit": 61, "all": 167, "acc": 0.3652694610778443}, "6": {"hit": 41, "all": 116, "acc": 0.35344827586206895}, "7": {"hit": 19, "all": 70, "acc": 0.2714285714285714}}, "human_acc": 66.4145264015949, "acc": 0.3540856031128405}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 54, "all": 165, "difficulty": {"5": {"hit": 13, "all": 45, "acc": 0.28888888888888886}, "4": {"hit": 15, "all": 44, "acc": 0.3409090909090909}, "7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "6": {"hit": 10, "all": 27, "acc": 0.37037037037037035}, "3": {"hit": 13, "all": 32, "acc": 0.40625}}, "human_acc": 65.38103981607519, "acc": 0.32727272727272727}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.1}, "言语理解与表达|逻辑填空|成语填空": {"hit": 56, "all": 145, "difficulty": {"4": {"hit": 17, "all": 43, "acc": 0.3953488372093023}, "5": {"hit": 13, "all": 39, "acc": 0.3333333333333333}, "3": {"hit": 14, "all": 31, "acc": 0.45161290322580644}, "6": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 69.23037595903519, "acc": 0.38620689655172413}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 7, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 7, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.2692307692307692}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 44, "all": 135, "difficulty": {"4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 13, "all": 36, "acc": 0.3611111111111111}, "5": {"hit": 9, "all": 32, "acc": 0.28125}, "6": {"hit": 4, "all": 19, "acc": 0.21052631578947367}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.32592592592592595}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 74, "all": 203, "difficulty": {"4": {"hit": 23, "all": 56, "acc": 0.4107142857142857}, "5": {"hit": 16, "all": 49, "acc": 0.32653061224489793}, "3": {"hit": 21, "all": 51, "acc": 0.4117647058823529}, "7": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "6": {"hit": 6, "all": 25, "acc": 0.24}}, "human_acc": 67.67567808645465, "acc": 0.3645320197044335}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 79, "all": 212, "difficulty": {"4": {"hit": 26, "all": 63, "acc": 0.4126984126984127}, "5": {"hit": 16, "all": 43, "acc": 0.37209302325581395}, "3": {"hit": 18, "all": 51, "acc": 0.35294117647058826}, "6": {"hit": 12, "all": 32, "acc": 0.375}, "7": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 67.16383399377828, "acc": 0.37264150943396224}, "常识判断|法律常识|民事诉讼法": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.3}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.1}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 44, "all": 137, "difficulty": {"5": {"hit": 9, "all": 36, "acc": 0.25}, "3": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "4": {"hit": 15, "all": 35, "acc": 0.42857142857142855}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.32116788321167883}, "常识判断|法律常识|劳动法": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.5}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 2, "all": 11, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.4}, "数量关系|数学运算|容斥原理问题": {"hit": 6, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 16, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.3902439024390244}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 59, "all": 174, "difficulty": {"5": {"hit": 31, "all": 78, "acc": 0.3974358974358974}, "4": {"hit": 17, "all": 40, "acc": 0.425}, "3": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "6": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.3390804597701149}, "判断推理|逻辑判断|翻译推理": {"hit": 7, "all": 40, "difficulty": {"5": {"hit": 1, "all": 18, "acc": 0.05555555555555555}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.175}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.0}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 81.05276778267998, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 51, "all": 151, "difficulty": {"4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "5": {"hit": 13, "all": 41, "acc": 0.3170731707317073}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "3": {"hit": 8, "all": 29, "acc": 0.27586206896551724}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}}, "human_acc": 64.30090962542516, "acc": 0.33774834437086093}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 22, "all": 65, "difficulty": {"4": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 10, "all": 21, "acc": 0.47619047619047616}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "7": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.3384615384615385}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 51, "all": 139, "difficulty": {"5": {"hit": 9, "all": 35, "acc": 0.2571428571428571}, "4": {"hit": 15, "all": 39, "acc": 0.38461538461538464}, "7": {"hit": 5, "all": 10, "acc": 0.5}, "6": {"hit": 7, "all": 28, "acc": 0.25}, "3": {"hit": 15, "all": 27, "acc": 0.5555555555555556}}, "human_acc": 66.39573058612521, "acc": 0.3669064748201439}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.67128810771, "acc": 0.2}, "判断推理|定义判断": {"hit": 27, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 11, "all": 38, "acc": 0.2894736842105263}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 6, "all": 16, "acc": 0.375}}, "human_acc": 74.80628203606001, "acc": 0.3375}, "判断推理|定义判断|单定义": {"hit": 21, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "5": {"hit": 8, "all": 33, "acc": 0.24242424242424243}, "3": {"hit": 6, "all": 16, "acc": 0.375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.3}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.2}, "数量关系|数学运算|概率问题": {"hit": 9, "all": 41, "difficulty": {"7": {"hit": 0, "all": 17, "acc": 0.0}, "5": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}}, "human_acc": 33.07907322403902, "acc": 0.21951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 4, "all": 21, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.19047619047619047}, "数量关系|数学运算|行程问题|普通行程": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.23076923076923078}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.5}, "数量关系|数学运算|行程问题|平均速度": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.2}, "判断推理|定义判断|单定义|原因结果": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.2}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.1}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 6, "all": 11, "difficulty": {"6": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 40.27857733925454, "acc": 0.5454545454545454}, "判断推理|定义判断|单定义|主客体": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 45, "all": 108, "difficulty": {"5": {"hit": 14, "all": 40, "acc": 0.35}, "4": {"hit": 14, "all": 30, "acc": 0.4666666666666667}, "6": {"hit": 7, "all": 16, "acc": 0.4375}, "3": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.4166666666666667}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 54, "all": 152, "difficulty": {"5": {"hit": 12, "all": 46, "acc": 0.2608695652173913}, "4": {"hit": 20, "all": 42, "acc": 0.47619047619047616}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 65.94677786230925, "acc": 0.35526315789473684}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.2727272727272727}, "言语理解与表达|阅读理解": {"hit": 183, "all": 359, "difficulty": {"4": {"hit": 92, "all": 154, "acc": 0.5974025974025974}, "5": {"hit": 30, "all": 69, "acc": 0.43478260869565216}, "6": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "3": {"hit": 33, "all": 54, "acc": 0.6111111111111112}, "7": {"hit": 14, "all": 43, "acc": 0.32558139534883723}}, "human_acc": 68.55487799855013, "acc": 0.5097493036211699}, "言语理解与表达|阅读理解|词句理解题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.6}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.0}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.49700996277002, "acc": 0.3}, "判断推理|定义判断|单定义|拆词": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.6}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 22, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 13, "all": 28, "acc": 0.4642857142857143}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.3333333333333333}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.36363636363636365}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.2}, "判断推理|定义判断|单定义|方式目的": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题": {"hit": 164, "all": 319, "difficulty": {"5": {"hit": 22, "all": 58, "acc": 0.3793103448275862}, "6": {"hit": 12, "all": 33, "acc": 0.36363636363636365}, "3": {"hit": 30, "all": 49, "acc": 0.6122448979591837}, "4": {"hit": 87, "all": 140, "acc": 0.6214285714285714}, "7": {"hit": 13, "all": 39, "acc": 0.3333333333333333}}, "human_acc": 68.63568244351346, "acc": 0.5141065830721003}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 26, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 13, "all": 23, "acc": 0.5652173913043478}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.5416666666666666}, "言语理解与表达|阅读理解|细节判断题": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.7}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.79458859062, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 10, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.4}, "判断推理|逻辑判断|加强题型": {"hit": 20, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 13, "all": 26, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.4166666666666667}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.5}, "言语理解与表达|语句表达": {"hit": 36, "all": 95, "difficulty": {"5": {"hit": 9, "all": 20, "acc": 0.45}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 12, "all": 40, "acc": 0.3}, "3": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 9, "all": 11, "acc": 0.8181818181818182}}, "human_acc": 67.41332639953578, "acc": 0.37894736842105264}, "言语理解与表达|语句表达|语句填空题": {"hit": 9, "all": 30, "difficulty": {"5": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 55.56949742254332, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.3}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.3}, "判断推理|定义判断|单定义|大前提": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.2}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 17, "all": 30, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.5666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 18, "all": 38, "difficulty": {"3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.47368421052631576}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 22, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 12, "all": 19, "acc": 0.631578947368421}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.55}, "言语理解与表达|语句表达|接语选择题": {"hit": 8, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.8}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 9, "all": 9, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 17, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}}, "human_acc": 63.04056480034193, "acc": 0.5483870967741935}, "判断推理|逻辑判断|原因解释": {"hit": 9, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.9}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 10, "all": 28, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.35714285714285715}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.3}, "判断推理|逻辑判断|组合排列-材料": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 16, "all": 29, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 10, "all": 15, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.5517241379310345}, "言语理解与表达|语句表达|语句排序题": {"hit": 19, "all": 55, "difficulty": {"4": {"hit": 8, "all": 29, "acc": 0.27586206896551724}, "3": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 5, "all": 5, "acc": 1.0}}, "human_acc": 74.78757039704001, "acc": 0.34545454545454546}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 3, "all": 12, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 72.2333906347, "acc": 0.25}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 13, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 9, "all": 12, "acc": 0.75}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.5909090909090909}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.6}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 71.83643557879998, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.1}, "言语理解与表达|阅读理解|标题填入题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.4}, "资料分析": {"hit": 134, "all": 496, "difficulty": {"6": {"hit": 13, "all": 82, "acc": 0.15853658536585366}, "3": {"hit": 18, "all": 37, "acc": 0.4864864864864865}, "5": {"hit": 44, "all": 155, "acc": 0.2838709677419355}, "4": {"hit": 53, "all": 184, "acc": 0.28804347826086957}, "7": {"hit": 4, "all": 34, "acc": 0.11764705882352941}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.2701612903225806}, "资料分析|基期与现期": {"hit": 13, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 71.02920549983685, "acc": 0.22807017543859648}, "资料分析|基期与现期|基期计算": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 8, "acc": 0.125}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.1}, "资料分析|文字资料": {"hit": 64, "all": 237, "difficulty": {"6": {"hit": 6, "all": 39, "acc": 0.15384615384615385}, "3": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "5": {"hit": 21, "all": 75, "acc": 0.28}, "4": {"hit": 26, "all": 88, "acc": 0.29545454545454547}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.270042194092827}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.6}, "资料分析|简单计算": {"hit": 9, "all": 30, "difficulty": {"3": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3}, "资料分析|简单计算|直接找数": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.3}, "资料分析|简单计算|简单加减计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.4}, "资料分析|增长率": {"hit": 6, "all": 32, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.1875}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 12, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "5": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.375}, "资料分析|比重问题|现期比重": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.5}, "资料分析|增长量": {"hit": 9, "all": 26, "difficulty": {"4": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.34615384615384615}, "资料分析|增长量|增长量计算": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.3}, "资料分析|平均数问题": {"hit": 13, "all": 40, "difficulty": {"4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 64.02933098769998, "acc": 0.325}, "资料分析|平均数问题|现期平均数": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.6}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 6, "all": 31, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.1935483870967742}, "资料分析|倍数与比值相关|比值计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.1}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.1}, "资料分析|基期与现期|现期计算": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.1}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.4}, "资料分析|增长率|混合增长率": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.69437779192001, "acc": 0.4}, "资料分析|增长量|增长量比较": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.3}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.1}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.2}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.82193192074, "acc": 0.4}, "资料分析|平均数问题|平均数的增长量": {"hit": 2, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.2857142857142857}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}}
results/202309/details/Atom-7B/difficulty_result.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"acc": 0.334841628959276, "hit": 592, "all": 1768}, "3": {"hit": 81, "all": 193, "acc": 0.41968911917098445}, "4": {"hit": 184, "all": 470, "acc": 0.39148936170212767}, "5": {"hit": 185, "all": 561, "acc": 0.32976827094474154}, "6": {"hit": 92, "all": 306, "acc": 0.3006535947712418}, "7": {"hit": 49, "all": 236, "acc": 0.2076271186440678}, "2": {"hit": 1, "all": 2, "acc": 0.5}}
results/202309/details/Baichuan-13B/acc_result.json ADDED
The diff for this file is too large to render. See raw diff
 
results/202309/details/Baichuan-13B/category_result-all.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 1737, "all": 3862, "difficulty": {"3": {"hit": 300, "all": 546, "acc": 0.5494505494505495}, "4": {"hit": 559, "all": 1078, "acc": 0.5185528756957328}, "5": {"hit": 474, "all": 1102, "acc": 0.4301270417422868}, "6": {"hit": 268, "all": 647, "acc": 0.4142194744976816}, "7": {"hit": 132, "all": 485, "acc": 0.2721649484536082}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.4497669601242879}, "判断推理": {"hit": 122, "all": 350, "difficulty": {"3": {"hit": 11, "all": 41, "acc": 0.2682926829268293}, "4": {"hit": 39, "all": 77, "acc": 0.5064935064935064}, "5": {"hit": 51, "all": 155, "acc": 0.32903225806451614}, "6": {"hit": 18, "all": 55, "acc": 0.32727272727272727}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}}, "human_acc": 67.0821947146088, "acc": 0.3485714285714286}, "判断推理|类比推理": {"hit": 27, "all": 96, "difficulty": {"3": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 8, "all": 20, "acc": 0.4}, "5": {"hit": 6, "all": 39, "acc": 0.15384615384615385}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.82436428905626, "acc": 0.28125}, "判断推理|类比推理|逻辑关系": {"hit": 17, "all": 52, "difficulty": {"3": {"hit": 2, "all": 10, "acc": 0.2}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 2, "all": 15, "acc": 0.13333333333333333}, "6": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 66.80522117180384, "acc": 0.3269230769230769}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 8, "all": 30, "difficulty": {"5": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.26666666666666666}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.2}, "判断推理|类比推理|拆分思维": {"hit": 2, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.14285714285714285}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 57.19460108329999, "acc": 0.4}, "未分类": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 6, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.5454545454545454}, "常识判断": {"hit": 106, "all": 226, "difficulty": {"5": {"hit": 38, "all": 87, "acc": 0.4367816091954023}, "7": {"hit": 17, "all": 48, "acc": 0.3541666666666667}, "6": {"hit": 24, "all": 50, "acc": 0.48}, "4": {"hit": 25, "all": 38, "acc": 0.6578947368421053}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.4690265486725664}, "常识判断|人文常识": {"hit": 21, "all": 42, "difficulty": {"5": {"hit": 11, "all": 20, "acc": 0.55}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 6, "all": 12, "acc": 0.5}, "4": {"hit": 4, "all": 8, "acc": 0.5}}, "human_acc": 53.66391099976427, "acc": 0.5}, "常识判断|人文常识|文化常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.5}, "常识判断|人文常识|文学常识": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.4}, "常识判断|人文常识|中国历史": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.5}, "常识判断|科技常识": {"hit": 25, "all": 50, "difficulty": {"7": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}}, "human_acc": 51.632498263487996, "acc": 0.5}, "常识判断|科技常识|科技理论与成就": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.7}, "常识判断|地理国情": {"hit": 8, "all": 21, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.38095238095238093}, "常识判断|地理国情|自然常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.2}, "常识判断|科技常识|化学常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 49.661417476859995, "acc": 0.1}, "常识判断|科技常识|生物常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.7}, "常识判断|地理国情|国情社情": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.5}, "常识判断|法律常识": {"hit": 39, "all": 80, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 13, "all": 18, "acc": 0.7222222222222222}, "7": {"hit": 4, "all": 16, "acc": 0.25}, "4": {"hit": 7, "all": 8, "acc": 0.875}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.4875}, "常识判断|法律常识|刑法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.3}, "常识判断|科技常识|物理常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.6}, "常识判断|科技常识|生活常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.4}, "常识判断|法律常识|民法": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.6}, "常识判断|人文常识|世界历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.6}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 6, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.5}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.1}, "数量关系": {"hit": 149, "all": 485, "difficulty": {"5": {"hit": 32, "all": 116, "acc": 0.27586206896551724}, "3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 52, "all": 132, "acc": 0.3939393939393939}, "4": {"hit": 34, "all": 68, "acc": 0.5}, "7": {"hit": 25, "all": 160, "acc": 0.15625}}, "human_acc": 40.061365720053836, "acc": 0.30721649484536084}, "数量关系|数学运算": {"hit": 149, "all": 485, "difficulty": {"5": {"hit": 32, "all": 116, "acc": 0.27586206896551724}, "3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 52, "all": 132, "acc": 0.3939393939393939}, "4": {"hit": 34, "all": 68, "acc": 0.5}, "7": {"hit": 25, "all": 160, "acc": 0.15625}}, "human_acc": 40.061365720053836, "acc": 0.30721649484536084}, "数量关系|数学运算|几何问题": {"hit": 9, "all": 24, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.375}, "数量关系|数学运算|几何问题|平面几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.3333333333333333}, "数量关系|数学运算|最值问题": {"hit": 19, "all": 65, "difficulty": {"5": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.2923076923076923}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 14, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.4117647058823529}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.7}, "常识判断|政治常识": {"hit": 7, "all": 21, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 37.802677258790474, "acc": 0.3333333333333333}, "常识判断|政治常识|时政": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.4}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 13, "all": 33, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.3939393939393939}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 5, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 35.81940208507692, "acc": 0.38461538461538464}, "常识判断|法律常识|经济法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.3}, "数量关系|数学运算|排列组合问题": {"hit": 14, "all": 74, "difficulty": {"6": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "4": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "7": {"hit": 3, "all": 36, "acc": 0.08333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.1891891891891892}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 1206, "all": 2295, "difficulty": {"5": {"hit": 291, "all": 587, "acc": 0.4957410562180579}, "4": {"hit": 410, "all": 707, "acc": 0.57991513437058}, "3": {"hit": 271, "all": 455, "acc": 0.5956043956043956}, "6": {"hit": 151, "all": 327, "acc": 0.4617737003058104}, "7": {"hit": 83, "all": 219, "acc": 0.3789954337899543}}, "human_acc": 66.81637952144999, "acc": 0.5254901960784314}, "言语理解与表达|逻辑填空": {"hit": 967, "all": 1841, "difficulty": {"5": {"hit": 246, "all": 498, "acc": 0.4939759036144578}, "4": {"hit": 302, "all": 513, "acc": 0.5886939571150097}, "3": {"hit": 220, "all": 384, "acc": 0.5729166666666666}, "6": {"hit": 125, "all": 277, "acc": 0.45126353790613716}, "7": {"hit": 74, "all": 169, "acc": 0.4378698224852071}}, "human_acc": 66.44656371118516, "acc": 0.5252580119500272}, "言语理解与表达|逻辑填空|实词填空": {"hit": 78, "all": 151, "difficulty": {"5": {"hit": 24, "all": 49, "acc": 0.4897959183673469}, "4": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 20, "all": 26, "acc": 0.7692307692307693}, "6": {"hit": 13, "all": 24, "acc": 0.5416666666666666}, "7": {"hit": 5, "all": 13, "acc": 0.38461538461538464}}, "human_acc": 63.11290800843907, "acc": 0.5165562913907285}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 331, "all": 622, "difficulty": {"5": {"hit": 76, "all": 163, "acc": 0.4662576687116564}, "4": {"hit": 108, "all": 172, "acc": 0.627906976744186}, "3": {"hit": 76, "all": 131, "acc": 0.5801526717557252}, "7": {"hit": 28, "all": 60, "acc": 0.4666666666666667}, "6": {"hit": 43, "all": 96, "acc": 0.4479166666666667}}, "human_acc": 66.76874610652267, "acc": 0.5321543408360129}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 79, "all": 143, "difficulty": {"5": {"hit": 23, "all": 43, "acc": 0.5348837209302325}, "4": {"hit": 25, "all": 42, "acc": 0.5952380952380952}, "3": {"hit": 15, "all": 25, "acc": 0.6}, "6": {"hit": 10, "all": 19, "acc": 0.5263157894736842}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 66.64745600073147, "acc": 0.5524475524475524}, "数量关系|数学运算|几何问题|立体几何": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.4166666666666667}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 398, "all": 771, "difficulty": {"5": {"hit": 103, "all": 201, "acc": 0.5124378109452736}, "4": {"hit": 120, "all": 217, "acc": 0.5529953917050692}, "3": {"hit": 94, "all": 167, "acc": 0.562874251497006}, "6": {"hit": 52, "all": 116, "acc": 0.4482758620689655}, "7": {"hit": 29, "all": 70, "acc": 0.4142857142857143}}, "human_acc": 66.4145264015949, "acc": 0.51621271076524}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 93, "all": 165, "difficulty": {"5": {"hit": 28, "all": 45, "acc": 0.6222222222222222}, "4": {"hit": 26, "all": 44, "acc": 0.5909090909090909}, "7": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "6": {"hit": 13, "all": 27, "acc": 0.48148148148148145}, "3": {"hit": 19, "all": 32, "acc": 0.59375}}, "human_acc": 65.38103981607519, "acc": 0.5636363636363636}, "数量关��|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 83, "all": 145, "difficulty": {"4": {"hit": 30, "all": 43, "acc": 0.6976744186046512}, "5": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "3": {"hit": 17, "all": 31, "acc": 0.5483870967741935}, "6": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 69.23037595903519, "acc": 0.5724137931034483}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 7, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.2692307692307692}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 6, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 65, "all": 135, "difficulty": {"4": {"hit": 21, "all": 38, "acc": 0.5526315789473685}, "3": {"hit": 20, "all": 36, "acc": 0.5555555555555556}, "5": {"hit": 11, "all": 32, "acc": 0.34375}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 67.2510308321489, "acc": 0.48148148148148145}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 105, "all": 203, "difficulty": {"4": {"hit": 32, "all": 56, "acc": 0.5714285714285714}, "5": {"hit": 24, "all": 49, "acc": 0.4897959183673469}, "3": {"hit": 30, "all": 51, "acc": 0.5882352941176471}, "7": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "6": {"hit": 10, "all": 25, "acc": 0.4}}, "human_acc": 67.67567808645465, "acc": 0.5172413793103449}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 116, "all": 212, "difficulty": {"4": {"hit": 39, "all": 63, "acc": 0.6190476190476191}, "5": {"hit": 24, "all": 43, "acc": 0.5581395348837209}, "3": {"hit": 29, "all": 51, "acc": 0.5686274509803921}, "6": {"hit": 16, "all": 32, "acc": 0.5}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.5471698113207547}, "常识判断|法律常识|民事诉讼法": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 37.81514019971, "acc": 0.6}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.2}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.1}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 73, "all": 137, "difficulty": {"5": {"hit": 13, "all": 36, "acc": 0.3611111111111111}, "3": {"hit": 17, "all": 28, "acc": 0.6071428571428571}, "4": {"hit": 23, "all": 35, "acc": 0.6571428571428571}, "6": {"hit": 12, "all": 24, "acc": 0.5}, "7": {"hit": 8, "all": 14, "acc": 0.5714285714285714}}, "human_acc": 65.9299610739475, "acc": 0.5328467153284672}, "常识判断|法律常识|劳动法": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.7}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.2727272727272727}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 6, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 12, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.2926829268292683}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 58, "all": 174, "difficulty": {"5": {"hit": 26, "all": 78, "acc": 0.3333333333333333}, "4": {"hit": 21, "all": 40, "acc": 0.525}, "3": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "6": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "7": {"hit": 1, "all": 15, "acc": 0.06666666666666667}}, "human_acc": 63.67314146826951, "acc": 0.3333333333333333}, "判断推理|逻辑判断|翻译推理": {"hit": 12, "all": 40, "difficulty": {"5": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 67, "all": 151, "difficulty": {"4": {"hit": 18, "all": 42, "acc": 0.42857142857142855}, "5": {"hit": 16, "all": 41, "acc": 0.3902439024390244}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "3": {"hit": 15, "all": 29, "acc": 0.5172413793103449}, "7": {"hit": 9, "all": 17, "acc": 0.5294117647058824}}, "human_acc": 64.30090962542516, "acc": 0.44370860927152317}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 31, "all": 65, "difficulty": {"4": {"hit": 9, "all": 12, "acc": 0.75}, "6": {"hit": 12, "all": 21, "acc": 0.5714285714285714}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "7": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.47692307692307695}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.76722241438, "acc": 0.7}, "数量关系|数学运算|统筹规划问题": {"hit": 6, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.60918943125882, "acc": 0.35294117647058826}, "数量关系|数学运算|年龄问题": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 74, "all": 139, "difficulty": {"5": {"hit": 16, "all": 35, "acc": 0.45714285714285713}, "4": {"hit": 28, "all": 39, "acc": 0.717948717948718}, "7": {"hit": 5, "all": 10, "acc": 0.5}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "3": {"hit": 14, "all": 27, "acc": 0.5185185185185185}}, "human_acc": 66.39573058612521, "acc": 0.5323741007194245}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 37, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 19, "all": 38, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 7, "all": 16, "acc": 0.4375}}, "human_acc": 74.80628203606001, "acc": 0.4625}, "判断推理|定义判断|单定义": {"hit": 32, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "5": {"hit": 16, "all": 33, "acc": 0.48484848484848486}, "3": {"hit": 7, "all": 16, "acc": 0.4375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.45714285714285713}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.5}, "数量关系|数学运算|概率问题": {"hit": 10, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.24390243902439024}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 5, "all": 21, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.23809523809523808}, "数量关系|数学运算|行程问题|普通行程": {"hit": 7, "all": 13, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.23392225894615, "acc": 0.5384615384615384}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.4}, "判断推理|定义判断|单定义|原因结果": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.2}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.1}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 6, "all": 11, "difficulty": {"6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.5454545454545454}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 57, "all": 108, "difficulty": {"5": {"hit": 24, "all": 40, "acc": 0.6}, "4": {"hit": 16, "all": 30, "acc": 0.5333333333333333}, "6": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.5277777777777778}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 1, "all": 11, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 42.54616771271819, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.6}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 77, "all": 152, "difficulty": {"5": {"hit": 21, "all": 46, "acc": 0.45652173913043476}, "4": {"hit": 28, "all": 42, "acc": 0.6666666666666666}, "3": {"hit": 13, "all": 29, "acc": 0.4482758620689655}, "7": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 65.94677786230925, "acc": 0.506578947368421}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 48.761151281054545, "acc": 0.2727272727272727}, "言语理解与表达|阅读理解": {"hit": 209, "all": 359, "difficulty": {"4": {"hit": 98, "all": 154, "acc": 0.6363636363636364}, "5": {"hit": 36, "all": 69, "acc": 0.5217391304347826}, "6": {"hit": 23, "all": 39, "acc": 0.5897435897435898}, "3": {"hit": 46, "all": 54, "acc": 0.8518518518518519}, "7": {"hit": 6, "all": 43, "acc": 0.13953488372093023}}, "human_acc": 68.55487799855013, "acc": 0.5821727019498607}, "言语理解与表达|阅读理解|词句理解题": {"hit": 11, "all": 20, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.55}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.6}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.6}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.4}, "判断推理|逻辑判断|削弱题型": {"hit": 21, "all": 66, "difficulty": {"4": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "6": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 59.45006052624239, "acc": 0.3181818181818182}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 6, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 43.2203149, "acc": 0.5454545454545454}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.8}, "言语理解与表达|阅读理解|中心理解题": {"hit": 187, "all": 319, "difficulty": {"5": {"hit": 29, "all": 58, "acc": 0.5}, "6": {"hit": 21, "all": 33, "acc": 0.6363636363636364}, "3": {"hit": 42, "all": 49, "acc": 0.8571428571428571}, "4": {"hit": 89, "all": 140, "acc": 0.6357142857142857}, "7": {"hit": 6, "all": 39, "acc": 0.15384615384615385}}, "human_acc": 68.63568244351346, "acc": 0.5862068965517241}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 29, "all": 48, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 16, "all": 23, "acc": 0.6956521739130435}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 70.08123149284167, "acc": 0.6041666666666666}, "言语理解与表达|阅读理解|细节判断题": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.8}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 12, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 63.99639746408, "acc": 0.48}, "判断推理|逻辑判断|加强题型": {"hit": 20, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 11, "all": 26, "acc": 0.4230769230769231}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 62.50620258335624, "acc": 0.4166666666666667}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.6}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.3}, "言语理解与表达|语句表达": {"hit": 30, "all": 95, "difficulty": {"5": {"hit": 9, "all": 20, "acc": 0.45}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 10, "all": 40, "acc": 0.25}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}}, "human_acc": 67.41332639953578, "acc": 0.3157894736842105}, "言语理解与表达|语句表达|语句填空题": {"hit": 14, "all": 30, "difficulty": {"5": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.4666666666666667}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.1}, "判断推理|定义判断|单定义|大前提": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 21, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 25, "all": 38, "difficulty": {"3": {"hit": 9, "all": 9, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 72.18852298403947, "acc": 0.6578947368421053}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 25, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 15, "all": 19, "acc": 0.7894736842105263}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 66.77662401733, "acc": 0.625}, "言语理解与表达|语句表达|接语选择题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.6}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 11, "all": 22, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 17, "all": 31, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}}, "human_acc": 63.04056480034193, "acc": 0.5483870967741935}, "判断推理|逻辑判断|原因解释": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.5}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 16, "all": 28, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.5714285714285714}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.4}, "判断推理|逻辑判断|组合排列-材料": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.0}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 15, "all": 29, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.5172413793103449}, "言语理解与表达|语句表达|语句排序题": {"hit": 10, "all": 55, "difficulty": {"4": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "3": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.18181818181818182}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 2, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.16666666666666666}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 14, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.6363636363636364}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.9467117178, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.3}, "言语理解与表达|阅读理解|标题填入题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.3}, "资料分析": {"hit": 152, "all": 496, "difficulty": {"6": {"hit": 23, "all": 82, "acc": 0.2804878048780488}, "3": {"hit": 10, "all": 37, "acc": 0.2702702702702703}, "5": {"hit": 62, "all": 155, "acc": 0.4}, "4": {"hit": 49, "all": 184, "acc": 0.266304347826087}, "7": {"hit": 4, "all": 34, "acc": 0.11764705882352941}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.3064516129032258}, "资料分析|基期与现期": {"hit": 15, "all": 57, "difficulty": {"6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.2631578947368421}, "资料分析|基期与现期|基期计算": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.3}, "资料分析|文字资料": {"hit": 74, "all": 237, "difficulty": {"6": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 30, "all": 75, "acc": 0.4}, "4": {"hit": 24, "all": 88, "acc": 0.2727272727272727}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.31223628691983124}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 6, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.75}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 3, "all": 5, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.6}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.3}, "资料分析|简单计算": {"hit": 12, "all": 30, "difficulty": {"3": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.4}, "资料分析|简单计算|直接找数": {"hit": 8, "all": 10, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.8}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 8, "all": 32, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.25}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 9, "all": 32, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "5": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.28125}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 8, "all": 26, "difficulty": {"4": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 5, "all": 10, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.3076923076923077}, "资料分析|增长量|增长量计算": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.2}, "资料分析|平均数问题": {"hit": 15, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "5": {"hit": 5, "all": 8, "acc": 0.625}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.02933098769998, "acc": 0.375}, "资料分析|平均数问题|现期平均数": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.2}, "资料分析|增长率|间隔增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.11288202957999, "acc": 0.2}, "资料分析|倍数与比值相关": {"hit": 9, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 70.8255537505613, "acc": 0.2903225806451613}, "资料分析|倍数与比值相关|比值计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.4}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.1}, "资料分析|基期与现期|现期计算": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.3}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.4}, "资料分析|增长量|增长量比较": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.4}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.3}, "资料分析|简单计算|排序类": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.42931141622, "acc": 0.3}, "资料分析|平均数问题|平均数的增长率": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.4}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|��期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.2}, "资料分析|平均数问题|平均数的增长量": {"hit": 5, "all": 7, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 57.80231180570001, "acc": 0.7142857142857143}, "资料分析|基期与现期|现期追赶": {"hit": 2, "all": 7, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.2857142857142857}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}}
results/202309/details/Baichuan-13B/difficulty_result.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"acc": 0.41968325791855204, "hit": 742, "all": 1768}, "3": {"hit": 99, "all": 193, "acc": 0.5129533678756477}, "4": {"hit": 234, "all": 470, "acc": 0.4978723404255319}, "5": {"hit": 232, "all": 561, "acc": 0.41354723707664887}, "6": {"hit": 118, "all": 306, "acc": 0.38562091503267976}, "7": {"hit": 57, "all": 236, "acc": 0.24152542372881355}, "2": {"hit": 2, "all": 2, "acc": 1.0}}
results/202309/details/Baichuan-7B/acc_result.json ADDED
The diff for this file is too large to render. See raw diff
 
results/202309/details/Baichuan-7B/category_result-all.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 1468, "all": 3862, "difficulty": {"3": {"hit": 262, "all": 546, "acc": 0.47985347985347987}, "4": {"hit": 447, "all": 1078, "acc": 0.41465677179962895}, "5": {"hit": 406, "all": 1102, "acc": 0.3684210526315789}, "6": {"hit": 245, "all": 647, "acc": 0.3786707882534776}, "7": {"hit": 104, "all": 485, "acc": 0.21443298969072164}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.38011393060590365}, "判断推理": {"hit": 106, "all": 350, "difficulty": {"3": {"hit": 18, "all": 41, "acc": 0.43902439024390244}, "4": {"hit": 33, "all": 77, "acc": 0.42857142857142855}, "5": {"hit": 38, "all": 155, "acc": 0.24516129032258063}, "6": {"hit": 12, "all": 55, "acc": 0.21818181818181817}, "7": {"hit": 5, "all": 22, "acc": 0.22727272727272727}}, "human_acc": 67.0821947146088, "acc": 0.3028571428571429}, "判断推理|类比推理": {"hit": 35, "all": 96, "difficulty": {"3": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "4": {"hit": 10, "all": 20, "acc": 0.5}, "5": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.82436428905626, "acc": 0.3645833333333333}, "判断推理|类比推理|逻辑关系": {"hit": 20, "all": 52, "difficulty": {"3": {"hit": 7, "all": 10, "acc": 0.7}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.80522117180384, "acc": 0.38461538461538464}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 11, "all": 30, "difficulty": {"5": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "4": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 67.00170566224, "acc": 0.36666666666666664}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.32486766705999, "acc": 0.4}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 74.48564823635999, "acc": 0.2}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 57.19460108329999, "acc": 0.5}, "未分类": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.4}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 68, "all": 226, "difficulty": {"5": {"hit": 25, "all": 87, "acc": 0.28735632183908044}, "7": {"hit": 9, "all": 48, "acc": 0.1875}, "6": {"hit": 15, "all": 50, "acc": 0.3}, "4": {"hit": 17, "all": 38, "acc": 0.4473684210526316}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.3008849557522124}, "常识判断|人文常识": {"hit": 14, "all": 42, "difficulty": {"5": {"hit": 9, "all": 20, "acc": 0.45}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 8, "acc": 0.375}}, "human_acc": 53.66391099976427, "acc": 0.3333333333333333}, "常识判断|人文常识|文化常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.3}, "常识判断|人文常识|文学常识": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.3}, "常识判断|人文常识|中国历史": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.3}, "常识判断|科技常识": {"hit": 13, "all": 50, "difficulty": {"7": {"hit": 0, "all": 10, "acc": 0.0}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.26}, "常识判断|科技常识|科技理论与成就": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.2}, "常识判断|地理国情": {"hit": 7, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.3333333333333333}, "常识判断|地理国情|自然常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.2}, "常识判断|科技常识|化学常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 49.661417476859995, "acc": 0.3}, "常识判断|科技常识|生物常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.4}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 24, "all": 80, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "6": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "4": {"hit": 6, "all": 8, "acc": 0.75}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.3}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.1}, "常识判断|科技常识|生活常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.5}, "常识判断|法律常识|民法": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.5}, "常识判断|人文常识|世界历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.4}, "常识判断|法律常识|宪法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.4}, "常识判断|经济常识": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.25}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.5}, "数量关系": {"hit": 129, "all": 485, "difficulty": {"5": {"hit": 25, "all": 116, "acc": 0.21551724137931033}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 61, "all": 132, "acc": 0.4621212121212121}, "4": {"hit": 26, "all": 68, "acc": 0.38235294117647056}, "7": {"hit": 16, "all": 160, "acc": 0.1}}, "human_acc": 40.061365720053836, "acc": 0.26597938144329897}, "数量关系|数学运算": {"hit": 129, "all": 485, "difficulty": {"5": {"hit": 25, "all": 116, "acc": 0.21551724137931033}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 61, "all": 132, "acc": 0.4621212121212121}, "4": {"hit": 26, "all": 68, "acc": 0.38235294117647056}, "7": {"hit": 16, "all": 160, "acc": 0.1}}, "human_acc": 40.061365720053836, "acc": 0.26597938144329897}, "数量关系|数学运算|几何问题": {"hit": 4, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.16666666666666666}, "数量关系|数学运算|几何问题|平面几何": {"hit": 0, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.0}, "数量关系|数学运算|最值问题": {"hit": 20, "all": 65, "difficulty": {"5": {"hit": 2, "all": 16, "acc": 0.125}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 13, "all": 22, "acc": 0.5909090909090909}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.3076923076923077}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 12, "all": 34, "difficulty": {"5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.35294117647058826}, "常识判断|法律常识|行政法": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.0}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 7, "all": 21, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.3333333333333333}, "常识判断|政治常识|时政": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.4}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 11, "all": 33, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 7, "all": 10, "acc": 0.7}}, "human_acc": 38.245969273603045, "acc": 0.3333333333333333}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 3, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 35.81940208507692, "acc": 0.23076923076923078}, "常识判断|法律常识|经济法": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.4}, "数量关系|数学运算|排列组合问题": {"hit": 18, "all": 74, "difficulty": {"6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "7": {"hit": 3, "all": 36, "acc": 0.08333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.24324324324324326}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 1008, "all": 2295, "difficulty": {"5": {"hit": 265, "all": 587, "acc": 0.4514480408858603}, "4": {"hit": 313, "all": 707, "acc": 0.44271570014144274}, "3": {"hit": 223, "all": 455, "acc": 0.4901098901098901}, "6": {"hit": 135, "all": 327, "acc": 0.41284403669724773}, "7": {"hit": 72, "all": 219, "acc": 0.3287671232876712}}, "human_acc": 66.81637952144999, "acc": 0.4392156862745098}, "言语理解与表达|逻辑填空": {"hit": 787, "all": 1841, "difficulty": {"5": {"hit": 228, "all": 498, "acc": 0.4578313253012048}, "4": {"hit": 213, "all": 513, "acc": 0.4152046783625731}, "3": {"hit": 170, "all": 384, "acc": 0.4427083333333333}, "6": {"hit": 111, "all": 277, "acc": 0.4007220216606498}, "7": {"hit": 65, "all": 169, "acc": 0.38461538461538464}}, "human_acc": 66.44656371118516, "acc": 0.42748506246605106}, "言语理解与表达|逻辑填空|实词填空": {"hit": 62, "all": 151, "difficulty": {"5": {"hit": 18, "all": 49, "acc": 0.3673469387755102}, "4": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 11, "all": 26, "acc": 0.4230769230769231}, "6": {"hit": 12, "all": 24, "acc": 0.5}, "7": {"hit": 5, "all": 13, "acc": 0.38461538461538464}}, "human_acc": 63.11290800843907, "acc": 0.4105960264900662}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 278, "all": 622, "difficulty": {"5": {"hit": 78, "all": 163, "acc": 0.4785276073619632}, "4": {"hit": 75, "all": 172, "acc": 0.436046511627907}, "3": {"hit": 56, "all": 131, "acc": 0.42748091603053434}, "7": {"hit": 25, "all": 60, "acc": 0.4166666666666667}, "6": {"hit": 44, "all": 96, "acc": 0.4583333333333333}}, "human_acc": 66.76874610652267, "acc": 0.44694533762057875}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 61, "all": 143, "difficulty": {"5": {"hit": 19, "all": 43, "acc": 0.4418604651162791}, "4": {"hit": 18, "all": 42, "acc": 0.42857142857142855}, "3": {"hit": 8, "all": 25, "acc": 0.32}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 66.64745600073147, "acc": 0.42657342657342656}, "数量关系|数学运算|几何问题|立体几何": {"hit": 4, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.3333333333333333}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析": {"hit": 314, "all": 771, "difficulty": {"5": {"hit": 87, "all": 201, "acc": 0.43283582089552236}, "4": {"hit": 87, "all": 217, "acc": 0.4009216589861751}, "3": {"hit": 74, "all": 167, "acc": 0.4431137724550898}, "6": {"hit": 41, "all": 116, "acc": 0.35344827586206895}, "7": {"hit": 25, "all": 70, "acc": 0.35714285714285715}}, "human_acc": 66.4145264015949, "acc": 0.4072632944228275}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 71, "all": 165, "difficulty": {"5": {"hit": 22, "all": 45, "acc": 0.4888888888888889}, "4": {"hit": 19, "all": 44, "acc": 0.4318181818181818}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 10, "all": 27, "acc": 0.37037037037037035}, "3": {"hit": 16, "all": 32, "acc": 0.5}}, "human_acc": 65.38103981607519, "acc": 0.4303030303030303}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 73, "all": 145, "difficulty": {"4": {"hit": 19, "all": 43, "acc": 0.4418604651162791}, "5": {"hit": 25, "all": 39, "acc": 0.6410256410256411}, "3": {"hit": 16, "all": 31, "acc": 0.5161290322580645}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 69.23037595903519, "acc": 0.503448275862069}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 5, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.2777777777777778}, "数量关系|数学运算|不定方程问题": {"hit": 9, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.34615384615384615}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 7, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.4666666666666667}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 50, "all": 135, "difficulty": {"4": {"hit": 18, "all": 38, "acc": 0.47368421052631576}, "3": {"hit": 14, "all": 36, "acc": 0.3888888888888889}, "5": {"hit": 11, "all": 32, "acc": 0.34375}, "6": {"hit": 5, "all": 19, "acc": 0.2631578947368421}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.37037037037037035}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 98, "all": 203, "difficulty": {"4": {"hit": 28, "all": 56, "acc": 0.5}, "5": {"hit": 24, "all": 49, "acc": 0.4897959183673469}, "3": {"hit": 24, "all": 51, "acc": 0.47058823529411764}, "7": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "6": {"hit": 13, "all": 25, "acc": 0.52}}, "human_acc": 67.67567808645465, "acc": 0.4827586206896552}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 85, "all": 212, "difficulty": {"4": {"hit": 21, "all": 63, "acc": 0.3333333333333333}, "5": {"hit": 20, "all": 43, "acc": 0.46511627906976744}, "3": {"hit": 25, "all": 51, "acc": 0.49019607843137253}, "6": {"hit": 10, "all": 32, "acc": 0.3125}, "7": {"hit": 9, "all": 23, "acc": 0.391304347826087}}, "human_acc": 67.16383399377828, "acc": 0.4009433962264151}, "常识判断|法律常识|民事诉讼法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 37.81514019971, "acc": 0.2}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.3}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 58, "all": 137, "difficulty": {"5": {"hit": 17, "all": 36, "acc": 0.4722222222222222}, "3": {"hit": 12, "all": 28, "acc": 0.42857142857142855}, "4": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 11, "all": 24, "acc": 0.4583333333333333}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 65.9299610739475, "acc": 0.4233576642335766}, "常识判断|法律常识|劳动法": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.3}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运��|最值问题|构造数列": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 3, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.15}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.2}, "数量关系|数学运算|工程问题": {"hit": 13, "all": 41, "difficulty": {"6": {"hit": 7, "all": 10, "acc": 0.7}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.3170731707317073}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.2}, "判断推理|逻辑判断": {"hit": 43, "all": 174, "difficulty": {"5": {"hit": 19, "all": 78, "acc": 0.24358974358974358}, "4": {"hit": 14, "all": 40, "acc": 0.35}, "3": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 6, "all": 28, "acc": 0.21428571428571427}, "7": {"hit": 1, "all": 15, "acc": 0.06666666666666667}}, "human_acc": 63.67314146826951, "acc": 0.2471264367816092}, "判断推理|逻辑判断|翻译推理": {"hit": 10, "all": 40, "difficulty": {"5": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.25}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.1}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 81.05276778267998, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 60, "all": 151, "difficulty": {"4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "5": {"hit": 17, "all": 41, "acc": 0.4146341463414634}, "6": {"hit": 11, "all": 22, "acc": 0.5}, "3": {"hit": 9, "all": 29, "acc": 0.3103448275862069}, "7": {"hit": 7, "all": 17, "acc": 0.4117647058823529}}, "human_acc": 64.30090962542516, "acc": 0.3973509933774834}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 19, "all": 65, "difficulty": {"4": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 8, "all": 21, "acc": 0.38095238095238093}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "7": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.2923076923076923}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.5}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 61, "all": 139, "difficulty": {"5": {"hit": 18, "all": 35, "acc": 0.5142857142857142}, "4": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "7": {"hit": 4, "all": 10, "acc": 0.4}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "3": {"hit": 12, "all": 27, "acc": 0.4444444444444444}}, "human_acc": 66.39573058612521, "acc": 0.43884892086330934}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 28, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 11, "all": 38, "acc": 0.2894736842105263}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 7, "all": 16, "acc": 0.4375}}, "human_acc": 74.80628203606001, "acc": 0.35}, "判断推理|定义判断|单定义": {"hit": 22, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "5": {"hit": 8, "all": 33, "acc": 0.24242424242424243}, "3": {"hit": 7, "all": 16, "acc": 0.4375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.3142857142857143}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.3}, "数量关系|数学运算|概率问题": {"hit": 8, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 33.07907322403902, "acc": 0.1951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 6, "all": 21, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.2857142857142857}, "数量关系|数学运算|行程问题|普通行程": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.15384615384615385}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.2}, "判断推理|定义判断|单定义|原因结果": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.3}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.45454545454545453}, "判断推理|定义判断|单定义|主客体": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 48, "all": 108, "difficulty": {"5": {"hit": 17, "all": 40, "acc": 0.425}, "4": {"hit": 13, "all": 30, "acc": 0.43333333333333335}, "6": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 10, "all": 19, "acc": 0.5263157894736842}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 68.43212003256482, "acc": 0.4444444444444444}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.4}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.5}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 60, "all": 152, "difficulty": {"5": {"hit": 20, "all": 46, "acc": 0.43478260869565216}, "4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "3": {"hit": 13, "all": 29, "acc": 0.4482758620689655}, "7": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 6, "all": 23, "acc": 0.2608695652173913}}, "human_acc": 65.94677786230925, "acc": 0.39473684210526316}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 48.761151281054545, "acc": 0.45454545454545453}, "言语理解与表达|阅读理解": {"hit": 174, "all": 359, "difficulty": {"4": {"hit": 88, "all": 154, "acc": 0.5714285714285714}, "5": {"hit": 25, "all": 69, "acc": 0.36231884057971014}, "6": {"hit": 17, "all": 39, "acc": 0.4358974358974359}, "3": {"hit": 38, "all": 54, "acc": 0.7037037037037037}, "7": {"hit": 6, "all": 43, "acc": 0.13953488372093023}}, "human_acc": 68.55487799855013, "acc": 0.48467966573816157}, "言语理解与表达|阅读理解|词句理解题": {"hit": 8, "all": 20, "difficulty": {"4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.1}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.49700996277002, "acc": 0.4}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.1}, "判断推理|逻辑判断|削弱题型": {"hit": 13, "all": 66, "difficulty": {"4": {"hit": 2, "all": 14, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 7, "all": 28, "acc": 0.25}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 59.45006052624239, "acc": 0.19696969696969696}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题": {"hit": 154, "all": 319, "difficulty": {"5": {"hit": 18, "all": 58, "acc": 0.3103448275862069}, "6": {"hit": 15, "all": 33, "acc": 0.45454545454545453}, "3": {"hit": 34, "all": 49, "acc": 0.6938775510204082}, "4": {"hit": 82, "all": 140, "acc": 0.5857142857142857}, "7": {"hit": 5, "all": 39, "acc": 0.1282051282051282}}, "human_acc": 68.63568244351346, "acc": 0.4827586206896552}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 23, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 12, "all": 23, "acc": 0.5217391304347826}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.4791666666666667}, "言语理解与表达|阅读理解|细节判断题": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.8}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 8, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.32}, "判断推理|逻辑判断|加强题型": {"hit": 12, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 7, "all": 26, "acc": 0.2692307692307692}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.25}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.2}, "言语理解与表达|语句表达": {"hit": 47, "all": 95, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 12, "all": 40, "acc": 0.3}, "3": {"hit": 15, "all": 17, "acc": 0.8823529411764706}, "6": {"hit": 7, "all": 11, "acc": 0.6363636363636364}}, "human_acc": 67.41332639953578, "acc": 0.49473684210526314}, "言语理解与表达|语句表达|语句填空题": {"hit": 15, "all": 30, "difficulty": {"5": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.5}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.4}, "判断推理|逻辑判断|加强题��|必要条件": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.0}, "判断推理|定义判断|单定义|大前提": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.2}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 18, "all": 30, "difficulty": {"3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 18, "all": 38, "difficulty": {"3": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 72.18852298403947, "acc": 0.47368421052631576}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 25, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 14, "all": 19, "acc": 0.7368421052631579}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 66.77662401733, "acc": 0.625}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 9, "all": 22, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.4090909090909091}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 17, "all": 31, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 10, "all": 13, "acc": 0.7692307692307693}}, "human_acc": 63.04056480034193, "acc": 0.5483870967741935}, "判断推理|逻辑判断|原因解释": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.5}, "判断推理|定义判断|单定义|故事类": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 10, "all": 28, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.32961605834642, "acc": 0.35714285714285715}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.58474381049999, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.5}, "判断推理|逻辑判断|组合排列-材料": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 63.51476866928999, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 13, "all": 29, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.4482758620689655}, "言语理解与表达|语句表达|语句排序题": {"hit": 27, "all": 55, "difficulty": {"4": {"hit": 8, "all": 29, "acc": 0.27586206896551724}, "3": {"hit": 12, "all": 14, "acc": 0.8571428571428571}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 74.78757039704001, "acc": 0.4909090909090909}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 6, "all": 12, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 83.03719898832999, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 6, "all": 13, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 77.69154875399232, "acc": 0.46153846153846156}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 12, "all": 22, "difficulty": {"3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.5454545454545454}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.9467117178, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.1}, "言语理解与表达|阅读理解|标题填入题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.4}, "资料分析": {"hit": 153, "all": 496, "difficulty": {"6": {"hit": 21, "all": 82, "acc": 0.25609756097560976}, "3": {"hit": 18, "all": 37, "acc": 0.4864864864864865}, "5": {"hit": 53, "all": 155, "acc": 0.3419354838709677}, "4": {"hit": 55, "all": 184, "acc": 0.29891304347826086}, "7": {"hit": 2, "all": 34, "acc": 0.058823529411764705}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.3084677419354839}, "资料分析|基期与现期": {"hit": 15, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 8, "all": 30, "acc": 0.26666666666666666}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.2631578947368421}, "资料分析|基期与现期|基期计算": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.3}, "资料分析|文字资料": {"hit": 74, "all": 237, "difficulty": {"6": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "3": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 25, "all": 75, "acc": 0.3333333333333333}, "4": {"hit": 27, "all": 88, "acc": 0.3068181818181818}, "7": {"hit": 1, "all": 16, "acc": 0.0625}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.31223628691983124}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 4, "all": 8, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 68.77892047476, "acc": 0.5}, "资料分析|简单计算": {"hit": 8, "all": 30, "difficulty": {"3": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.26666666666666666}, "资料分析|简单计算|直接找数": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.4}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 10, "all": 32, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.3125}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 7, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.21875}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 13, "all": 26, "difficulty": {"4": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 7, "all": 10, "acc": 0.7}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.5}, "资料分析|增长量|增长量计算": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.5}, "资料分析|平均数问题": {"hit": 15, "all": 40, "difficulty": {"4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.375}, "资料分析|平均数问题|现期平均数": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.6}, "资料分析|增长率|间隔增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.2}, "资料分析|倍数与比值相关": {"hit": 8, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.25806451612903225}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.2}, "资料分析|基期与现期|现期计算": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.4}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.2}, "资料分析|增长率|混合增长率": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.5}, "资料分析|增长量|增长量比较": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.6}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.3}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.2}, "资料分析|简单计算|排序类": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.42931141622, "acc": 0.3}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.2}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.1}, "资料分析|平均数问题|平均数的增长量": {"hit": 4, "all": 7, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.5714285714285714}, "资料分析|基期与现期|现期追赶": {"hit": 2, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.2857142857142857}, "资料分析|增长量|年均增长量": {"hit": 0, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.0}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.5}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}}
results/202309/details/Baichuan-7B/difficulty_result.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"acc": 0.35350678733031676, "hit": 625, "all": 1768}, "3": {"hit": 93, "all": 193, "acc": 0.48186528497409326}, "4": {"hit": 190, "all": 470, "acc": 0.40425531914893614}, "5": {"hit": 194, "all": 561, "acc": 0.34581105169340465}, "6": {"hit": 104, "all": 306, "acc": 0.33986928104575165}, "7": {"hit": 42, "all": 236, "acc": 0.17796610169491525}, "2": {"hit": 2, "all": 2, "acc": 1.0}}
results/202309/details/Baichuan2-13B/acc_result.json ADDED
The diff for this file is too large to render. See raw diff
 
results/202309/details/Baichuan2-13B/category_result-all.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 1951, "all": 3862, "difficulty": {"3": {"hit": 370, "all": 546, "acc": 0.6776556776556777}, "4": {"hit": 669, "all": 1078, "acc": 0.6205936920222634}, "5": {"hit": 542, "all": 1102, "acc": 0.49183303085299457}, "6": {"hit": 250, "all": 647, "acc": 0.38639876352395675}, "7": {"hit": 118, "all": 485, "acc": 0.24329896907216494}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.5051786639047126}, "判断推理": {"hit": 146, "all": 350, "difficulty": {"3": {"hit": 17, "all": 41, "acc": 0.4146341463414634}, "4": {"hit": 44, "all": 77, "acc": 0.5714285714285714}, "5": {"hit": 69, "all": 155, "acc": 0.44516129032258067}, "6": {"hit": 13, "all": 55, "acc": 0.23636363636363636}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}}, "human_acc": 67.0821947146088, "acc": 0.41714285714285715}, "判断推理|类比推理": {"hit": 39, "all": 96, "difficulty": {"3": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "4": {"hit": 13, "all": 20, "acc": 0.65}, "5": {"hit": 15, "all": 39, "acc": 0.38461538461538464}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.82436428905626, "acc": 0.40625}, "判断推理|类比推理|逻辑关系": {"hit": 21, "all": 52, "difficulty": {"3": {"hit": 2, "all": 10, "acc": 0.2}, "4": {"hit": 8, "all": 11, "acc": 0.7272727272727273}, "5": {"hit": 6, "all": 15, "acc": 0.4}, "6": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 66.80522117180384, "acc": 0.40384615384615385}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.17893055848, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 13, "all": 30, "difficulty": {"5": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 67.00170566224, "acc": 0.43333333333333335}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.32486766705999, "acc": 0.6}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 8, "acc": 0.375}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 74.48564823635999, "acc": 0.5}, "判断推理|类比推理|拆分思维": {"hit": 5, "all": 14, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.35714285714285715}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 4, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.36363636363636365}, "常识判断": {"hit": 126, "all": 226, "difficulty": {"5": {"hit": 53, "all": 87, "acc": 0.6091954022988506}, "7": {"hit": 12, "all": 48, "acc": 0.25}, "6": {"hit": 27, "all": 50, "acc": 0.54}, "4": {"hit": 31, "all": 38, "acc": 0.8157894736842105}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 46.34274676514825, "acc": 0.5575221238938053}, "常识判断|人文常识": {"hit": 31, "all": 42, "difficulty": {"5": {"hit": 16, "all": 20, "acc": 0.8}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 9, "all": 12, "acc": 0.75}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.7380952380952381}, "常识判断|人文常识|文化常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 5, "all": 5, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.7}, "常识判断|人文常识|文学常识": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 58.752282007969995, "acc": 0.7}, "常识判断|人文常识|中国历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.6}, "常识判断|科技常识": {"hit": 29, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "6": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}}, "human_acc": 51.632498263487996, "acc": 0.58}, "常识判断|科技常识|科技理论与成就": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.5}, "常识判断|地理国情": {"hit": 9, "all": 21, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 43.98006307271429, "acc": 0.42857142857142855}, "常识判断|地理国情|自然常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 34.48786343879, "acc": 0.3}, "常识判断|科技常识|化学常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 49.661417476859995, "acc": 0.5}, "常识判断|科技常识|生物常识": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.8}, "常识判断|地理国情|国情社情": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}}, "human_acc": 54.87697121455001, "acc": 0.6}, "常识判断|法律常识": {"hit": 40, "all": 80, "difficulty": {"5": {"hit": 17, "all": 35, "acc": 0.4857142857142857}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 8, "all": 8, "acc": 1.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 42.31029945337126, "acc": 0.5}, "常识判断|法律常识|刑法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.2}, "常识判断|科技常识|物理常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 51.029714180179994, "acc": 0.5}, "常识判断|科技常识|生活常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.46042829961, "acc": 0.6}, "常识判断|法律常识|民法": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.8}, "常识判断|人文常识|世界历史": {"hit": 10, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 5, "all": 5, "acc": 1.0}}, "human_acc": 53.975357187650005, "acc": 1.0}, "常识判断|法律常识|宪法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.4}, "常识判断|经济常识": {"hit": 6, "all": 12, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.5}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 142, "all": 485, "difficulty": {"5": {"hit": 41, "all": 116, "acc": 0.35344827586206895}, "3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 45, "all": 132, "acc": 0.3409090909090909}, "4": {"hit": 30, "all": 68, "acc": 0.4411764705882353}, "7": {"hit": 20, "all": 160, "acc": 0.125}}, "human_acc": 40.061365720053836, "acc": 0.2927835051546392}, "数量关系|数学运算": {"hit": 142, "all": 485, "difficulty": {"5": {"hit": 41, "all": 116, "acc": 0.35344827586206895}, "3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 45, "all": 132, "acc": 0.3409090909090909}, "4": {"hit": 30, "all": 68, "acc": 0.4411764705882353}, "7": {"hit": 20, "all": 160, "acc": 0.125}}, "human_acc": 40.061365720053836, "acc": 0.2927835051546392}, "数量关系|数学运算|几何问题": {"hit": 6, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.25}, "数量关系|数学运算|几何问题|平面几何": {"hit": 1, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.08333333333333333}, "数量关系|数学运算|最值问题": {"hit": 22, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 10, "all": 22, "acc": 0.45454545454545453}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 16, "acc": 0.1875}}, "human_acc": 41.27603456994616, "acc": 0.3384615384615385}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 13, "all": 34, "difficulty": {"5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 40.35697170282646, "acc": 0.38235294117647056}, "常识判断|法律常识|行政法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.639119115729994, "acc": 0.4}, "常识判断|法律常识|其他法律法规": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.7}, "常识判断|政治常识": {"hit": 11, "all": 21, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.5238095238095238}, "常识判断|政治常识|时政": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.5}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.347386177160004, "acc": 0.6}, "数量关系|数学运算|周期问题": {"hit": 12, "all": 33, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.36363636363636365}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 4, "all": 13, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 35.81940208507692, "acc": 0.3076923076923077}, "常识判断|法律常识|经济法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.3}, "数量关系|数学运算|排列组合问题": {"hit": 21, "all": 74, "difficulty": {"6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "7": {"hit": 6, "all": 36, "acc": 0.16666666666666666}}, "human_acc": 33.405759431517595, "acc": 0.28378378378378377}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 1384, "all": 2295, "difficulty": {"5": {"hit": 339, "all": 587, "acc": 0.5775127768313458}, "4": {"hit": 504, "all": 707, "acc": 0.7128712871287128}, "3": {"hit": 317, "all": 455, "acc": 0.6967032967032967}, "6": {"hit": 147, "all": 327, "acc": 0.44954128440366975}, "7": {"hit": 77, "all": 219, "acc": 0.3515981735159817}}, "human_acc": 66.81637952144999, "acc": 0.6030501089324619}, "言语理解与表达|逻辑填空": {"hit": 1111, "all": 1841, "difficulty": {"5": {"hit": 287, "all": 498, "acc": 0.5763052208835341}, "4": {"hit": 381, "all": 513, "acc": 0.7426900584795322}, "3": {"hit": 267, "all": 384, "acc": 0.6953125}, "6": {"hit": 124, "all": 277, "acc": 0.44765342960288806}, "7": {"hit": 52, "all": 169, "acc": 0.3076923076923077}}, "human_acc": 66.44656371118516, "acc": 0.603476371537208}, "言语理解与表达|逻辑填空|实词填空": {"hit": 86, "all": 151, "difficulty": {"5": {"hit": 25, "all": 49, "acc": 0.5102040816326531}, "4": {"hit": 27, "all": 39, "acc": 0.6923076923076923}, "3": {"hit": 20, "all": 26, "acc": 0.7692307692307693}, "6": {"hit": 10, "all": 24, "acc": 0.4166666666666667}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.11290800843907, "acc": 0.5695364238410596}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 402, "all": 622, "difficulty": {"5": {"hit": 98, "all": 163, "acc": 0.6012269938650306}, "4": {"hit": 137, "all": 172, "acc": 0.7965116279069767}, "3": {"hit": 100, "all": 131, "acc": 0.7633587786259542}, "7": {"hit": 18, "all": 60, "acc": 0.3}, "6": {"hit": 49, "all": 96, "acc": 0.5104166666666666}}, "human_acc": 66.76874610652267, "acc": 0.6463022508038585}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 92, "all": 143, "difficulty": {"5": {"hit": 27, "all": 43, "acc": 0.627906976744186}, "4": {"hit": 31, "all": 42, "acc": 0.7380952380952381}, "3": {"hit": 17, "all": 25, "acc": 0.68}, "6": {"hit": 12, "all": 19, "acc": 0.631578947368421}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 66.64745600073147, "acc": 0.6433566433566433}, "数量关系|数学运算|几何问题|立体几何": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.4166666666666667}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 433, "all": 771, "difficulty": {"5": {"hit": 109, "all": 201, "acc": 0.5422885572139303}, "4": {"hit": 151, "all": 217, "acc": 0.695852534562212}, "3": {"hit": 106, "all": 167, "acc": 0.6347305389221557}, "6": {"hit": 46, "all": 116, "acc": 0.39655172413793105}, "7": {"hit": 21, "all": 70, "acc": 0.3}}, "human_acc": 66.4145264015949, "acc": 0.5616083009079118}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 90, "all": 165, "difficulty": {"5": {"hit": 24, "all": 45, "acc": 0.5333333333333333}, "4": {"hit": 30, "all": 44, "acc": 0.6818181818181818}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "6": {"hit": 10, "all": 27, "acc": 0.37037037037037035}, "3": {"hit": 20, "all": 32, "acc": 0.625}}, "human_acc": 65.38103981607519, "acc": 0.5454545454545454}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.3}, "言语理解与表达|逻辑填空|成语填空": {"hit": 94, "all": 145, "difficulty": {"4": {"hit": 33, "all": 43, "acc": 0.7674418604651163}, "5": {"hit": 27, "all": 39, "acc": 0.6923076923076923}, "3": {"hit": 20, "all": 31, "acc": 0.6451612903225806}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 69.23037595903519, "acc": 0.6482758620689655}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 5, "all": 18, "difficulty": {"7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2777777777777778}, "数量关系|数学运算|不定方程问题": {"hit": 6, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.23076923076923078}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 68, "all": 135, "difficulty": {"4": {"hit": 23, "all": 38, "acc": 0.6052631578947368}, "3": {"hit": 20, "all": 36, "acc": 0.5555555555555556}, "5": {"hit": 17, "all": 32, "acc": 0.53125}, "6": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.5037037037037037}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 132, "all": 203, "difficulty": {"4": {"hit": 47, "all": 56, "acc": 0.8392857142857143}, "5": {"hit": 26, "all": 49, "acc": 0.5306122448979592}, "3": {"hit": 40, "all": 51, "acc": 0.7843137254901961}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 13, "all": 25, "acc": 0.52}}, "human_acc": 67.67567808645465, "acc": 0.6502463054187192}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 128, "all": 212, "difficulty": {"4": {"hit": 46, "all": 63, "acc": 0.7301587301587301}, "5": {"hit": 24, "all": 43, "acc": 0.5581395348837209}, "3": {"hit": 33, "all": 51, "acc": 0.6470588235294118}, "6": {"hit": 17, "all": 32, "acc": 0.53125}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.6037735849056604}, "常识判断|法律常识|民事诉讼法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.4}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.4}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 93, "all": 137, "difficulty": {"5": {"hit": 20, "all": 36, "acc": 0.5555555555555556}, "3": {"hit": 24, "all": 28, "acc": 0.8571428571428571}, "4": {"hit": 30, "all": 35, "acc": 0.8571428571428571}, "6": {"hit": 14, "all": 24, "acc": 0.5833333333333334}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 65.9299610739475, "acc": 0.6788321167883211}, "常识判断|法律常识|劳动法": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.8}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.1}, "数量关系|数学运算|最值问题|构造数列": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.52370384819999, "acc": 0.45454545454545453}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 3, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 13, "acc": 0.07692307692307693}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.15}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 10, "all": 41, "difficulty": {"6": {"hit": 3, "all": 10, "acc": 0.3}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.24390243902439024}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 66, "all": 174, "difficulty": {"5": {"hit": 34, "all": 78, "acc": 0.4358974358974359}, "4": {"hit": 22, "all": 40, "acc": 0.55}, "3": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "6": {"hit": 3, "all": 28, "acc": 0.10714285714285714}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.3793103448275862}, "判断推理|逻辑判断|翻译推理": {"hit": 12, "all": 40, "difficulty": {"5": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 83, "all": 151, "difficulty": {"4": {"hit": 30, "all": 42, "acc": 0.7142857142857143}, "5": {"hit": 21, "all": 41, "acc": 0.5121951219512195}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "3": {"hit": 19, "all": 29, "acc": 0.6551724137931034}, "7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}}, "human_acc": 64.30090962542516, "acc": 0.5496688741721855}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题": {"hit": 21, "all": 65, "difficulty": {"4": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 6, "all": 21, "acc": 0.2857142857142857}, "5": {"hit": 6, "all": 12, "acc": 0.5}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.3230769230769231}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.6}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 85, "all": 139, "difficulty": {"5": {"hit": 25, "all": 35, "acc": 0.7142857142857143}, "4": {"hit": 29, "all": 39, "acc": 0.7435897435897436}, "7": {"hit": 2, "all": 10, "acc": 0.2}, "6": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "3": {"hit": 19, "all": 27, "acc": 0.7037037037037037}}, "human_acc": 66.39573058612521, "acc": 0.6115107913669064}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.2}, "判断推理|定义判断": {"hit": 41, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 20, "all": 38, "acc": 0.5263157894736842}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 10, "all": 16, "acc": 0.625}}, "human_acc": 74.80628203606001, "acc": 0.5125}, "判断推理|定义判断|单定义": {"hit": 36, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "5": {"hit": 18, "all": 33, "acc": 0.5454545454545454}, "3": {"hit": 10, "all": 16, "acc": 0.625}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.5142857142857142}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.7}, "数量关系|数学运算|概率问题": {"hit": 12, "all": 41, "difficulty": {"7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.2926829268292683}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 7, "all": 21, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.3333333333333333}, "数量关系|数学运算|行程问题|普通行程": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.15384615384615385}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.2}, "判断推理|定义判断|单定义|原因结果": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.4}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.3}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 40.27857733925454, "acc": 0.36363636363636365}, "判断推理|定义判断|单定义|主客体": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.5}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 64, "all": 108, "difficulty": {"5": {"hit": 23, "all": 40, "acc": 0.575}, "4": {"hit": 22, "all": 30, "acc": 0.7333333333333333}, "6": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 14, "all": 19, "acc": 0.7368421052631579}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.5925925925925926}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 1, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.4}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.88811485691, "acc": 0.4}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 96, "all": 152, "difficulty": {"5": {"hit": 28, "all": 46, "acc": 0.6086956521739131}, "4": {"hit": 33, "all": 42, "acc": 0.7857142857142857}, "3": {"hit": 21, "all": 29, "acc": 0.7241379310344828}, "7": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 65.94677786230925, "acc": 0.631578947368421}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.18181818181818182}, "言语理解与表达|阅读理解": {"hit": 228, "all": 359, "difficulty": {"4": {"hit": 106, "all": 154, "acc": 0.6883116883116883}, "5": {"hit": 40, "all": 69, "acc": 0.5797101449275363}, "6": {"hit": 17, "all": 39, "acc": 0.4358974358974359}, "3": {"hit": 45, "all": 54, "acc": 0.8333333333333334}, "7": {"hit": 20, "all": 43, "acc": 0.46511627906976744}}, "human_acc": 68.55487799855013, "acc": 0.6350974930362117}, "言语理解与表达|阅读理解|词句理解题": {"hit": 13, "all": 20, "difficulty": {"4": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.65}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 4, "all": 4, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.7}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.0}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.5}, "判断推理|定义判断|单定义|拆词": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.8}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 31.51805716275, "acc": 0.5}, "判断推理|逻辑判断|削弱题型": {"hit": 15, "all": 66, "difficulty": {"4": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "6": {"hit": 0, "all": 10, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 5, "all": 28, "acc": 0.17857142857142858}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.22727272727272727}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 49.95776411780909, "acc": 0.36363636363636365}, "数量关系|数学运算|行程问题|流水行船": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.45454545454545453}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.0}, "判断推理|定义判断|单定义|方式目的": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题": {"hit": 201, "all": 319, "difficulty": {"5": {"hit": 31, "all": 58, "acc": 0.5344827586206896}, "6": {"hit": 15, "all": 33, "acc": 0.45454545454545453}, "3": {"hit": 41, "all": 49, "acc": 0.8367346938775511}, "4": {"hit": 95, "all": 140, "acc": 0.6785714285714286}, "7": {"hit": 19, "all": 39, "acc": 0.48717948717948717}}, "human_acc": 68.63568244351346, "acc": 0.6300940438871473}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 35, "all": 48, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 18, "all": 23, "acc": 0.782608695652174}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.7291666666666666}, "言语理解与表达|阅读理解|细节判断题": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 79.6963205937, "acc": 0.8}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.79458859062, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 15, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 63.99639746408, "acc": 0.6}, "判断推理|逻辑判断|加强题型": {"hit": 30, "all": 48, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 7, "all": 8, "acc": 0.875}, "5": {"hit": 19, "all": 26, "acc": 0.7307692307692307}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.625}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 6, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.6}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.8}, "言语理解与表达|语句表达": {"hit": 45, "all": 95, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 17, "all": 40, "acc": 0.425}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}}, "human_acc": 67.41332639953578, "acc": 0.47368421052631576}, "言语理解与表达|语句表达|语句填空题": {"hit": 17, "all": 30, "difficulty": {"5": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 5, "all": 5, "acc": 1.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 55.56949742254332, "acc": 0.5666666666666667}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.4}, "判断推理|定义判断|单定义|大前提": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.46423939651001, "acc": 0.3}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 20, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 74.24320108609, "acc": 0.6666666666666666}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 24, "all": 38, "difficulty": {"3": {"hit": 9, "all": 9, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 72.18852298403947, "acc": 0.631578947368421}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 24, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 14, "all": 19, "acc": 0.7368421052631579}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.6}, "言语理解与表达|语句表达|接语选择题": {"hit": 8, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.38647134424, "acc": 0.8}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 7, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 18, "all": 31, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}}, "human_acc": 63.04056480034193, "acc": 0.5806451612903226}, "判断推理|逻辑判断|原因解释": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.7}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 18, "all": 28, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.32961605834642, "acc": 0.6428571428571429}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.58474381049999, "acc": 0.0}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.7}, "判断推理|逻辑判断|组合排列-材料": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 17, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 11, "all": 15, "acc": 0.7333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.5862068965517241}, "言语理解与表达|语句表达|语句排序题": {"hit": 20, "all": 55, "difficulty": {"4": {"hit": 12, "all": 29, "acc": 0.41379310344827586}, "3": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.36363636363636365}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 4, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.3333333333333333}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 5, "all": 13, "difficulty": {"4": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.38461538461538464}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 15, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 9, "all": 12, "acc": 0.75}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.6818181818181818}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.1}, "言语理解与表达|阅读理解|标题填入题": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.6}, "资料分析": {"hit": 147, "all": 496, "difficulty": {"6": {"hit": 18, "all": 82, "acc": 0.21951219512195122}, "3": {"hit": 26, "all": 37, "acc": 0.7027027027027027}, "5": {"hit": 38, "all": 155, "acc": 0.24516129032258063}, "4": {"hit": 57, "all": 184, "acc": 0.30978260869565216}, "7": {"hit": 6, "all": 34, "acc": 0.17647058823529413}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.2963709677419355}, "资料分析|基期与现期": {"hit": 13, "all": 57, "difficulty": {"6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "5": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "4": {"hit": 8, "all": 30, "acc": 0.26666666666666666}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.22807017543859648}, "资料分析|基期与现期|基期计算": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.2}, "资料分析|文字资料": {"hit": 72, "all": 237, "difficulty": {"6": {"hit": 9, "all": 39, "acc": 0.23076923076923078}, "3": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "5": {"hit": 19, "all": 75, "acc": 0.25333333333333335}, "4": {"hit": 28, "all": 88, "acc": 0.3181818181818182}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.3037974683544304}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.4}, "资料分析|简单计算": {"hit": 13, "all": 30, "difficulty": {"3": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.43333333333333335}, "资料分析|简单计算|直接找数": {"hit": 9, "all": 10, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.9}, "资料分析|简单计算|简单加减计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.2}, "资料分析|增长率": {"hit": 6, "all": 32, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.71806505801563, "acc": 0.1875}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 11, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 7, "all": 13, "acc": 0.5384615384615384}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.38629613428436, "acc": 0.34375}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 7, "all": 26, "difficulty": {"4": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.2692307692307692}, "资料分析|增长量|增长量计算": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.3}, "资料分析|平均数问题": {"hit": 14, "all": 40, "difficulty": {"4": {"hit": 7, "all": 15, "acc": 0.4666666666666667}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 64.02933098769998, "acc": 0.35}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 8, "all": 31, "difficulty": {"3": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.25806451612903225}, "资料分析|倍数与比值相关|比值计算": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.3}, "资料分析|倍数与比值相关|现期倍数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.2}, "资料分析|综合分析": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.2}, "资料分析|基期与现期|现期计算": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.2}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.5}, "资料分析|增长率|混合增长率": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 60.69437779192001, "acc": 0.4}, "资料分析|增长量|增长量比较": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.1}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.1}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.3}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.2}, "资料分析|平均数问题|两��平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.3}, "资料分析|平均数问题|平均数的增长量": {"hit": 3, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.42857142857142855}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.7282913837, "acc": 1.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}}
results/202309/details/Baichuan2-13B/difficulty_result.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"acc": 0.4751131221719457, "hit": 840, "all": 1768}, "3": {"hit": 129, "all": 193, "acc": 0.6683937823834197}, "4": {"hit": 271, "all": 470, "acc": 0.5765957446808511}, "5": {"hit": 274, "all": 561, "acc": 0.48841354723707664}, "6": {"hit": 112, "all": 306, "acc": 0.3660130718954248}, "7": {"hit": 53, "all": 236, "acc": 0.2245762711864407}, "2": {"hit": 1, "all": 2, "acc": 0.5}}
results/202309/details/Baichuan2-7B/acc_result.json ADDED
The diff for this file is too large to render. See raw diff
 
results/202309/details/Baichuan2-7B/category_result-all.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 1785, "all": 3862, "difficulty": {"3": {"hit": 324, "all": 546, "acc": 0.5934065934065934}, "4": {"hit": 600, "all": 1078, "acc": 0.5565862708719852}, "5": {"hit": 476, "all": 1102, "acc": 0.4319419237749546}, "6": {"hit": 249, "all": 647, "acc": 0.3848531684698609}, "7": {"hit": 132, "all": 485, "acc": 0.2721649484536082}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 62.54492157609842, "acc": 0.46219575349559816}, "判断推理": {"hit": 134, "all": 350, "difficulty": {"3": {"hit": 20, "all": 41, "acc": 0.4878048780487805}, "4": {"hit": 35, "all": 77, "acc": 0.45454545454545453}, "5": {"hit": 64, "all": 155, "acc": 0.4129032258064516}, "6": {"hit": 9, "all": 55, "acc": 0.16363636363636364}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}}, "human_acc": 67.0821947146088, "acc": 0.38285714285714284}, "判断推理|类比推理": {"hit": 29, "all": 96, "difficulty": {"3": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 7, "all": 20, "acc": 0.35}, "5": {"hit": 12, "all": 39, "acc": 0.3076923076923077}, "6": {"hit": 2, "all": 22, "acc": 0.09090909090909091}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.82436428905626, "acc": 0.3020833333333333}, "判断推理|类比推理|逻辑关系": {"hit": 19, "all": 52, "difficulty": {"3": {"hit": 4, "all": 10, "acc": 0.4}, "4": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "7": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 66.80522117180384, "acc": 0.36538461538461536}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.18181818181818182}, "判断推理|类比推理|语义关系": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.3}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.2}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 57.19460108329999, "acc": 0.1}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 5, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.688079058, "acc": 0.45454545454545453}, "常识判断": {"hit": 113, "all": 226, "difficulty": {"5": {"hit": 47, "all": 87, "acc": 0.5402298850574713}, "7": {"hit": 16, "all": 48, "acc": 0.3333333333333333}, "6": {"hit": 21, "all": 50, "acc": 0.42}, "4": {"hit": 27, "all": 38, "acc": 0.7105263157894737}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.5}, "常识判断|人文常识": {"hit": 25, "all": 42, "difficulty": {"5": {"hit": 14, "all": 20, "acc": 0.7}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 6, "all": 12, "acc": 0.5}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.5952380952380952}, "常识判断|人文常识|文化常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 5, "all": 5, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.7}, "常识判断|人文常识|文学常识": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.5}, "常识判断|人文常识|中国历史": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.5}, "常识判断|科技常识": {"hit": 29, "all": 50, "difficulty": {"7": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 14, "all": 17, "acc": 0.8235294117647058}, "6": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}}, "human_acc": 51.632498263487996, "acc": 0.58}, "常识判断|科技常识|科技理论与成就": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.7}, "常识判断|地理国情": {"hit": 8, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.38095238095238093}, "常识判断|地理国情|自然常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.1}, "常识判断|科技常识|化学常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 49.661417476859995, "acc": 0.4}, "常识判断|科技常识|生物常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.7}, "常识判断|地理国情|国情社情": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 4, "all": 5, "acc": 0.8}}, "human_acc": 54.87697121455001, "acc": 0.6}, "常识判断|法律常识": {"hit": 35, "all": 80, "difficulty": {"5": {"hit": 15, "all": 35, "acc": 0.42857142857142855}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 4, "all": 16, "acc": 0.25}, "4": {"hit": 6, "all": 8, "acc": 0.75}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.4375}, "常识判断|法律常识|刑法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.2}, "常识判断|科技常识|物理常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.3}, "常识判断|科技常识|生活常识": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.8}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 8, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.8}, "常识判断|法律常识|民法": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.6}, "常识判断|人文常识|世界历史": {"hit": 7, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.7}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 5, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.640840877308335, "acc": 0.4166666666666667}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.16899929108, "acc": 0.5}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 137, "all": 485, "difficulty": {"5": {"hit": 33, "all": 116, "acc": 0.28448275862068967}, "3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 47, "all": 132, "acc": 0.3560606060606061}, "4": {"hit": 29, "all": 68, "acc": 0.4264705882352941}, "7": {"hit": 23, "all": 160, "acc": 0.14375}}, "human_acc": 40.061365720053836, "acc": 0.2824742268041237}, "数量关系|数学运算": {"hit": 137, "all": 485, "difficulty": {"5": {"hit": 33, "all": 116, "acc": 0.28448275862068967}, "3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 47, "all": 132, "acc": 0.3560606060606061}, "4": {"hit": 29, "all": 68, "acc": 0.4264705882352941}, "7": {"hit": 23, "all": 160, "acc": 0.14375}}, "human_acc": 40.061365720053836, "acc": 0.2824742268041237}, "数量关系|数学运算|几何问题": {"hit": 4, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.16666666666666666}, "数量关系|数学运算|几何问题|平面几何": {"hit": 1, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.08333333333333333}, "数量关系|数学运算|最值问题": {"hit": 23, "all": 65, "difficulty": {"5": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 4, "all": 16, "acc": 0.25}}, "human_acc": 41.27603456994616, "acc": 0.35384615384615387}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 13, "all": 34, "difficulty": {"5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.38235294117647056}, "常识判断|法律常识|行政法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.4}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 11, "all": 21, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 4, "all": 9, "acc": 0.4444444444444444}}, "human_acc": 37.802677258790474, "acc": 0.5238095238095238}, "常识判断|政治常识|时政": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 34.89429799924999, "acc": 0.6}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.5}, "数量关系|数学运算|周期问题": {"hit": 14, "all": 33, "difficulty": {"5": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 6, "all": 10, "acc": 0.6}}, "human_acc": 38.245969273603045, "acc": 0.42424242424242425}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 6, "all": 13, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 35.81940208507692, "acc": 0.46153846153846156}, "常识判断|法律常识|经济法": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.4}, "数量关系|数学运算|排列组合问题": {"hit": 24, "all": 74, "difficulty": {"6": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "4": {"hit": 7, "all": 10, "acc": 0.7}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 5, "all": 36, "acc": 0.1388888888888889}}, "human_acc": 33.405759431517595, "acc": 0.32432432432432434}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 4, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.2857142857142857}, "言语理解与表达": {"hit": 1248, "all": 2295, "difficulty": {"5": {"hit": 288, "all": 587, "acc": 0.4906303236797274}, "4": {"hit": 447, "all": 707, "acc": 0.6322489391796322}, "3": {"hit": 284, "all": 455, "acc": 0.6241758241758242}, "6": {"hit": 149, "all": 327, "acc": 0.45565749235474007}, "7": {"hit": 80, "all": 219, "acc": 0.365296803652968}}, "human_acc": 66.81637952144999, "acc": 0.5437908496732026}, "言语理解与表达|逻辑填空": {"hit": 991, "all": 1841, "difficulty": {"5": {"hit": 242, "all": 498, "acc": 0.4859437751004016}, "4": {"hit": 322, "all": 513, "acc": 0.6276803118908382}, "3": {"hit": 233, "all": 384, "acc": 0.6067708333333334}, "6": {"hit": 126, "all": 277, "acc": 0.4548736462093863}, "7": {"hit": 68, "all": 169, "acc": 0.40236686390532544}}, "human_acc": 66.44656371118516, "acc": 0.5382944052145573}, "言语理解与表达|逻辑填空|实词填空": {"hit": 81, "all": 151, "difficulty": {"5": {"hit": 22, "all": 49, "acc": 0.4489795918367347}, "4": {"hit": 27, "all": 39, "acc": 0.6923076923076923}, "3": {"hit": 18, "all": 26, "acc": 0.6923076923076923}, "6": {"hit": 10, "all": 24, "acc": 0.4166666666666667}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.11290800843907, "acc": 0.5364238410596026}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 345, "all": 622, "difficulty": {"5": {"hit": 82, "all": 163, "acc": 0.5030674846625767}, "4": {"hit": 108, "all": 172, "acc": 0.627906976744186}, "3": {"hit": 85, "all": 131, "acc": 0.648854961832061}, "7": {"hit": 22, "all": 60, "acc": 0.36666666666666664}, "6": {"hit": 48, "all": 96, "acc": 0.5}}, "human_acc": 66.76874610652267, "acc": 0.5546623794212219}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 80, "all": 143, "difficulty": {"5": {"hit": 23, "all": 43, "acc": 0.5348837209302325}, "4": {"hit": 24, "all": 42, "acc": 0.5714285714285714}, "3": {"hit": 15, "all": 25, "acc": 0.6}, "6": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 66.64745600073147, "acc": 0.5594405594405595}, "数量关系|数学运算|几何问题|立体几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.25}, "数量关系|数学运算|和差倍比问题": {"hit": 3, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 51.365180902629994, "acc": 0.15}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析": {"hit": 405, "all": 771, "difficulty": {"5": {"hit": 96, "all": 201, "acc": 0.47761194029850745}, "4": {"hit": 136, "all": 217, "acc": 0.6267281105990783}, "3": {"hit": 94, "all": 167, "acc": 0.562874251497006}, "6": {"hit": 49, "all": 116, "acc": 0.4224137931034483}, "7": {"hit": 30, "all": 70, "acc": 0.42857142857142855}}, "human_acc": 66.4145264015949, "acc": 0.5252918287937743}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 83, "all": 165, "difficulty": {"5": {"hit": 19, "all": 45, "acc": 0.4222222222222222}, "4": {"hit": 25, "all": 44, "acc": 0.5681818181818182}, "7": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "6": {"hit": 11, "all": 27, "acc": 0.4074074074074074}, "3": {"hit": 21, "all": 32, "acc": 0.65625}}, "human_acc": 65.38103981607519, "acc": 0.503030303030303}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.1}, "言语理解与表达|逻辑填空|成语填空": {"hit": 85, "all": 145, "difficulty": {"4": {"hit": 29, "all": 43, "acc": 0.6744186046511628}, "5": {"hit": 24, "all": 39, "acc": 0.6153846153846154}, "3": {"hit": 15, "all": 31, "acc": 0.4838709677419355}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 8, "all": 14, "acc": 0.5714285714285714}}, "human_acc": 69.23037595903519, "acc": 0.5862068965517241}, "数量关系|数学运算|数学运算-其他": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.1}, "数量关系|数学运算|数列问题": {"hit": 6, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 5, "all": 8, "acc": 0.625}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.3333333333333333}, "数量关系|数学运算|不定方程问题": {"hit": 6, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 0, "all": 7, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.23076923076923078}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 66, "all": 135, "difficulty": {"4": {"hit": 26, "all": 38, "acc": 0.6842105263157895}, "3": {"hit": 18, "all": 36, "acc": 0.5}, "5": {"hit": 13, "all": 32, "acc": 0.40625}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.4888888888888889}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 116, "all": 203, "difficulty": {"4": {"hit": 36, "all": 56, "acc": 0.6428571428571429}, "5": {"hit": 23, "all": 49, "acc": 0.46938775510204084}, "3": {"hit": 35, "all": 51, "acc": 0.6862745098039216}, "7": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "6": {"hit": 14, "all": 25, "acc": 0.56}}, "human_acc": 67.67567808645465, "acc": 0.5714285714285714}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 112, "all": 212, "difficulty": {"4": {"hit": 37, "all": 63, "acc": 0.5873015873015873}, "5": {"hit": 24, "all": 43, "acc": 0.5581395348837209}, "3": {"hit": 26, "all": 51, "acc": 0.5098039215686274}, "6": {"hit": 14, "all": 32, "acc": 0.4375}, "7": {"hit": 11, "all": 23, "acc": 0.4782608695652174}}, "human_acc": 67.16383399377828, "acc": 0.5283018867924528}, "常识判断|法律常识|民事诉讼法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 37.81514019971, "acc": 0.4}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 43.75836103538, "acc": 0.5}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 76, "all": 137, "difficulty": {"5": {"hit": 19, "all": 36, "acc": 0.5277777777777778}, "3": {"hit": 18, "all": 28, "acc": 0.6428571428571429}, "4": {"hit": 23, "all": 35, "acc": 0.6571428571428571}, "6": {"hit": 10, "all": 24, "acc": 0.4166666666666667}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.5547445255474452}, "常识判断|法律常识|劳动法": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.5}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 6, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.52370384819999, "acc": 0.5454545454545454}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 5, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.25}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 32.85243511338, "acc": 0.5}, "数量关系|数学运算|工程问题": {"hit": 13, "all": 41, "difficulty": {"6": {"hit": 4, "all": 10, "acc": 0.4}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.3170731707317073}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.4}, "判断推理|逻辑判断": {"hit": 56, "all": 174, "difficulty": {"5": {"hit": 30, "all": 78, "acc": 0.38461538461538464}, "4": {"hit": 16, "all": 40, "acc": 0.4}, "3": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "6": {"hit": 4, "all": 28, "acc": 0.14285714285714285}, "7": {"hit": 1, "all": 15, "acc": 0.06666666666666667}}, "human_acc": 63.67314146826951, "acc": 0.3218390804597701}, "判断推理|逻辑判断|翻译推理": {"hit": 15, "all": 40, "difficulty": {"5": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.375}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 62.71737773545999, "acc": 0.2}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 81.05276778267998, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 85, "all": 151, "difficulty": {"4": {"hit": 30, "all": 42, "acc": 0.7142857142857143}, "5": {"hit": 18, "all": 41, "acc": 0.43902439024390244}, "6": {"hit": 11, "all": 22, "acc": 0.5}, "3": {"hit": 17, "all": 29, "acc": 0.5862068965517241}, "7": {"hit": 9, "all": 17, "acc": 0.5294117647058824}}, "human_acc": 64.30090962542516, "acc": 0.5629139072847682}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.1}, "数量关系|数学运算|经济利润问题": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题": {"hit": 16, "all": 65, "difficulty": {"4": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 6, "all": 21, "acc": 0.2857142857142857}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 44.22168221813383, "acc": 0.24615384615384617}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.2}, "数量关系|数学运算|统筹规划问题": {"hit": 5, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.60918943125882, "acc": 0.29411764705882354}, "数量关系|数学运算|年龄问题": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.094132731760006, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 73, "all": 139, "difficulty": {"5": {"hit": 17, "all": 35, "acc": 0.4857142857142857}, "4": {"hit": 25, "all": 39, "acc": 0.6410256410256411}, "7": {"hit": 1, "all": 10, "acc": 0.1}, "6": {"hit": 13, "all": 28, "acc": 0.4642857142857143}, "3": {"hit": 17, "all": 27, "acc": 0.6296296296296297}}, "human_acc": 66.39573058612521, "acc": 0.5251798561151079}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.4}, "判断推理|定义判断": {"hit": 49, "all": 80, "difficulty": {"6": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 12, "all": 17, "acc": 0.7058823529411765}, "5": {"hit": 22, "all": 38, "acc": 0.5789473684210527}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 10, "all": 16, "acc": 0.625}}, "human_acc": 74.80628203606001, "acc": 0.6125}, "判断推理|定义判断|单定义": {"hit": 43, "all": 70, "difficulty": {"6": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 10, "all": 15, "acc": 0.6666666666666666}, "5": {"hit": 18, "all": 33, "acc": 0.5454545454545454}, "3": {"hit": 10, "all": 16, "acc": 0.625}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.6142857142857143}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.40619386915, "acc": 0.5}, "数量关系|数学运算|概率问题": {"hit": 9, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 0, "all": 11, "acc": 0.0}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.21951219512195122}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 6, "all": 21, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.2857142857142857}, "数量关系|数学运算|行程问题|普通行程": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.15384615384615385}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 42.721296495400004, "acc": 0.3}, "数量关系|数学运算|行程问题|平均速度": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.1}, "判断推理|定义判断|单定义|原因结果": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 81.04459294875, "acc": 0.6}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 40.27857733925454, "acc": 0.2727272727272727}, "判断推理|定义判断|单定义|主客体": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.5}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 59, "all": 108, "difficulty": {"5": {"hit": 22, "all": 40, "acc": 0.55}, "4": {"hit": 18, "all": 30, "acc": 0.6}, "6": {"hit": 6, "all": 16, "acc": 0.375}, "3": {"hit": 12, "all": 19, "acc": 0.631578947368421}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.43212003256482, "acc": 0.5462962962962963}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 1, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 42.54616771271819, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.5}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 75, "all": 152, "difficulty": {"5": {"hit": 18, "all": 46, "acc": 0.391304347826087}, "4": {"hit": 22, "all": 42, "acc": 0.5238095238095238}, "3": {"hit": 21, "all": 29, "acc": 0.7241379310344828}, "7": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "6": {"hit": 10, "all": 23, "acc": 0.43478260869565216}}, "human_acc": 65.94677786230925, "acc": 0.4934210526315789}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.18181818181818182}, "言语理解与表达|阅读理解": {"hit": 225, "all": 359, "difficulty": {"4": {"hit": 115, "all": 154, "acc": 0.7467532467532467}, "5": {"hit": 36, "all": 69, "acc": 0.5217391304347826}, "6": {"hit": 19, "all": 39, "acc": 0.48717948717948717}, "3": {"hit": 45, "all": 54, "acc": 0.8333333333333334}, "7": {"hit": 10, "all": 43, "acc": 0.23255813953488372}}, "human_acc": 68.55487799855013, "acc": 0.6267409470752089}, "言语理解与表达|阅读理解|词句理解题": {"hit": 11, "all": 20, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.55}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.6}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 58.30299281132001, "acc": 0.5}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.0}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.49700996277002, "acc": 0.5}, "判断推理|定义判断|单定义|拆词": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.5}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 17, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 1, "all": 10, "acc": 0.1}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "7": {"hit": 1, "all": 10, "acc": 0.1}}, "human_acc": 59.45006052624239, "acc": 0.25757575757575757}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.2727272727272727}, "数量关系|数学运算|行程问题|流水行船": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.2727272727272727}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.0}, "判断推理|定义判断|单定义|方式目的": {"hit": 9, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.9}, "言语理解与表达|阅读理解|中心理解题": {"hit": 203, "all": 319, "difficulty": {"5": {"hit": 29, "all": 58, "acc": 0.5}, "6": {"hit": 17, "all": 33, "acc": 0.5151515151515151}, "3": {"hit": 42, "all": 49, "acc": 0.8571428571428571}, "4": {"hit": 105, "all": 140, "acc": 0.75}, "7": {"hit": 10, "all": 39, "acc": 0.2564102564102564}}, "human_acc": 68.63568244351346, "acc": 0.6363636363636364}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 33, "all": 48, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 19, "all": 23, "acc": 0.8260869565217391}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 70.08123149284167, "acc": 0.6875}, "言语理解与表达|阅读理解|细节判断题": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 79.6963205937, "acc": 0.7}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 35.79458859062, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 13, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 6, "all": 8, "acc": 0.75}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.52}, "判断推理|逻辑判断|加强题型": {"hit": 21, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 14, "all": 26, "acc": 0.5384615384615384}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}}, "human_acc": 62.50620258335624, "acc": 0.4375}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 7, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.7}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.3}, "言语理解与表达|语句表达": {"hit": 32, "all": 95, "difficulty": {"5": {"hit": 10, "all": 20, "acc": 0.5}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 10, "all": 40, "acc": 0.25}, "3": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}}, "human_acc": 67.41332639953578, "acc": 0.3368421052631579}, "言语理解与表达|语句表达|语句填空题": {"hit": 14, "all": 30, "difficulty": {"5": {"hit": 6, "all": 11, "acc": 0.5454545454545454}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.4666666666666667}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.2}, "判断推理|定义判断|单定义|大前提": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.5}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 23, "all": 30, "difficulty": {"3": {"hit": 6, "all": 6, "acc": 1.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 10, "all": 13, "acc": 0.7692307692307693}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.7666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 28, "all": 38, "difficulty": {"3": {"hit": 8, "all": 9, "acc": 0.8888888888888888}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 16, "all": 17, "acc": 0.9411764705882353}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 72.18852298403947, "acc": 0.7368421052631579}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 28, "all": 40, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 15, "all": 19, "acc": 0.7894736842105263}, "3": {"hit": 6, "all": 6, "acc": 1.0}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.7}, "言语理解与表达|语句表达|接语选择题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 62.38647134424, "acc": 0.3}, "判断推理|定义判断|多定义": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|定义判断|多定义|常规问法": {"hit": 6, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.6}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 13, "all": 22, "difficulty": {"4": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.5909090909090909}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 20, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 11, "all": 13, "acc": 0.8461538461538461}}, "human_acc": 63.04056480034193, "acc": 0.6451612903225806}, "判断推理|逻辑判断|原因解释": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.2}, "判断推理|定义判断|单定义|故事类": {"hit": 8, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 84.49767651094, "acc": 0.8}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 13, "all": 28, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 68.32961605834642, "acc": 0.4642857142857143}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.58474381049999, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.99353167244, "acc": 0.5}, "判断推理|逻辑判断|组合排列-材料": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 16, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.5517241379310345}, "言语理解与表达|语句表达|语句排序题": {"hit": 15, "all": 55, "difficulty": {"4": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "3": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.2727272727272727}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 3, "all": 12, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.25}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.23076923076923078}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 14, "all": 22, "difficulty": {"3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.6363636363636364}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.3}, "言语理解与表达|阅读理解|标题填入题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.4}, "资料分析": {"hit": 150, "all": 496, "difficulty": {"6": {"hit": 23, "all": 82, "acc": 0.2804878048780488}, "3": {"hit": 12, "all": 37, "acc": 0.32432432432432434}, "5": {"hit": 44, "all": 155, "acc": 0.2838709677419355}, "4": {"hit": 60, "all": 184, "acc": 0.32608695652173914}, "7": {"hit": 7, "all": 34, "acc": 0.20588235294117646}, "2": {"hit": 4, "all": 4, "acc": 1.0}}, "human_acc": 69.07169919470341, "acc": 0.3024193548387097}, "资料分析|基期与现期": {"hit": 13, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "4": {"hit": 6, "all": 30, "acc": 0.2}, "2": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.22807017543859648}, "资料分析|基期与现期|基期计算": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 8, "acc": 0.125}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.85815813289, "acc": 0.2}, "资料分析|文字资料": {"hit": 71, "all": 237, "difficulty": {"6": {"hit": 11, "all": 39, "acc": 0.28205128205128205}, "3": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 21, "all": 75, "acc": 0.28}, "4": {"hit": 29, "all": 88, "acc": 0.32954545454545453}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 69.12763865158183, "acc": 0.29957805907172996}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 6, "all": 8, "difficulty": {"5": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.75}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 10, "all": 30, "difficulty": {"3": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3333333333333333}, "资料分析|简单计算|直接找数": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.5}, "资料分析|简单计算|简单加减计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.2}, "资料分析|增长率": {"hit": 8, "all": 32, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.25}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 13, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.38629613428436, "acc": 0.40625}, "资料分析|比重问题|现期比重": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.35875248133, "acc": 0.5}, "资料分析|增长量": {"hit": 9, "all": 26, "difficulty": {"4": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.34615384615384615}, "资料分析|增长量|增长量计算": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.3}, "资料分析|平均数问题": {"hit": 14, "all": 40, "difficulty": {"4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.35}, "资料分析|平均数问题|现期平均数": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.4}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 10, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.3225806451612903}, "资料分析|倍数与比值相关|比值计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.2}, "资料分析|倍数与比值相关|现期倍数": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.5}, "资料分析|综合分析": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.1}, "资料分析|基期与现期|现期计算": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.3}, "资料分析|比重问题|基期比重": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.3}, "资料分析|比重问题|两期比重": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.78078638926, "acc": 0.5}, "资料分析|增长率|混合增长率": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.69437779192001, "acc": 0.5}, "资料分析|增长量|增长量比较": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 71.35157502931, "acc": 0.3}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.0}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.4}, "资料分析|简单计算|排序类": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.3}, "资料分析|平均数问题|平均数的增长率": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.88165508704001, "acc": 0.3}, "资料分析|基期与现期|间隔基期": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.1}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.4}, "资料分析|平均数问题|平均数的增长量": {"hit": 2, "all": 7, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.2857142857142857}, "资料分析|基期与现期|现期追赶": {"hit": 3, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.42857142857142855}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 2, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.5}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}}
results/202309/details/Baichuan2-7B/difficulty_result.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"acc": 0.4326923076923077, "hit": 765, "all": 1768}, "3": {"hit": 111, "all": 193, "acc": 0.5751295336787565}, "4": {"hit": 243, "all": 470, "acc": 0.5170212765957447}, "5": {"hit": 243, "all": 561, "acc": 0.43315508021390375}, "6": {"hit": 109, "all": 306, "acc": 0.3562091503267974}, "7": {"hit": 57, "all": 236, "acc": 0.24152542372881355}, "2": {"hit": 2, "all": 2, "acc": 1.0}}
results/202309/details/ChatGLM-6B/acc_result.json ADDED
The diff for this file is too large to render. See raw diff
 
results/202309/details/ChatGLM-6B/category_result-all.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 1226, "all": 3862, "difficulty": {"3": {"hit": 224, "all": 546, "acc": 0.41025641025641024}, "4": {"hit": 423, "all": 1078, "acc": 0.39239332096474955}, "5": {"hit": 342, "all": 1102, "acc": 0.3103448275862069}, "6": {"hit": 153, "all": 647, "acc": 0.23647604327666152}, "7": {"hit": 82, "all": 485, "acc": 0.16907216494845362}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.3174520973588814}, "判断推理": {"hit": 105, "all": 350, "difficulty": {"3": {"hit": 12, "all": 41, "acc": 0.2926829268292683}, "4": {"hit": 29, "all": 77, "acc": 0.37662337662337664}, "5": {"hit": 42, "all": 155, "acc": 0.2709677419354839}, "6": {"hit": 17, "all": 55, "acc": 0.3090909090909091}, "7": {"hit": 5, "all": 22, "acc": 0.22727272727272727}}, "human_acc": 67.0821947146088, "acc": 0.3}, "判断推理|类比推理": {"hit": 23, "all": 96, "difficulty": {"3": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 9, "all": 20, "acc": 0.45}, "5": {"hit": 3, "all": 39, "acc": 0.07692307692307693}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.23958333333333334}, "判断推理|类比推理|逻辑关系": {"hit": 17, "all": 52, "difficulty": {"3": {"hit": 4, "all": 10, "acc": 0.4}, "4": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "5": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.3269230769230769}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 5, "all": 11, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.45454545454545453}, "判断推理|类比推理|语义关系": {"hit": 3, "all": 30, "difficulty": {"5": {"hit": 0, "all": 18, "acc": 0.0}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.1}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.1}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.0}, "判断推理|类比推理|拆分思维": {"hit": 3, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 66.51545006774286, "acc": 0.21428571428571427}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 4, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.36363636363636365}, "常识判断": {"hit": 66, "all": 226, "difficulty": {"5": {"hit": 22, "all": 87, "acc": 0.25287356321839083}, "7": {"hit": 14, "all": 48, "acc": 0.2916666666666667}, "6": {"hit": 13, "all": 50, "acc": 0.26}, "4": {"hit": 15, "all": 38, "acc": 0.39473684210526316}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.2920353982300885}, "常识判断|人文常识": {"hit": 18, "all": 42, "difficulty": {"5": {"hit": 8, "all": 20, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.42857142857142855}, "常识判断|人文常识|文化常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.96110414555001, "acc": 0.1}, "常识判断|人文常识|文学常识": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.4}, "常识判断|人文常识|中国历史": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.3}, "常识判断|科技常识": {"hit": 12, "all": 50, "difficulty": {"7": {"hit": 5, "all": 10, "acc": 0.5}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 0, "all": 14, "acc": 0.0}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 51.632498263487996, "acc": 0.24}, "常识判断|科技常识|科技理论与成就": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.3}, "常识判断|地理国情": {"hit": 4, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.19047619047619047}, "常识判断|地理国情|自然常识": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.0}, "常识判断|科技常识|化学常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 49.661417476859995, "acc": 0.2}, "常识判断|科技常识|生物常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.2}, "常识判断|地理国情|国情社情": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.3}, "常识判断|法律常识": {"hit": 26, "all": 80, "difficulty": {"5": {"hit": 8, "all": 35, "acc": 0.22857142857142856}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 5, "all": 16, "acc": 0.3125}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.325}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 51.029714180179994, "acc": 0.3}, "常识判断|科技常识|生活常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.3}, "常识判断|法律常识|民法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.2}, "常识判断|人文常识|世界历史": {"hit": 8, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.8}, "常识判断|法律常识|宪法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.5}, "常识判断|经济常识": {"hit": 0, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.640840877308335, "acc": 0.0}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.16899929108, "acc": 0.0}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.2}, "数量关系": {"hit": 62, "all": 485, "difficulty": {"5": {"hit": 21, "all": 116, "acc": 0.1810344827586207}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 24, "all": 132, "acc": 0.18181818181818182}, "4": {"hit": 10, "all": 68, "acc": 0.14705882352941177}, "7": {"hit": 6, "all": 160, "acc": 0.0375}}, "human_acc": 40.061365720053836, "acc": 0.12783505154639174}, "数量关系|数学运算": {"hit": 62, "all": 485, "difficulty": {"5": {"hit": 21, "all": 116, "acc": 0.1810344827586207}, "3": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 24, "all": 132, "acc": 0.18181818181818182}, "4": {"hit": 10, "all": 68, "acc": 0.14705882352941177}, "7": {"hit": 6, "all": 160, "acc": 0.0375}}, "human_acc": 40.061365720053836, "acc": 0.12783505154639174}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 7, "acc": 0.0}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.133635875575, "acc": 0.16666666666666666}, "数量关系|数学运算|最值问题": {"hit": 10, "all": 65, "difficulty": {"5": {"hit": 5, "all": 16, "acc": 0.3125}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 22, "acc": 0.13636363636363635}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 16, "acc": 0.0}}, "human_acc": 41.27603456994616, "acc": 0.15384615384615385}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 7, "all": 34, "difficulty": {"5": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 9, "acc": 0.0}}, "human_acc": 40.35697170282646, "acc": 0.20588235294117646}, "常识判断|法律常识|行政法": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.639119115729994, "acc": 0.3}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 6, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}}, "human_acc": 37.802677258790474, "acc": 0.2857142857142857}, "常识判断|政治常识|时政": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}}, "human_acc": 34.89429799924999, "acc": 0.3}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 5, "all": 33, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "6": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 38.245969273603045, "acc": 0.15151515151515152}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 1, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 35.81940208507692, "acc": 0.07692307692307693}, "常识判断|法律常识|经济法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.3}, "数量关系|数学运算|排列组合问题": {"hit": 11, "all": 74, "difficulty": {"6": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "4": {"hit": 4, "all": 10, "acc": 0.4}, "5": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "7": {"hit": 1, "all": 36, "acc": 0.027777777777777776}}, "human_acc": 33.405759431517595, "acc": 0.14864864864864866}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 906, "all": 2295, "difficulty": {"5": {"hit": 235, "all": 587, "acc": 0.40034071550255534}, "4": {"hit": 336, "all": 707, "acc": 0.4752475247524752}, "3": {"hit": 201, "all": 455, "acc": 0.44175824175824174}, "6": {"hit": 83, "all": 327, "acc": 0.25382262996941896}, "7": {"hit": 51, "all": 219, "acc": 0.2328767123287671}}, "human_acc": 66.81637952144999, "acc": 0.39477124183006534}, "言语理解与表达|逻辑填空": {"hit": 685, "all": 1841, "difficulty": {"5": {"hit": 191, "all": 498, "acc": 0.38353413654618473}, "4": {"hit": 231, "all": 513, "acc": 0.4502923976608187}, "3": {"hit": 156, "all": 384, "acc": 0.40625}, "6": {"hit": 66, "all": 277, "acc": 0.23826714801444043}, "7": {"hit": 41, "all": 169, "acc": 0.24260355029585798}}, "human_acc": 66.44656371118516, "acc": 0.3720803910917979}, "言语理解与表达|逻辑填空|实词填空": {"hit": 58, "all": 151, "difficulty": {"5": {"hit": 20, "all": 49, "acc": 0.40816326530612246}, "4": {"hit": 18, "all": 39, "acc": 0.46153846153846156}, "3": {"hit": 12, "all": 26, "acc": 0.46153846153846156}, "6": {"hit": 4, "all": 24, "acc": 0.16666666666666666}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.11290800843907, "acc": 0.3841059602649007}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 241, "all": 622, "difficulty": {"5": {"hit": 61, "all": 163, "acc": 0.37423312883435583}, "4": {"hit": 85, "all": 172, "acc": 0.4941860465116279}, "3": {"hit": 59, "all": 131, "acc": 0.45038167938931295}, "7": {"hit": 14, "all": 60, "acc": 0.23333333333333334}, "6": {"hit": 22, "all": 96, "acc": 0.22916666666666666}}, "human_acc": 66.76874610652267, "acc": 0.387459807073955}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 48, "all": 143, "difficulty": {"5": {"hit": 13, "all": 43, "acc": 0.3023255813953488}, "4": {"hit": 17, "all": 42, "acc": 0.40476190476190477}, "3": {"hit": 10, "all": 25, "acc": 0.4}, "6": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "7": {"hit": 2, "all": 14, "acc": 0.14285714285714285}}, "human_acc": 66.64745600073147, "acc": 0.3356643356643357}, "数量关系|数学运算|几何问题|立体几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.25}, "数量关系|数学运算|和差倍比问题": {"hit": 0, "all": 20, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 51.365180902629994, "acc": 0.0}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.0}, "言语理解与表达|逻辑填空|语境分析": {"hit": 276, "all": 771, "difficulty": {"5": {"hit": 78, "all": 201, "acc": 0.3880597014925373}, "4": {"hit": 93, "all": 217, "acc": 0.42857142857142855}, "3": {"hit": 60, "all": 167, "acc": 0.3592814371257485}, "6": {"hit": 28, "all": 116, "acc": 0.2413793103448276}, "7": {"hit": 17, "all": 70, "acc": 0.24285714285714285}}, "human_acc": 66.4145264015949, "acc": 0.35797665369649806}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 53, "all": 165, "difficulty": {"5": {"hit": 18, "all": 45, "acc": 0.4}, "4": {"hit": 15, "all": 44, "acc": 0.3409090909090909}, "7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "6": {"hit": 7, "all": 27, "acc": 0.25925925925925924}, "3": {"hit": 10, "all": 32, "acc": 0.3125}}, "human_acc": 65.38103981607519, "acc": 0.3212121212121212}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.1}, "言语理解与表达|逻辑填空|成语填空": {"hit": 52, "all": 145, "difficulty": {"4": {"hit": 18, "all": 43, "acc": 0.4186046511627907}, "5": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 11, "all": 31, "acc": 0.3548387096774194}, "6": {"hit": 4, "all": 18, "acc": 0.2222222222222222}, "7": {"hit": 3, "all": 14, "acc": 0.21428571428571427}}, "human_acc": 69.23037595903519, "acc": 0.3586206896551724}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 0, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.0}, "数量关系|数学运算|不定方程问题": {"hit": 3, "all": 26, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.48429408539231, "acc": 0.11538461538461539}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 1, "all": 15, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.70558675868666, "acc": 0.06666666666666667}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 55, "all": 135, "difficulty": {"4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 15, "all": 36, "acc": 0.4166666666666667}, "5": {"hit": 15, "all": 32, "acc": 0.46875}, "6": {"hit": 5, "all": 19, "acc": 0.2631578947368421}, "7": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 67.2510308321489, "acc": 0.4074074074074074}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 84, "all": 203, "difficulty": {"4": {"hit": 27, "all": 56, "acc": 0.48214285714285715}, "5": {"hit": 23, "all": 49, "acc": 0.46938775510204084}, "3": {"hit": 23, "all": 51, "acc": 0.45098039215686275}, "7": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "6": {"hit": 5, "all": 25, "acc": 0.2}}, "human_acc": 67.67567808645465, "acc": 0.41379310344827586}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 77, "all": 212, "difficulty": {"4": {"hit": 30, "all": 63, "acc": 0.47619047619047616}, "5": {"hit": 13, "all": 43, "acc": 0.3023255813953488}, "3": {"hit": 16, "all": 51, "acc": 0.3137254901960784}, "6": {"hit": 10, "all": 32, "acc": 0.3125}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.3632075471698113}, "常识判断|法律常识|民事诉讼法": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 37.81514019971, "acc": 0.4}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.2}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.74816897944, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 46, "all": 137, "difficulty": {"5": {"hit": 12, "all": 36, "acc": 0.3333333333333333}, "3": {"hit": 12, "all": 28, "acc": 0.42857142857142855}, "4": {"hit": 18, "all": 35, "acc": 0.5142857142857142}, "6": {"hit": 2, "all": 24, "acc": 0.08333333333333333}, "7": {"hit": 2, "all": 14, "acc": 0.14285714285714285}}, "human_acc": 65.9299610739475, "acc": 0.3357664233576642}, "常识判断|法律常识|劳动法": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.3}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.0}, "数量关系|数学运算|最值问题|构造数列": {"hit": 1, "all": 11, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.09090909090909091}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.3}, "数量关系|数学运算|容斥原理问题": {"hit": 3, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 13, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.15}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 32.85243511338, "acc": 0.3}, "数量关系|数学运算|工程问题": {"hit": 4, "all": 41, "difficulty": {"6": {"hit": 1, "all": 10, "acc": 0.1}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "7": {"hit": 0, "all": 11, "acc": 0.0}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.0975609756097561}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.1}, "判断推理|逻辑判断": {"hit": 58, "all": 174, "difficulty": {"5": {"hit": 27, "all": 78, "acc": 0.34615384615384615}, "4": {"hit": 12, "all": 40, "acc": 0.3}, "3": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.3333333333333333}, "判断推理|逻辑判断|翻译推理": {"hit": 8, "all": 40, "difficulty": {"5": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.1}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.1}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.2}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 52, "all": 151, "difficulty": {"4": {"hit": 18, "all": 42, "acc": 0.42857142857142855}, "5": {"hit": 16, "all": 41, "acc": 0.3902439024390244}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 2, "all": 17, "acc": 0.11764705882352941}}, "human_acc": 64.30090962542516, "acc": 0.3443708609271523}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.09090909090909091}, "数量关系|数学运算|行程问题": {"hit": 10, "all": 65, "difficulty": {"4": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 5, "all": 21, "acc": 0.23809523809523808}, "5": {"hit": 0, "all": 12, "acc": 0.0}, "7": {"hit": 3, "all": 18, "acc": 0.16666666666666666}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.15384615384615385}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 2, "all": 17, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.11764705882352941}, "数量关系|数学运算|年龄问题": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.0}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 63, "all": 139, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "4": {"hit": 23, "all": 39, "acc": 0.5897435897435898}, "7": {"hit": 4, "all": 10, "acc": 0.4}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "3": {"hit": 14, "all": 27, "acc": 0.5185185185185185}}, "human_acc": 66.39573058612521, "acc": 0.45323741007194246}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.1}, "判断推理|定义判断": {"hit": 24, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 8, "all": 17, "acc": 0.47058823529411764}, "5": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 74.80628203606001, "acc": 0.3}, "判断推理|定义判断|单定义": {"hit": 17, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 6, "all": 15, "acc": 0.4}, "5": {"hit": 9, "all": 33, "acc": 0.2727272727272727}, "3": {"hit": 1, "all": 16, "acc": 0.0625}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.24285714285714285}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.40619386915, "acc": 0.2}, "数量关系|数学运算|概率问题": {"hit": 6, "all": 41, "difficulty": {"7": {"hit": 1, "all": 17, "acc": 0.058823529411764705}, "5": {"hit": 1, "all": 11, "acc": 0.09090909090909091}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.14634146341463414}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 4, "all": 21, "difficulty": {"7": {"hit": 1, "all": 10, "acc": 0.1}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.19047619047619047}, "数量关系|数学运算|行程问题|普通行程": {"hit": 1, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.23392225894615, "acc": 0.07692307692307693}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.1}, "数量关系|数学运算|行程问题|平均速度": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.1}, "判断推理|定义判断|单定义|原因结果": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 81.04459294875, "acc": 0.1}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 3, "all": 11, "difficulty": {"6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 40.27857733925454, "acc": 0.2727272727272727}, "判断推理|定义判断|单定义|主客体": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 39, "all": 108, "difficulty": {"5": {"hit": 16, "all": 40, "acc": 0.4}, "4": {"hit": 14, "all": 30, "acc": 0.4666666666666667}, "6": {"hit": 1, "all": 16, "acc": 0.0625}, "3": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.43212003256482, "acc": 0.3611111111111111}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.2}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.2}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 58, "all": 152, "difficulty": {"5": {"hit": 16, "all": 46, "acc": 0.34782608695652173}, "4": {"hit": 17, "all": 42, "acc": 0.40476190476190477}, "3": {"hit": 14, "all": 29, "acc": 0.4827586206896552}, "7": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 65.94677786230925, "acc": 0.3815789473684211}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.09090909090909091}, "言语理解与表达|阅读理解": {"hit": 196, "all": 359, "difficulty": {"4": {"hit": 92, "all": 154, "acc": 0.5974025974025974}, "5": {"hit": 38, "all": 69, "acc": 0.5507246376811594}, "6": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 41, "all": 54, "acc": 0.7592592592592593}, "7": {"hit": 9, "all": 43, "acc": 0.20930232558139536}}, "human_acc": 68.55487799855013, "acc": 0.5459610027855153}, "言语理解与表达|阅读理解|词句理解题": {"hit": 11, "all": 20, "difficulty": {"4": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.55}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.0}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.49700996277002, "acc": 0.2}, "判断推理|定义判断|单定义|拆词": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.72412476279, "acc": 0.4}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.1}, "判断推理|逻辑判断|削弱题型": {"hit": 20, "all": 66, "difficulty": {"4": {"hit": 5, "all": 14, "acc": 0.35714285714285715}, "6": {"hit": 4, "all": 10, "acc": 0.4}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 8, "all": 28, "acc": 0.2857142857142857}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.30303030303030304}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题|流水行船": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.18181818181818182}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.1}, "判断推理|定义判断|单定义|方式目的": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题": {"hit": 175, "all": 319, "difficulty": {"5": {"hit": 30, "all": 58, "acc": 0.5172413793103449}, "6": {"hit": 14, "all": 33, "acc": 0.42424242424242425}, "3": {"hit": 38, "all": 49, "acc": 0.7755102040816326}, "4": {"hit": 84, "all": 140, "acc": 0.6}, "7": {"hit": 9, "all": 39, "acc": 0.23076923076923078}}, "human_acc": 68.63568244351346, "acc": 0.54858934169279}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 28, "all": 48, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 14, "all": 23, "acc": 0.6086956521739131}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.5833333333333334}, "言语理解与表达|阅读理解|细节判断题": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.5}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.0}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 11, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 63.99639746408, "acc": 0.44}, "判断推理|逻辑判断|加强题型": {"hit": 21, "all": 48, "difficulty": {"3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 14, "all": 26, "acc": 0.5384615384615384}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}}, "human_acc": 62.50620258335624, "acc": 0.4375}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.5}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.6}, "言语理解与表达|语句表达": {"hit": 25, "all": 95, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 13, "all": 40, "acc": 0.325}, "3": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 1, "all": 11, "acc": 0.09090909090909091}}, "human_acc": 67.41332639953578, "acc": 0.2631578947368421}, "言语理解与表达|语句表达|语句填空题": {"hit": 8, "all": 30, "difficulty": {"5": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 55.56949742254332, "acc": 0.26666666666666666}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.3}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.2}, "判断推理|定义判断|单定义|大前提": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.1}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 4, "all": 5, "acc": 0.8}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 21, "all": 30, "difficulty": {"3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "5": {"hit": 4, "all": 5, "acc": 0.8}, "4": {"hit": 11, "all": 13, "acc": 0.8461538461538461}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.7}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 20, "all": 38, "difficulty": {"3": {"hit": 7, "all": 9, "acc": 0.7777777777777778}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 72.18852298403947, "acc": 0.5263157894736842}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 23, "all": 40, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 13, "all": 19, "acc": 0.6842105263157895}, "3": {"hit": 6, "all": 6, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 66.77662401733, "acc": 0.575}, "言语理解与表达|语句表达|接语选择题": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.4}, "判断推理|定义判断|多定义": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.7}, "判断推理|定义判断|多定义|常规问法": {"hit": 7, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.7}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 8, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 64.28934778878182, "acc": 0.36363636363636365}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 21, "all": 31, "difficulty": {"5": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 9, "all": 13, "acc": 0.6923076923076923}}, "human_acc": 63.04056480034193, "acc": 0.6774193548387096}, "判断推理|逻辑判断|原因解释": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.16088493282, "acc": 0.5}, "判断推理|定义判断|单定义|故事类": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 84.49767651094, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 11, "all": 28, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.32961605834642, "acc": 0.39285714285714285}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 68.58474381049999, "acc": 0.6}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.3}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.3}, "判断推理|逻辑判断|组合排列-材料": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.78145644953, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 20, "all": 29, "difficulty": {"5": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 11, "all": 15, "acc": 0.7333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.0384110174069, "acc": 0.6896551724137931}, "言语理解与表达|语句表达|语句排序题": {"hit": 13, "all": 55, "difficulty": {"4": {"hit": 10, "all": 29, "acc": 0.3448275862068966}, "3": {"hit": 3, "all": 14, "acc": 0.21428571428571427}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.23636363636363636}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 3, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.25}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 83.03719898832999, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 4, "all": 13, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.3076923076923077}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 10, "all": 22, "difficulty": {"3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.45454545454545453}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 52.47360422099001, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.1}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.4}, "言语理解与表达|阅读理解|标题填入题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 4, "all": 4, "acc": 1.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 53.00512973501001, "acc": 0.5}, "资料分析": {"hit": 86, "all": 496, "difficulty": {"6": {"hit": 16, "all": 82, "acc": 0.1951219512195122}, "3": {"hit": 8, "all": 37, "acc": 0.21621621621621623}, "5": {"hit": 22, "all": 155, "acc": 0.14193548387096774}, "4": {"hit": 32, "all": 184, "acc": 0.17391304347826086}, "7": {"hit": 6, "all": 34, "acc": 0.17647058823529413}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.17338709677419356}, "资料分析|基期与现期": {"hit": 9, "all": 57, "difficulty": {"6": {"hit": 0, "all": 7, "acc": 0.0}, "5": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "4": {"hit": 7, "all": 30, "acc": 0.23333333333333334}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.15789473684210525}, "资料分析|基期与现期|基期计算": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.2}, "资料分析|文字资料": {"hit": 42, "all": 237, "difficulty": {"6": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 11, "all": 75, "acc": 0.14666666666666667}, "4": {"hit": 15, "all": 88, "acc": 0.17045454545454544}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.17721518987341772}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 4, "all": 8, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 1, "all": 5, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.2}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.4}, "资料分析|简单计算": {"hit": 7, "all": 30, "difficulty": {"3": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.23333333333333334}, "资料分析|简单计算|直接找数": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.4}, "资料分析|简单计算|简单加减计算": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.1}, "资料分析|增长率": {"hit": 2, "all": 32, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 0, "all": 9, "acc": 0.0}, "6": {"hit": 0, "all": 8, "acc": 0.0}, "7": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.0625}, "资料分析|增长率|一般增长率": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.0}, "资料分析|比重问题": {"hit": 5, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 2, "all": 13, "acc": 0.15384615384615385}, "5": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.15625}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 6, "all": 26, "difficulty": {"4": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.23076923076923078}, "资料分析|增长量|增长量计算": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.0}, "资料分析|平均数问题": {"hit": 9, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 64.02933098769998, "acc": 0.225}, "资料分析|平均数问题|现期平均数": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.5}, "资料分析|增长率|间隔增长率": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.0}, "资料分析|倍数与比值相关": {"hit": 2, "all": 31, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 0, "all": 10, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.06451612903225806}, "资料分析|倍数与比值相关|比值计算": {"hit": 0, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.0}, "资料分析|倍数与比值相关|现期倍数": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.0}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.1}, "资料分析|比重问题|基期比重": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 8, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.0}, "资料分析|比重问题|两期比重": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.1}, "资料分析|增长率|混合增长率": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 60.69437779192001, "acc": 0.2}, "资料分析|增长量|增长量比较": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 71.35157502931, "acc": 0.5}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.1}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 67.34429652963, "acc": 0.1}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.1}, "资料分析|基期与现期|间隔基期": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.1}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.3}, "资料分析|平均数问题|平均数的增长量": {"hit": 1, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.14285714285714285}, "资料分析|基期与现期|现期追赶": {"hit": 1, "all": 7, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.14285714285714285}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 0, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.0}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}}
results/202309/details/ChatGLM-6B/difficulty_result.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"acc": 0.3031674208144796, "hit": 536, "all": 1768}, "3": {"hit": 79, "all": 193, "acc": 0.40932642487046633}, "4": {"hit": 169, "all": 470, "acc": 0.3595744680851064}, "5": {"hit": 172, "all": 561, "acc": 0.3065953654188948}, "6": {"hit": 76, "all": 306, "acc": 0.24836601307189543}, "7": {"hit": 39, "all": 236, "acc": 0.1652542372881356}, "2": {"hit": 1, "all": 2, "acc": 0.5}}
results/202309/details/ChatGLM2-6B/acc_result.json ADDED
The diff for this file is too large to render. See raw diff
 
results/202309/details/ChatGLM2-6B/category_result-all.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 1506, "all": 3862, "difficulty": {"3": {"hit": 254, "all": 546, "acc": 0.4652014652014652}, "4": {"hit": 468, "all": 1078, "acc": 0.43413729128014844}, "5": {"hit": 444, "all": 1102, "acc": 0.4029038112522686}, "6": {"hit": 224, "all": 647, "acc": 0.3462132921174652}, "7": {"hit": 114, "all": 485, "acc": 0.23505154639175257}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.38995339202485757}, "判断推理": {"hit": 122, "all": 350, "difficulty": {"3": {"hit": 14, "all": 41, "acc": 0.34146341463414637}, "4": {"hit": 31, "all": 77, "acc": 0.4025974025974026}, "5": {"hit": 61, "all": 155, "acc": 0.3935483870967742}, "6": {"hit": 12, "all": 55, "acc": 0.21818181818181817}, "7": {"hit": 4, "all": 22, "acc": 0.18181818181818182}}, "human_acc": 67.0821947146088, "acc": 0.3485714285714286}, "判断推理|类比推理": {"hit": 18, "all": 96, "difficulty": {"3": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "4": {"hit": 6, "all": 20, "acc": 0.3}, "5": {"hit": 10, "all": 39, "acc": 0.2564102564102564}, "6": {"hit": 0, "all": 22, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.1875}, "判断推理|类比推理|逻辑关系": {"hit": 8, "all": 52, "difficulty": {"3": {"hit": 1, "all": 10, "acc": 0.1}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 0, "all": 13, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.15384615384615385}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 0, "all": 11, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.78792280516363, "acc": 0.0}, "判断推理|类比推理|语义关系": {"hit": 9, "all": 30, "difficulty": {"5": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.3}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.4}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 8, "acc": 0.375}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.3}, "判断推理|类比推理|拆分思维": {"hit": 1, "all": 14, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 66.51545006774286, "acc": 0.07142857142857142}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.2}, "未分类": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 2, "all": 11, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.18181818181818182}, "常识判断": {"hit": 91, "all": 226, "difficulty": {"5": {"hit": 40, "all": 87, "acc": 0.45977011494252873}, "7": {"hit": 10, "all": 48, "acc": 0.20833333333333334}, "6": {"hit": 21, "all": 50, "acc": 0.42}, "4": {"hit": 18, "all": 38, "acc": 0.47368421052631576}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 46.34274676514825, "acc": 0.4026548672566372}, "常识判断|人文常识": {"hit": 21, "all": 42, "difficulty": {"5": {"hit": 12, "all": 20, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "4": {"hit": 4, "all": 8, "acc": 0.5}}, "human_acc": 53.66391099976427, "acc": 0.5}, "常识判断|人文常识|文化常识": {"hit": 7, "all": 10, "difficulty": {"5": {"hit": 5, "all": 5, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.7}, "常识判断|人文常识|文学常识": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 58.752282007969995, "acc": 0.4}, "常识判断|人文常识|中国历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.4}, "常识判断|科技常识": {"hit": 23, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 9, "all": 17, "acc": 0.5294117647058824}, "6": {"hit": 7, "all": 14, "acc": 0.5}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}}, "human_acc": 51.632498263487996, "acc": 0.46}, "常识判断|科技常识|科技理论与成就": {"hit": 4, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.4}, "常识判断|地理国情": {"hit": 8, "all": 21, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.38095238095238093}, "常识判断|地理国情|自然常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.3}, "常识判断|科技常识|化学常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 49.661417476859995, "acc": 0.3}, "常识判断|科技常识|生物常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 49.046366131910005, "acc": 0.6}, "常识判断|地理国情|国情社情": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.4}, "常识判断|法律常识": {"hit": 31, "all": 80, "difficulty": {"5": {"hit": 13, "all": 35, "acc": 0.37142857142857144}, "6": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 42.31029945337126, "acc": 0.3875}, "常识判断|法律常识|刑法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.76204423705999, "acc": 0.4}, "常识判断|科技常识|物理常识": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 51.029714180179994, "acc": 0.4}, "常识判断|科技常识|生活常识": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.6}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.4}, "常识判断|法律常识|民法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.4}, "常识判断|人文常识|世界历史": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 53.975357187650005, "acc": 0.6}, "常识判断|法律常识|宪法": {"hit": 6, "all": 10, "difficulty": {"6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.6}, "常识判断|经济常识": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.25}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.0}, "数量关系": {"hit": 136, "all": 485, "difficulty": {"5": {"hit": 32, "all": 116, "acc": 0.27586206896551724}, "3": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 50, "all": 132, "acc": 0.3787878787878788}, "4": {"hit": 20, "all": 68, "acc": 0.29411764705882354}, "7": {"hit": 30, "all": 160, "acc": 0.1875}}, "human_acc": 40.061365720053836, "acc": 0.2804123711340206}, "数量关系|数学运算": {"hit": 136, "all": 485, "difficulty": {"5": {"hit": 32, "all": 116, "acc": 0.27586206896551724}, "3": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 50, "all": 132, "acc": 0.3787878787878788}, "4": {"hit": 20, "all": 68, "acc": 0.29411764705882354}, "7": {"hit": 30, "all": 160, "acc": 0.1875}}, "human_acc": 40.061365720053836, "acc": 0.2804123711340206}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.133635875575, "acc": 0.25}, "数量关系|数学运算|最值问题": {"hit": 15, "all": 65, "difficulty": {"5": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 8, "all": 22, "acc": 0.36363636363636365}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 1, "all": 16, "acc": 0.0625}}, "human_acc": 41.27603456994616, "acc": 0.23076923076923078}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 10, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.29411764705882354}, "常识判断|法律常识|行政法": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.2}, "常识判断|法律常识|其他法律法规": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 41.25920562352999, "acc": 0.5}, "常识判断|政治常识": {"hit": 5, "all": 21, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 9, "acc": 0.0}}, "human_acc": 37.802677258790474, "acc": 0.23809523809523808}, "常识判断|政治常识|时政": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 34.89429799924999, "acc": 0.2}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.347386177160004, "acc": 0.3}, "数量关系|数学运算|周期问题": {"hit": 10, "all": 33, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "6": {"hit": 4, "all": 10, "acc": 0.4}}, "human_acc": 38.245969273603045, "acc": 0.30303030303030304}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 2, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 35.81940208507692, "acc": 0.15384615384615385}, "常识判断|法律常识|经济法": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 37.83136397003, "acc": 0.2}, "数量关系|数学运算|排列组合问题": {"hit": 17, "all": 74, "difficulty": {"6": {"hit": 2, "all": 14, "acc": 0.14285714285714285}, "4": {"hit": 1, "all": 10, "acc": 0.1}, "5": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "7": {"hit": 8, "all": 36, "acc": 0.2222222222222222}}, "human_acc": 33.405759431517595, "acc": 0.22972972972972974}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 3, "all": 14, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 28.644400674264286, "acc": 0.21428571428571427}, "言语理解与表达": {"hit": 1000, "all": 2295, "difficulty": {"5": {"hit": 268, "all": 587, "acc": 0.4565587734241908}, "4": {"hit": 332, "all": 707, "acc": 0.4695898161244696}, "3": {"hit": 220, "all": 455, "acc": 0.4835164835164835}, "6": {"hit": 116, "all": 327, "acc": 0.3547400611620795}, "7": {"hit": 64, "all": 219, "acc": 0.2922374429223744}}, "human_acc": 66.81637952144999, "acc": 0.4357298474945534}, "言语理解与表达|逻辑填空": {"hit": 769, "all": 1841, "difficulty": {"5": {"hit": 220, "all": 498, "acc": 0.44176706827309237}, "4": {"hit": 233, "all": 513, "acc": 0.45419103313840153}, "3": {"hit": 179, "all": 384, "acc": 0.4661458333333333}, "6": {"hit": 89, "all": 277, "acc": 0.3212996389891697}, "7": {"hit": 48, "all": 169, "acc": 0.28402366863905326}}, "human_acc": 66.44656371118516, "acc": 0.4177077675176534}, "言语理解与表达|逻辑填空|实词填空": {"hit": 60, "all": 151, "difficulty": {"5": {"hit": 19, "all": 49, "acc": 0.3877551020408163}, "4": {"hit": 19, "all": 39, "acc": 0.48717948717948717}, "3": {"hit": 11, "all": 26, "acc": 0.4230769230769231}, "6": {"hit": 8, "all": 24, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.3973509933774834}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 269, "all": 622, "difficulty": {"5": {"hit": 68, "all": 163, "acc": 0.4171779141104294}, "4": {"hit": 86, "all": 172, "acc": 0.5}, "3": {"hit": 64, "all": 131, "acc": 0.48854961832061067}, "7": {"hit": 17, "all": 60, "acc": 0.2833333333333333}, "6": {"hit": 34, "all": 96, "acc": 0.3541666666666667}}, "human_acc": 66.76874610652267, "acc": 0.432475884244373}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 64, "all": 143, "difficulty": {"5": {"hit": 20, "all": 43, "acc": 0.46511627906976744}, "4": {"hit": 17, "all": 42, "acc": 0.40476190476190477}, "3": {"hit": 14, "all": 25, "acc": 0.56}, "6": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "7": {"hit": 2, "all": 14, "acc": 0.14285714285714285}}, "human_acc": 66.64745600073147, "acc": 0.44755244755244755}, "数量关系|数学运算|几何问题|立体几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 37.38700448056667, "acc": 0.16666666666666666}, "数量关系|数学运算|和差倍比问题": {"hit": 7, "all": 20, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 4, "all": 6, "acc": 0.6666666666666666}}, "human_acc": 51.365180902629994, "acc": 0.35}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 43.834794860600006, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析": {"hit": 303, "all": 771, "difficulty": {"5": {"hit": 88, "all": 201, "acc": 0.43781094527363185}, "4": {"hit": 89, "all": 217, "acc": 0.41013824884792627}, "3": {"hit": 74, "all": 167, "acc": 0.4431137724550898}, "6": {"hit": 33, "all": 116, "acc": 0.28448275862068967}, "7": {"hit": 19, "all": 70, "acc": 0.2714285714285714}}, "human_acc": 66.4145264015949, "acc": 0.39299610894941633}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 61, "all": 165, "difficulty": {"5": {"hit": 20, "all": 45, "acc": 0.4444444444444444}, "4": {"hit": 18, "all": 44, "acc": 0.4090909090909091}, "7": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "6": {"hit": 8, "all": 27, "acc": 0.2962962962962963}, "3": {"hit": 13, "all": 32, "acc": 0.40625}}, "human_acc": 65.38103981607519, "acc": 0.3696969696969697}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 26.693831188929995, "acc": 0.2}, "言语理解与表达|逻辑填空|成语填空": {"hit": 70, "all": 145, "difficulty": {"4": {"hit": 25, "all": 43, "acc": 0.5813953488372093}, "5": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "3": {"hit": 12, "all": 31, "acc": 0.3870967741935484}, "6": {"hit": 7, "all": 18, "acc": 0.3888888888888889}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 69.23037595903519, "acc": 0.4827586206896552}, "数量关系|数学运算|数学运算-其他": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.2}, "数量关系|数学运算|数列问题": {"hit": 4, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.99098344071112, "acc": 0.2222222222222222}, "数量关系|数学运算|不定方程问题": {"hit": 10, "all": 26, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 8, "acc": 0.125}, "6": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 41.48429408539231, "acc": 0.38461538461538464}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 5, "all": 15, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 40.70558675868666, "acc": 0.3333333333333333}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 55, "all": 135, "difficulty": {"4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 18, "all": 36, "acc": 0.5}, "5": {"hit": 12, "all": 32, "acc": 0.375}, "6": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "7": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 67.2510308321489, "acc": 0.4074074074074074}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 86, "all": 203, "difficulty": {"4": {"hit": 28, "all": 56, "acc": 0.5}, "5": {"hit": 18, "all": 49, "acc": 0.3673469387755102}, "3": {"hit": 25, "all": 51, "acc": 0.49019607843137253}, "7": {"hit": 7, "all": 22, "acc": 0.3181818181818182}, "6": {"hit": 8, "all": 25, "acc": 0.32}}, "human_acc": 67.67567808645465, "acc": 0.4236453201970443}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 85, "all": 212, "difficulty": {"4": {"hit": 27, "all": 63, "acc": 0.42857142857142855}, "5": {"hit": 16, "all": 43, "acc": 0.37209302325581395}, "3": {"hit": 24, "all": 51, "acc": 0.47058823529411764}, "6": {"hit": 10, "all": 32, "acc": 0.3125}, "7": {"hit": 8, "all": 23, "acc": 0.34782608695652173}}, "human_acc": 67.16383399377828, "acc": 0.4009433962264151}, "常识判断|法律常识|民事诉讼法": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 37.81514019971, "acc": 0.5}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.3}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.1}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 56, "all": 137, "difficulty": {"5": {"hit": 15, "all": 36, "acc": 0.4166666666666667}, "3": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "4": {"hit": 20, "all": 35, "acc": 0.5714285714285714}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 4, "all": 14, "acc": 0.2857142857142857}}, "human_acc": 65.9299610739475, "acc": 0.40875912408759124}, "常识判断|法律常识|劳动法": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.3}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 2, "all": 11, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.3}, "数量关系|数学运算|容斥原理问题": {"hit": 7, "all": 20, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.060594923945004, "acc": 0.35}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 32.85243511338, "acc": 0.4}, "数量关系|数学运算|工程问题": {"hit": 9, "all": 41, "difficulty": {"6": {"hit": 5, "all": 10, "acc": 0.5}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "7": {"hit": 0, "all": 11, "acc": 0.0}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.21951219512195122}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 42.448790404570005, "acc": 0.1}, "判断推理|逻辑判断": {"hit": 70, "all": 174, "difficulty": {"5": {"hit": 33, "all": 78, "acc": 0.4230769230769231}, "4": {"hit": 18, "all": 40, "acc": 0.45}, "3": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "6": {"hit": 11, "all": 28, "acc": 0.39285714285714285}, "7": {"hit": 2, "all": 15, "acc": 0.13333333333333333}}, "human_acc": 63.67314146826951, "acc": 0.40229885057471265}, "判断推理|逻辑判断|翻译推理": {"hit": 14, "all": 40, "difficulty": {"5": {"hit": 6, "all": 18, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.35}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.19779781423, "acc": 0.2}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 81.05276778267998, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 57, "all": 151, "difficulty": {"4": {"hit": 16, "all": 42, "acc": 0.38095238095238093}, "5": {"hit": 18, "all": 41, "acc": 0.43902439024390244}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 6, "all": 17, "acc": 0.35294117647058826}}, "human_acc": 64.30090962542516, "acc": 0.37748344370860926}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 1, "all": 8, "acc": 0.125}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 26.47008276835, "acc": 0.2}, "数量关系|数学运算|经济利润问题": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 45.9671414727, "acc": 0.36363636363636365}, "数量关系|数学运算|行程问题": {"hit": 26, "all": 65, "difficulty": {"4": {"hit": 6, "all": 12, "acc": 0.5}, "6": {"hit": 10, "all": 21, "acc": 0.47619047619047616}, "5": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "7": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.22168221813383, "acc": 0.4}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.2}, "数量关系|数学运算|统筹规划问题": {"hit": 4, "all": 17, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.23529411764705882}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 63, "all": 139, "difficulty": {"5": {"hit": 15, "all": 35, "acc": 0.42857142857142855}, "4": {"hit": 21, "all": 39, "acc": 0.5384615384615384}, "7": {"hit": 4, "all": 10, "acc": 0.4}, "6": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "3": {"hit": 14, "all": 27, "acc": 0.5185185185185185}}, "human_acc": 66.39573058612521, "acc": 0.45323741007194246}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.3}, "判断推理|定义判断": {"hit": 34, "all": 80, "difficulty": {"6": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 7, "all": 17, "acc": 0.4117647058823529}, "5": {"hit": 18, "all": 38, "acc": 0.47368421052631576}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 7, "all": 16, "acc": 0.4375}}, "human_acc": 74.80628203606001, "acc": 0.425}, "判断推理|定义判断|单定义": {"hit": 29, "all": 70, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "5": {"hit": 16, "all": 33, "acc": 0.48484848484848486}, "3": {"hit": 7, "all": 16, "acc": 0.4375}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 76.77242145958287, "acc": 0.4142857142857143}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 0, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.40619386915, "acc": 0.0}, "数量关系|数学运算|概率问题": {"hit": 10, "all": 41, "difficulty": {"7": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 0, "all": 6, "acc": 0.0}}, "human_acc": 33.07907322403902, "acc": 0.24390243902439024}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 8, "all": 21, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.70427273091905, "acc": 0.38095238095238093}, "数量关系|数学运算|行程问题|普通行程": {"hit": 9, "all": 13, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 38.23392225894615, "acc": 0.6923076923076923}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.6}, "判断推理|定义判断|单定义|原因结果": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.4}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 52.80798031047, "acc": 0.1}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 40.27857733925454, "acc": 0.36363636363636365}, "判断推理|定义判断|单定义|主客体": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.51134304743, "acc": 0.4}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 45, "all": 108, "difficulty": {"5": {"hit": 22, "all": 40, "acc": 0.55}, "4": {"hit": 12, "all": 30, "acc": 0.4}, "6": {"hit": 3, "all": 16, "acc": 0.1875}, "3": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.43212003256482, "acc": 0.4166666666666667}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 5, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 42.54616771271819, "acc": 0.45454545454545453}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.5}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 67, "all": 152, "difficulty": {"5": {"hit": 23, "all": 46, "acc": 0.5}, "4": {"hit": 14, "all": 42, "acc": 0.3333333333333333}, "3": {"hit": 18, "all": 29, "acc": 0.6206896551724138}, "7": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "6": {"hit": 7, "all": 23, "acc": 0.30434782608695654}}, "human_acc": 65.94677786230925, "acc": 0.4407894736842105}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 48.761151281054545, "acc": 0.36363636363636365}, "言语理解与表达|阅读理解": {"hit": 201, "all": 359, "difficulty": {"4": {"hit": 84, "all": 154, "acc": 0.5454545454545454}, "5": {"hit": 42, "all": 69, "acc": 0.6086956521739131}, "6": {"hit": 22, "all": 39, "acc": 0.5641025641025641}, "3": {"hit": 39, "all": 54, "acc": 0.7222222222222222}, "7": {"hit": 14, "all": 43, "acc": 0.32558139534883723}}, "human_acc": 68.55487799855013, "acc": 0.5598885793871866}, "言语理解与表达|阅读理解|词句理解题": {"hit": 9, "all": 20, "difficulty": {"4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.47019993558001, "acc": 0.45}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.5}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.2}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 31.268754734510004, "acc": 0.3}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 68.49700996277002, "acc": 0.6}, "判断推理|定义判断|单定义|拆词": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.6}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.2}, "判断推理|逻辑判断|削弱题型": {"hit": 24, "all": 66, "difficulty": {"4": {"hit": 8, "all": 14, "acc": 0.5714285714285714}, "6": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 59.45006052624239, "acc": 0.36363636363636365}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 6, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 49.95776411780909, "acc": 0.5454545454545454}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 39.62717032088, "acc": 0.0}, "判断推理|定义判断|单定义|方式目的": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.75877968150999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题": {"hit": 182, "all": 319, "difficulty": {"5": {"hit": 36, "all": 58, "acc": 0.6206896551724138}, "6": {"hit": 19, "all": 33, "acc": 0.5757575757575758}, "3": {"hit": 36, "all": 49, "acc": 0.7346938775510204}, "4": {"hit": 79, "all": 140, "acc": 0.5642857142857143}, "7": {"hit": 12, "all": 39, "acc": 0.3076923076923077}}, "human_acc": 68.63568244351346, "acc": 0.5705329153605015}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 34, "all": 48, "difficulty": {"5": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "4": {"hit": 16, "all": 23, "acc": 0.6956521739130435}, "3": {"hit": 6, "all": 7, "acc": 0.8571428571428571}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 70.08123149284167, "acc": 0.7083333333333334}, "言语理解与表达|阅读理解|细节判断题": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 79.6963205937, "acc": 0.5}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 35.79458859062, "acc": 0.1}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 10, "all": 25, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.4}, "判断推理|逻辑判断|加强题型": {"hit": 28, "all": 48, "difficulty": {"3": {"hit": 3, "all": 3, "acc": 1.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 16, "all": 26, "acc": 0.6153846153846154}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 5, "all": 7, "acc": 0.7142857142857143}}, "human_acc": 62.50620258335624, "acc": 0.5833333333333334}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 57.09157593556, "acc": 0.5}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 9, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 7, "all": 7, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 62.78980569171999, "acc": 0.9}, "言语理解与表达|语句表达": {"hit": 30, "all": 95, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "4": {"hit": 15, "all": 40, "acc": 0.375}, "3": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "6": {"hit": 5, "all": 11, "acc": 0.45454545454545453}}, "human_acc": 67.41332639953578, "acc": 0.3157894736842105}, "言语理解与表达|语句表达|语句填空题": {"hit": 15, "all": 30, "difficulty": {"5": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "6": {"hit": 4, "all": 5, "acc": 0.8}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.5}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 56.2001919259, "acc": 0.5}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 60.02576181201, "acc": 0.5}, "判断推理|定义判断|单定义|大前提": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.4}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 17, "all": 30, "difficulty": {"3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 74.24320108609, "acc": 0.5666666666666667}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 25, "all": 38, "difficulty": {"3": {"hit": 6, "all": 9, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "5": {"hit": 5, "all": 5, "acc": 1.0}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 72.18852298403947, "acc": 0.6578947368421053}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 22, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 11, "all": 19, "acc": 0.5789473684210527}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 66.77662401733, "acc": 0.55}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|定义判断|多定义|常规问法": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.5}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 75.30809915712001, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 12, "all": 22, "difficulty": {"4": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 64.28934778878182, "acc": 0.5454545454545454}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 18, "all": 31, "difficulty": {"5": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 8, "all": 13, "acc": 0.6153846153846154}}, "human_acc": 63.04056480034193, "acc": 0.5806451612903226}, "判断推理|逻辑判断|原因解释": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.4}, "判断推理|定义判断|单定义|故事类": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.6}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 15, "all": 28, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "3": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.32961605834642, "acc": 0.5357142857142857}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.5}, "判断推理|逻辑判断|组合排列-材料": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 68.78145644953, "acc": 0.0}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.51476866928999, "acc": 0.5}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 14, "all": 29, "difficulty": {"5": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 8, "all": 15, "acc": 0.5333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.4827586206896552}, "言语理解与表达|语句表达|语句排序题": {"hit": 10, "all": 55, "difficulty": {"4": {"hit": 9, "all": 29, "acc": 0.3103448275862069}, "3": {"hit": 1, "all": 14, "acc": 0.07142857142857142}, "5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.18181818181818182}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 1, "all": 12, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.08333333333333333}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 83.03719898832999, "acc": 0.0}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 4, "all": 13, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.3076923076923077}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 12, "all": 22, "difficulty": {"3": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 7, "all": 12, "acc": 0.5833333333333334}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.5454545454545454}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.3}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.1}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.69770659340001, "acc": 0.3}, "言语理解与表达|阅读理解|标题填入题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 53.00512973501001, "acc": 0.5}, "资料分析": {"hit": 156, "all": 496, "difficulty": {"6": {"hit": 25, "all": 82, "acc": 0.3048780487804878}, "3": {"hit": 14, "all": 37, "acc": 0.3783783783783784}, "5": {"hit": 43, "all": 155, "acc": 0.27741935483870966}, "4": {"hit": 66, "all": 184, "acc": 0.358695652173913}, "7": {"hit": 6, "all": 34, "acc": 0.17647058823529413}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.31451612903225806}, "资料分析|基期与现期": {"hit": 18, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "4": {"hit": 12, "all": 30, "acc": 0.4}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 71.02920549983685, "acc": 0.3157894736842105}, "资料分析|基期与现期|基期计算": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 5, "all": 8, "acc": 0.625}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.5}, "资料分析|文字资料": {"hit": 74, "all": 237, "difficulty": {"6": {"hit": 12, "all": 39, "acc": 0.3076923076923077}, "3": {"hit": 6, "all": 17, "acc": 0.35294117647058826}, "5": {"hit": 21, "all": 75, "acc": 0.28}, "4": {"hit": 31, "all": 88, "acc": 0.3522727272727273}, "7": {"hit": 3, "all": 16, "acc": 0.1875}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.31223628691983124}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 4, "all": 8, "difficulty": {"5": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.5}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 2, "all": 5, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.34466161420001, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 4, "all": 4, "acc": 1.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 68.77892047476, "acc": 0.4}, "资料分析|简单计算": {"hit": 11, "all": 30, "difficulty": {"3": {"hit": 5, "all": 11, "acc": 0.45454545454545453}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.36666666666666664}, "资料分析|简单计算|直接找数": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.5}, "资料分析|简单计算|简单加减计算": {"hit": 5, "all": 10, "difficulty": {"3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 85.66512725525001, "acc": 0.5}, "资料分析|增长率": {"hit": 9, "all": 32, "difficulty": {"5": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.28125}, "资料分析|增长率|一般增长率": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.2}, "资料分析|比重问题": {"hit": 8, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 6, "all": 13, "acc": 0.46153846153846156}, "5": {"hit": 1, "all": 12, "acc": 0.08333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.38629613428436, "acc": 0.25}, "资料分析|比重问题|现期比重": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.35875248133, "acc": 0.4}, "资料分析|增长量": {"hit": 12, "all": 26, "difficulty": {"4": {"hit": 5, "all": 8, "acc": 0.625}, "6": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.02933960017693, "acc": 0.46153846153846156}, "资料分析|增长量|增长量计算": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.01181165196002, "acc": 0.6}, "资料分析|平均数问题": {"hit": 12, "all": 40, "difficulty": {"4": {"hit": 5, "all": 15, "acc": 0.3333333333333333}, "6": {"hit": 4, "all": 11, "acc": 0.36363636363636365}, "5": {"hit": 3, "all": 8, "acc": 0.375}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 64.02933098769998, "acc": 0.3}, "资料分析|平均数问题|现期平均数": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.03596569742999, "acc": 0.3}, "资料分析|增长率|间隔增长率": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.11288202957999, "acc": 0.5}, "资料分析|倍数与比值相关": {"hit": 8, "all": 31, "difficulty": {"3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.25806451612903225}, "资料分析|倍数与比值相关|比值计算": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.44683392969999, "acc": 0.2}, "资料分析|倍数与比值相关|现期倍数": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 76.80972094145, "acc": 0.3}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.4}, "资料分析|比重问题|基期比重": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.1}, "资料分析|比重问题|两期比重": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 63.78078638926, "acc": 0.3}, "资料分析|增长率|混合增长率": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.69437779192001, "acc": 0.2}, "资料分析|增长量|增长量比较": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.4}, "资料分析|比重问题|混合比重": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.4202550099, "acc": 0.0}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.3}, "资料分析|平均数问题|基期平均数": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.34429652963, "acc": 0.2}, "资料分析|简单计算|排序类": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.1}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 1, "all": 3, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 71.31262790903334, "acc": 0.3333333333333333}, "资料分析|基期与现期|基期比较": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.2}, "资料分析|平均数问题|平均数的增长量": {"hit": 4, "all": 7, "difficulty": {"5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 57.80231180570001, "acc": 0.5714285714285714}, "资料分析|基期与现期|现期追赶": {"hit": 2, "all": 7, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.091439548028575, "acc": 0.2857142857142857}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 1, "all": 1, "difficulty": {"5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 81.6901408451, "acc": 1.0}}
results/202309/details/ChatGLM2-6B/difficulty_result.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"acc": 0.38009049773755654, "hit": 672, "all": 1768}, "3": {"hit": 88, "all": 193, "acc": 0.45595854922279794}, "4": {"hit": 197, "all": 470, "acc": 0.41914893617021276}, "5": {"hit": 226, "all": 561, "acc": 0.4028520499108734}, "6": {"hit": 108, "all": 306, "acc": 0.35294117647058826}, "7": {"hit": 52, "all": 236, "acc": 0.22033898305084745}, "2": {"hit": 1, "all": 2, "acc": 0.5}}
results/202309/details/ChineseLlama-13B/acc_result.json ADDED
The diff for this file is too large to render. See raw diff
 
results/202309/details/ChineseLlama-13B/category_result-all.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 1076, "all": 3862, "difficulty": {"3": {"hit": 180, "all": 546, "acc": 0.32967032967032966}, "4": {"hit": 344, "all": 1078, "acc": 0.31910946196660483}, "5": {"hit": 258, "all": 1102, "acc": 0.23411978221415608}, "6": {"hit": 187, "all": 647, "acc": 0.2890262751159196}, "7": {"hit": 105, "all": 485, "acc": 0.21649484536082475}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 62.54492157609842, "acc": 0.27861211807353703}, "判断推理": {"hit": 94, "all": 350, "difficulty": {"3": {"hit": 12, "all": 41, "acc": 0.2926829268292683}, "4": {"hit": 24, "all": 77, "acc": 0.3116883116883117}, "5": {"hit": 46, "all": 155, "acc": 0.2967741935483871}, "6": {"hit": 9, "all": 55, "acc": 0.16363636363636364}, "7": {"hit": 3, "all": 22, "acc": 0.13636363636363635}}, "human_acc": 67.0821947146088, "acc": 0.26857142857142857}, "判断推理|类比推理": {"hit": 22, "all": 96, "difficulty": {"3": {"hit": 8, "all": 12, "acc": 0.6666666666666666}, "4": {"hit": 5, "all": 20, "acc": 0.25}, "5": {"hit": 4, "all": 39, "acc": 0.10256410256410256}, "6": {"hit": 4, "all": 22, "acc": 0.18181818181818182}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.82436428905626, "acc": 0.22916666666666666}, "判断推理|类比推理|逻辑关系": {"hit": 14, "all": 52, "difficulty": {"3": {"hit": 6, "all": 10, "acc": 0.6}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 2, "all": 15, "acc": 0.13333333333333333}, "6": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 66.80522117180384, "acc": 0.2692307692307692}, "判断推理|类比推理|逻辑关系|逻辑关系-对应关系": {"hit": 2, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.17893055848, "acc": 0.2}, "判断推理|类比推理|逻辑关系|逻辑关系-并列关系": {"hit": 3, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.78792280516363, "acc": 0.2727272727272727}, "判断推理|类比推理|语义关系": {"hit": 4, "all": 30, "difficulty": {"5": {"hit": 2, "all": 18, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 67.00170566224, "acc": 0.13333333333333333}, "判断推理|类比推理|语义关系|语义关系-近义关系": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.32486766705999, "acc": 0.2}, "判断推理|类比推理|语义关系|语义关系-反义关系": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.48564823635999, "acc": 0.1}, "判断推理|类比推理|拆分思维": {"hit": 4, "all": 14, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 66.51545006774286, "acc": 0.2857142857142857}, "判断推理|类比推理|语义关系|语义-其他": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 57.19460108329999, "acc": 0.1}, "未分类": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 56.33420313286, "acc": 0.3}, "判断推理|类比推理|逻辑关系|逻辑关系-包容关系": {"hit": 3, "all": 11, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.688079058, "acc": 0.2727272727272727}, "常识判断": {"hit": 48, "all": 226, "difficulty": {"5": {"hit": 15, "all": 87, "acc": 0.1724137931034483}, "7": {"hit": 8, "all": 48, "acc": 0.16666666666666666}, "6": {"hit": 8, "all": 50, "acc": 0.16}, "4": {"hit": 16, "all": 38, "acc": 0.42105263157894735}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 46.34274676514825, "acc": 0.21238938053097345}, "常识判断|人文常识": {"hit": 13, "all": 42, "difficulty": {"5": {"hit": 5, "all": 20, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 3, "all": 12, "acc": 0.25}, "4": {"hit": 5, "all": 8, "acc": 0.625}}, "human_acc": 53.66391099976427, "acc": 0.30952380952380953}, "常识判断|人文常识|文化常识": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.96110414555001, "acc": 0.2}, "常识判断|人文常识|文学常识": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 58.752282007969995, "acc": 0.1}, "常识判断|人文常识|中国历史": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 48.81674459668, "acc": 0.4}, "常识判断|科技常识": {"hit": 15, "all": 50, "difficulty": {"7": {"hit": 3, "all": 10, "acc": 0.3}, "5": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "6": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}}, "human_acc": 51.632498263487996, "acc": 0.3}, "常识判断|科技常识|科技理论与成就": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.63379060368, "acc": 0.3}, "常识判断|地理国情": {"hit": 4, "all": 21, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 43.98006307271429, "acc": 0.19047619047619047}, "常识判断|地理国情|自然常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 34.48786343879, "acc": 0.1}, "常识判断|科技常识|化学常识": {"hit": 5, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 4, "acc": 0.75}}, "human_acc": 49.661417476859995, "acc": 0.5}, "常识判断|科技常识|生物常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 49.046366131910005, "acc": 0.3}, "常识判断|地理国情|国情社情": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 54.87697121455001, "acc": 0.3}, "常识判断|法律常识": {"hit": 12, "all": 80, "difficulty": {"5": {"hit": 5, "all": 35, "acc": 0.14285714285714285}, "6": {"hit": 1, "all": 18, "acc": 0.05555555555555555}, "7": {"hit": 2, "all": 16, "acc": 0.125}, "4": {"hit": 3, "all": 8, "acc": 0.375}, "3": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 42.31029945337126, "acc": 0.15}, "常识判断|法律常识|刑法": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 54.76204423705999, "acc": 0.1}, "常识判断|科技常识|物理常识": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 51.029714180179994, "acc": 0.3}, "常识判断|科技常识|生活常识": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.79120292481, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-全同关系": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 60.46042829961, "acc": 0.3}, "常识判断|法律常识|民法": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.35864705227, "acc": 0.4}, "常识判断|人文常识|世界历史": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}}, "human_acc": 53.975357187650005, "acc": 0.5}, "常识判断|法律常识|宪法": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.401631275, "acc": 0.1}, "常识判断|经济常识": {"hit": 1, "all": 12, "difficulty": {"5": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.640840877308335, "acc": 0.08333333333333333}, "常识判断|经济常识|宏观经济与调控政策": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 44.16899929108, "acc": 0.1}, "判断推理|类比推理|逻辑关系|逻辑关系-交叉关系": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 65.22418918580999, "acc": 0.3}, "数量关系": {"hit": 121, "all": 485, "difficulty": {"5": {"hit": 25, "all": 116, "acc": 0.21551724137931033}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 43, "all": 132, "acc": 0.32575757575757575}, "4": {"hit": 27, "all": 68, "acc": 0.39705882352941174}, "7": {"hit": 24, "all": 160, "acc": 0.15}}, "human_acc": 40.061365720053836, "acc": 0.24948453608247423}, "数量关系|数学运算": {"hit": 121, "all": 485, "difficulty": {"5": {"hit": 25, "all": 116, "acc": 0.21551724137931033}, "3": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 43, "all": 132, "acc": 0.32575757575757575}, "4": {"hit": 27, "all": 68, "acc": 0.39705882352941174}, "7": {"hit": 24, "all": 160, "acc": 0.15}}, "human_acc": 40.061365720053836, "acc": 0.24948453608247423}, "数量关系|数学运算|几何问题": {"hit": 5, "all": 24, "difficulty": {"5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 39.76032017807084, "acc": 0.20833333333333334}, "数量关系|数学运算|几何问题|平面几何": {"hit": 3, "all": 12, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.133635875575, "acc": 0.25}, "数量关系|数学运算|最值问题": {"hit": 16, "all": 65, "difficulty": {"5": {"hit": 4, "all": 16, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 5, "all": 22, "acc": 0.22727272727272727}, "4": {"hit": 4, "all": 9, "acc": 0.4444444444444444}, "7": {"hit": 2, "all": 16, "acc": 0.125}}, "human_acc": 41.27603456994616, "acc": 0.24615384615384617}, "数量关系|数学运算|最值问题|非典型最值问题": {"hit": 8, "all": 34, "difficulty": {"5": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 1, "all": 9, "acc": 0.1111111111111111}}, "human_acc": 40.35697170282646, "acc": 0.23529411764705882}, "常识判断|法律常识|行政法": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 30.639119115729994, "acc": 0.0}, "常识判断|法律常识|其他法律法规": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 41.25920562352999, "acc": 0.2}, "常识判断|政治常识": {"hit": 3, "all": 21, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "7": {"hit": 2, "all": 9, "acc": 0.2222222222222222}}, "human_acc": 37.802677258790474, "acc": 0.14285714285714285}, "常识判断|政治常识|时政": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}}, "human_acc": 34.89429799924999, "acc": 0.1}, "常识判断|政治常识|中国特色社会主义建设": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 41.347386177160004, "acc": 0.2}, "数量关系|数学运算|周期问题": {"hit": 7, "all": 33, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "6": {"hit": 3, "all": 10, "acc": 0.3}}, "human_acc": 38.245969273603045, "acc": 0.21212121212121213}, "数量关系|数学运算|周期问题|周期余数问题": {"hit": 0, "all": 13, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 35.81940208507692, "acc": 0.0}, "常识判断|法律常识|经济法": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 37.83136397003, "acc": 0.0}, "数量关系|数学运算|排列组合问题": {"hit": 20, "all": 74, "difficulty": {"6": {"hit": 7, "all": 14, "acc": 0.5}, "4": {"hit": 6, "all": 10, "acc": 0.6}, "5": {"hit": 4, "all": 14, "acc": 0.2857142857142857}, "7": {"hit": 3, "all": 36, "acc": 0.08333333333333333}}, "human_acc": 33.405759431517595, "acc": 0.2702702702702703}, "数量关系|数学运算|排列组合问题|基础排列组合": {"hit": 2, "all": 14, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 28.644400674264286, "acc": 0.14285714285714285}, "言语理解与表达": {"hit": 686, "all": 2295, "difficulty": {"5": {"hit": 136, "all": 587, "acc": 0.23168654173764908}, "4": {"hit": 226, "all": 707, "acc": 0.31966053748231965}, "3": {"hit": 156, "all": 455, "acc": 0.34285714285714286}, "6": {"hit": 109, "all": 327, "acc": 0.3333333333333333}, "7": {"hit": 59, "all": 219, "acc": 0.2694063926940639}}, "human_acc": 66.81637952144999, "acc": 0.2989106753812636}, "言语理解与表达|逻辑填空": {"hit": 546, "all": 1841, "difficulty": {"5": {"hit": 110, "all": 498, "acc": 0.22088353413654618}, "4": {"hit": 175, "all": 513, "acc": 0.341130604288499}, "3": {"hit": 112, "all": 384, "acc": 0.2916666666666667}, "6": {"hit": 96, "all": 277, "acc": 0.34657039711191334}, "7": {"hit": 53, "all": 169, "acc": 0.3136094674556213}}, "human_acc": 66.44656371118516, "acc": 0.2965779467680608}, "言语理解与表达|逻辑填空|实词填空": {"hit": 36, "all": 151, "difficulty": {"5": {"hit": 6, "all": 49, "acc": 0.12244897959183673}, "4": {"hit": 16, "all": 39, "acc": 0.41025641025641024}, "3": {"hit": 5, "all": 26, "acc": 0.19230769230769232}, "6": {"hit": 6, "all": 24, "acc": 0.25}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}}, "human_acc": 63.11290800843907, "acc": 0.23841059602649006}, "言语理解与表达|逻辑填空|词的辨析": {"hit": 205, "all": 622, "difficulty": {"5": {"hit": 41, "all": 163, "acc": 0.25153374233128833}, "4": {"hit": 65, "all": 172, "acc": 0.37790697674418605}, "3": {"hit": 40, "all": 131, "acc": 0.3053435114503817}, "7": {"hit": 23, "all": 60, "acc": 0.38333333333333336}, "6": {"hit": 36, "all": 96, "acc": 0.375}}, "human_acc": 66.76874610652267, "acc": 0.3295819935691318}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-词义侧重": {"hit": 51, "all": 143, "difficulty": {"5": {"hit": 12, "all": 43, "acc": 0.27906976744186046}, "4": {"hit": 22, "all": 42, "acc": 0.5238095238095238}, "3": {"hit": 3, "all": 25, "acc": 0.12}, "6": {"hit": 9, "all": 19, "acc": 0.47368421052631576}, "7": {"hit": 5, "all": 14, "acc": 0.35714285714285715}}, "human_acc": 66.64745600073147, "acc": 0.35664335664335667}, "数量关系|数学运算|几何问题|立体几何": {"hit": 2, "all": 12, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 37.38700448056667, "acc": 0.16666666666666666}, "数量关系|数学运算|和差倍比问题": {"hit": 5, "all": 20, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 51.365180902629994, "acc": 0.25}, "数量关系|数学运算|公倍数与公约数问题": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.834794860600006, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析": {"hit": 212, "all": 771, "difficulty": {"5": {"hit": 41, "all": 201, "acc": 0.20398009950248755}, "4": {"hit": 68, "all": 217, "acc": 0.31336405529953915}, "3": {"hit": 46, "all": 167, "acc": 0.2754491017964072}, "6": {"hit": 39, "all": 116, "acc": 0.33620689655172414}, "7": {"hit": 18, "all": 70, "acc": 0.2571428571428571}}, "human_acc": 66.4145264015949, "acc": 0.27496757457846954}, "言语理解与表达|逻辑填空|语境分析|对应关系-解释类对应": {"hit": 48, "all": 165, "difficulty": {"5": {"hit": 11, "all": 45, "acc": 0.24444444444444444}, "4": {"hit": 12, "all": 44, "acc": 0.2727272727272727}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "6": {"hit": 8, "all": 27, "acc": 0.2962962962962963}, "3": {"hit": 12, "all": 32, "acc": 0.375}}, "human_acc": 65.38103981607519, "acc": 0.2909090909090909}, "数量关系|数学运算|排列组合问题|环形排列问题": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 26.693831188929995, "acc": 0.3}, "言语理解与表达|逻辑填空|成语填空": {"hit": 43, "all": 145, "difficulty": {"4": {"hit": 8, "all": 43, "acc": 0.18604651162790697}, "5": {"hit": 9, "all": 39, "acc": 0.23076923076923078}, "3": {"hit": 10, "all": 31, "acc": 0.3225806451612903}, "6": {"hit": 9, "all": 18, "acc": 0.5}, "7": {"hit": 7, "all": 14, "acc": 0.5}}, "human_acc": 69.23037595903519, "acc": 0.296551724137931}, "数量关系|数学运算|数学运算-其他": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 43.94974842076, "acc": 0.3}, "数量关系|数学运算|数列问题": {"hit": 5, "all": 18, "difficulty": {"7": {"hit": 0, "all": 7, "acc": 0.0}, "6": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 34.99098344071112, "acc": 0.2777777777777778}, "数量关系|数学运算|不定方程问题": {"hit": 6, "all": 26, "difficulty": {"5": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "7": {"hit": 2, "all": 8, "acc": 0.25}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 41.48429408539231, "acc": 0.23076923076923078}, "数量关系|数学运算|不定方程问题|普通不定方程": {"hit": 4, "all": 15, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 40.70558675868666, "acc": 0.26666666666666666}, "言语理解与表达|逻辑填空|语境分析|关联关系-转折关系": {"hit": 34, "all": 135, "difficulty": {"4": {"hit": 12, "all": 38, "acc": 0.3157894736842105}, "3": {"hit": 6, "all": 36, "acc": 0.16666666666666666}, "5": {"hit": 7, "all": 32, "acc": 0.21875}, "6": {"hit": 7, "all": 19, "acc": 0.3684210526315789}, "7": {"hit": 2, "all": 10, "acc": 0.2}}, "human_acc": 67.2510308321489, "acc": 0.2518518518518518}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-固定搭配": {"hit": 71, "all": 203, "difficulty": {"4": {"hit": 19, "all": 56, "acc": 0.3392857142857143}, "5": {"hit": 13, "all": 49, "acc": 0.2653061224489796}, "3": {"hit": 20, "all": 51, "acc": 0.39215686274509803}, "7": {"hit": 9, "all": 22, "acc": 0.4090909090909091}, "6": {"hit": 10, "all": 25, "acc": 0.4}}, "human_acc": 67.67567808645465, "acc": 0.3497536945812808}, "言语理解与表达|逻辑填空|语境分析|对应关系-重点词句对应": {"hit": 56, "all": 212, "difficulty": {"4": {"hit": 19, "all": 63, "acc": 0.30158730158730157}, "5": {"hit": 8, "all": 43, "acc": 0.18604651162790697}, "3": {"hit": 14, "all": 51, "acc": 0.27450980392156865}, "6": {"hit": 11, "all": 32, "acc": 0.34375}, "7": {"hit": 4, "all": 23, "acc": 0.17391304347826086}}, "human_acc": 67.16383399377828, "acc": 0.2641509433962264}, "常识判断|法律常识|民事诉讼法": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 37.81514019971, "acc": 0.2}, "数量关系|数学运算|周期问题|周期问题-其他": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 3, "all": 3, "acc": 1.0}, "5": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 43.75836103538, "acc": 0.4}, "数量关系|数学运算|排列组合问题|排列组合问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.74816897944, "acc": 0.4}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-感情色彩": {"hit": 39, "all": 137, "difficulty": {"5": {"hit": 7, "all": 36, "acc": 0.19444444444444445}, "3": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "4": {"hit": 10, "all": 35, "acc": 0.2857142857142857}, "6": {"hit": 7, "all": 24, "acc": 0.2916666666666667}, "7": {"hit": 6, "all": 14, "acc": 0.42857142857142855}}, "human_acc": 65.9299610739475, "acc": 0.2846715328467153}, "常识判断|法律常识|劳动法": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 51.41524415364002, "acc": 0.2}, "数量关系|数学运算|最值问题|最不利构造": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 33.69646637155, "acc": 0.2}, "数量关系|数学运算|最值问题|构造数列": {"hit": 4, "all": 11, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 40.52370384819999, "acc": 0.36363636363636365}, "数量关系|数学运算|排列组合问题|同素分堆问题": {"hit": 5, "all": 10, "difficulty": {"6": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 48.174738159739995, "acc": 0.5}, "数量关系|数学运算|容斥原理问题": {"hit": 5, "all": 20, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 13, "acc": 0.23076923076923078}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 32.060594923945004, "acc": 0.25}, "数量关系|数学运算|容斥原理问题|两集合": {"hit": 5, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 3, "all": 5, "acc": 0.6}}, "human_acc": 32.85243511338, "acc": 0.5}, "数量关系|数学运算|工程问题": {"hit": 11, "all": 41, "difficulty": {"6": {"hit": 3, "all": 10, "acc": 0.3}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "7": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 2, "all": 10, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 46.58662222520977, "acc": 0.2682926829268293}, "数量关系|数学运算|工程问题|给效率比例型": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 42.448790404570005, "acc": 0.3}, "判断推理|逻辑判断": {"hit": 49, "all": 174, "difficulty": {"5": {"hit": 29, "all": 78, "acc": 0.3717948717948718}, "4": {"hit": 15, "all": 40, "acc": 0.375}, "3": {"hit": 0, "all": 13, "acc": 0.0}, "6": {"hit": 5, "all": 28, "acc": 0.17857142857142858}, "7": {"hit": 0, "all": 15, "acc": 0.0}}, "human_acc": 63.67314146826951, "acc": 0.28160919540229884}, "判断推理|逻辑判断|翻译推理": {"hit": 9, "all": 40, "difficulty": {"5": {"hit": 8, "all": 18, "acc": 0.4444444444444444}, "4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 7, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.6425370730575, "acc": 0.225}, "判断推理|逻辑判断|翻译推理|常规翻译": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 62.71737773545999, "acc": 0.3}, "数量关系|数学运算|工程问题|给完工时间型": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 52.19779781423, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|推理形式": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 81.05276778267998, "acc": 0.1}, "言语理解与表达|逻辑填空|语境分析|关联关系-并列关系": {"hit": 36, "all": 151, "difficulty": {"4": {"hit": 12, "all": 42, "acc": 0.2857142857142857}, "5": {"hit": 7, "all": 41, "acc": 0.17073170731707318}, "6": {"hit": 6, "all": 22, "acc": 0.2727272727272727}, "3": {"hit": 6, "all": 29, "acc": 0.20689655172413793}, "7": {"hit": 5, "all": 17, "acc": 0.29411764705882354}}, "human_acc": 64.30090962542516, "acc": 0.23841059602649006}, "数量关系|数学运算|排列组合问题|相邻问题": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 26.47008276835, "acc": 0.0}, "数量关系|数学运算|经济利润问题": {"hit": 1, "all": 11, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 45.9671414727, "acc": 0.09090909090909091}, "数量关系|数学运算|行程问题": {"hit": 19, "all": 65, "difficulty": {"4": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 6, "all": 21, "acc": 0.2857142857142857}, "5": {"hit": 5, "all": 12, "acc": 0.4166666666666667}, "7": {"hit": 5, "all": 18, "acc": 0.2777777777777778}, "3": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 44.22168221813383, "acc": 0.2923076923076923}, "数量关系|数学运算|行程问题|火车过桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 56.76722241438, "acc": 0.3}, "数量关系|数学运算|统筹规划问题": {"hit": 4, "all": 17, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 38.60918943125882, "acc": 0.23529411764705882}, "数量关系|数学运算|年龄问题": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 50.094132731760006, "acc": 0.2}, "言语理解与表达|逻辑填空|词的辨析|词的辨析-程度轻重": {"hit": 44, "all": 139, "difficulty": {"5": {"hit": 9, "all": 35, "acc": 0.2571428571428571}, "4": {"hit": 14, "all": 39, "acc": 0.358974358974359}, "7": {"hit": 3, "all": 10, "acc": 0.3}, "6": {"hit": 10, "all": 28, "acc": 0.35714285714285715}, "3": {"hit": 8, "all": 27, "acc": 0.2962962962962963}}, "human_acc": 66.39573058612521, "acc": 0.31654676258992803}, "数量关系|数学运算|排列组合问题|不相邻问题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 6, "acc": 0.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 32.67128810771, "acc": 0.3}, "判断推理|定义判断": {"hit": 23, "all": 80, "difficulty": {"6": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 13, "all": 38, "acc": 0.34210526315789475}, "7": {"hit": 2, "all": 4, "acc": 0.5}, "3": {"hit": 4, "all": 16, "acc": 0.25}}, "human_acc": 74.80628203606001, "acc": 0.2875}, "判断推理|定义判断|单定义": {"hit": 20, "all": 70, "difficulty": {"6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 4, "all": 15, "acc": 0.26666666666666666}, "5": {"hit": 10, "all": 33, "acc": 0.30303030303030304}, "3": {"hit": 4, "all": 16, "acc": 0.25}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 76.77242145958287, "acc": 0.2857142857142857}, "判断推理|定义判断|单定义|单定义-其他句式": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 75.40619386915, "acc": 0.2}, "数量关系|数学运算|概率问题": {"hit": 11, "all": 41, "difficulty": {"7": {"hit": 3, "all": 17, "acc": 0.17647058823529413}, "5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 6, "acc": 0.5}}, "human_acc": 33.07907322403902, "acc": 0.2682926829268293}, "数量关系|数学运算|概率问题|给情况求概率": {"hit": 6, "all": 21, "difficulty": {"7": {"hit": 2, "all": 10, "acc": 0.2}, "5": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 30.70427273091905, "acc": 0.2857142857142857}, "数量关系|数学运算|行程问题|普通行程": {"hit": 3, "all": 13, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 38.23392225894615, "acc": 0.23076923076923078}, "数量关系|数学运算|工程问题|工程问题-其他": {"hit": 2, "all": 10, "difficulty": {"7": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 42.721296495400004, "acc": 0.2}, "数量关系|数学运算|行程问题|平均速度": {"hit": 0, "all": 10, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 53.32624301306, "acc": 0.0}, "判断推理|定义判断|单定义|原因结果": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 81.04459294875, "acc": 0.3}, "数量关系|数学运算|最值问题|多集合反向构造": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 52.80798031047, "acc": 0.2}, "数量关系|数学运算|行程问题|相遇追及": {"hit": 5, "all": 11, "difficulty": {"6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 40.27857733925454, "acc": 0.45454545454545453}, "判断推���|定义判断|单定义|主客体": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.51134304743, "acc": 0.3}, "言语理解与表达|逻辑填空|语境分析|关联关系-因果关系": {"hit": 38, "all": 108, "difficulty": {"5": {"hit": 8, "all": 40, "acc": 0.2}, "4": {"hit": 13, "all": 30, "acc": 0.43333333333333335}, "6": {"hit": 7, "all": 16, "acc": 0.4375}, "3": {"hit": 8, "all": 19, "acc": 0.42105263157894735}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 68.43212003256482, "acc": 0.35185185185185186}, "数量关系|数学运算|不定方程问题|不定方程组": {"hit": 2, "all": 11, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 42.54616771271819, "acc": 0.18181818181818182}, "数量关系|数学运算|排列组合问题|错位排列": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 34.34234964509, "acc": 0.3}, "数量关系|数学运算|周期问题|周期相遇问题": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.88811485691, "acc": 0.3}, "言语理解与表达|逻辑填空|混搭填空": {"hit": 50, "all": 152, "difficulty": {"5": {"hit": 13, "all": 46, "acc": 0.2826086956521739}, "4": {"hit": 18, "all": 42, "acc": 0.42857142857142855}, "3": {"hit": 11, "all": 29, "acc": 0.3793103448275862}, "7": {"hit": 2, "all": 12, "acc": 0.16666666666666666}, "6": {"hit": 6, "all": 23, "acc": 0.2608695652173913}}, "human_acc": 65.94677786230925, "acc": 0.32894736842105265}, "数量关系|数学运算|工程问题|给具体单位型": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 48.761151281054545, "acc": 0.18181818181818182}, "言语理解与表达|阅读理解": {"hit": 111, "all": 359, "difficulty": {"4": {"hit": 42, "all": 154, "acc": 0.2727272727272727}, "5": {"hit": 20, "all": 69, "acc": 0.2898550724637681}, "6": {"hit": 12, "all": 39, "acc": 0.3076923076923077}, "3": {"hit": 34, "all": 54, "acc": 0.6296296296296297}, "7": {"hit": 3, "all": 43, "acc": 0.06976744186046512}}, "human_acc": 68.55487799855013, "acc": 0.30919220055710306}, "言语理解与表达|阅读理解|词句理解题": {"hit": 6, "all": 20, "difficulty": {"4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 69.47019993558001, "acc": 0.3}, "言语理解与表达|阅读理解|词句理解题|实词": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 4, "acc": 0.75}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.87169104351999, "acc": 0.4}, "判断推理|逻辑判断|翻译推理|集合推理": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.30299281132001, "acc": 0.3}, "数量关系|数学运算|容斥原理问题|三集合": {"hit": 0, "all": 10, "difficulty": {"7": {"hit": 0, "all": 8, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 31.268754734510004, "acc": 0.0}, "判断推理|逻辑判断|翻译推理|翻译推理-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 68.49700996277002, "acc": 0.2}, "判断推理|定义判断|单定义|拆词": {"hit": 6, "all": 10, "difficulty": {"5": {"hit": 4, "all": 7, "acc": 0.5714285714285714}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 78.72412476279, "acc": 0.6}, "数量关系|数学运算|概率问题|给概率求概率": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 31.51805716275, "acc": 0.3}, "判断推理|逻辑判断|削弱题型": {"hit": 18, "all": 66, "difficulty": {"4": {"hit": 6, "all": 14, "acc": 0.42857142857142855}, "6": {"hit": 3, "all": 10, "acc": 0.3}, "3": {"hit": 0, "all": 4, "acc": 0.0}, "5": {"hit": 9, "all": 28, "acc": 0.32142857142857145}, "7": {"hit": 0, "all": 10, "acc": 0.0}}, "human_acc": 59.45006052624239, "acc": 0.2727272727272727}, "判断推理|逻辑判断|削弱题型|削弱论点": {"hit": 2, "all": 11, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 49.95776411780909, "acc": 0.18181818181818182}, "数量关系|数学运算|行程问题|流水行船": {"hit": 4, "all": 11, "difficulty": {"4": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "5": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 43.2203149, "acc": 0.36363636363636365}, "数量关系|数学运算|概率问题|概率问题-其他": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 39.62717032088, "acc": 0.2}, "判断推理|定义判断|单定义|方式目的": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.75877968150999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题": {"hit": 97, "all": 319, "difficulty": {"5": {"hit": 15, "all": 58, "acc": 0.25862068965517243}, "6": {"hit": 10, "all": 33, "acc": 0.30303030303030304}, "3": {"hit": 30, "all": 49, "acc": 0.6122448979591837}, "4": {"hit": 39, "all": 140, "acc": 0.2785714285714286}, "7": {"hit": 3, "all": 39, "acc": 0.07692307692307693}}, "human_acc": 68.63568244351346, "acc": 0.30407523510971785}, "言语理解与表达|阅读理解|中心理解题|主题词": {"hit": 17, "all": 48, "difficulty": {"5": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 6, "all": 23, "acc": 0.2608695652173913}, "3": {"hit": 5, "all": 7, "acc": 0.7142857142857143}, "7": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "6": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 70.08123149284167, "acc": 0.3541666666666667}, "言语理解与表达|阅读理解|细节判断题": {"hit": 7, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 3, "all": 3, "acc": 1.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 79.6963205937, "acc": 0.7}, "数量关系|数学运算|行程问题|行程问题-其他": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "7": {"hit": 1, "all": 4, "acc": 0.25}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 35.79458859062, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|关联词-并列": {"hit": 7, "all": 25, "difficulty": {"6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 1, "all": 4, "acc": 0.25}}, "human_acc": 63.99639746408, "acc": 0.28}, "判断推理|逻辑判断|加强题型": {"hit": 15, "all": 48, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 4, "all": 8, "acc": 0.5}, "5": {"hit": 10, "all": 26, "acc": 0.38461538461538464}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}}, "human_acc": 62.50620258335624, "acc": 0.3125}, "判断推理|逻辑判断|加强题型|补充论据": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 57.09157593556, "acc": 0.3}, "判断推理|逻辑判断|加强题型|搭桥": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 62.78980569171999, "acc": 0.3}, "言语理解与表达|语句表达": {"hit": 29, "all": 95, "difficulty": {"5": {"hit": 6, "all": 20, "acc": 0.3}, "7": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "4": {"hit": 9, "all": 40, "acc": 0.225}, "3": {"hit": 10, "all": 17, "acc": 0.5882352941176471}, "6": {"hit": 1, "all": 11, "acc": 0.09090909090909091}}, "human_acc": 67.41332639953578, "acc": 0.30526315789473685}, "言语理解与表达|语句表达|语句填空题": {"hit": 6, "all": 30, "difficulty": {"5": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 1, "all": 5, "acc": 0.2}}, "human_acc": 55.56949742254332, "acc": 0.2}, "言语理解与表达|语句表达|语句填空题|开头": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 2, "all": 4, "acc": 0.5}, "4": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 56.2001919259, "acc": 0.2}, "判断推理|逻辑判断|加强题型|必要条件": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 6, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 60.02576181201, "acc": 0.0}, "判断推理|定义判断|单定义|大前提": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "3": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 73.46423939651001, "acc": 0.1}, "言语理解与表达|阅读理解|词句理解题|代词": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 68.06870882764, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总": {"hit": 9, "all": 30, "difficulty": {"3": {"hit": 3, "all": 6, "acc": 0.5}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 74.24320108609, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|关联词-转折": {"hit": 11, "all": 38, "difficulty": {"3": {"hit": 5, "all": 9, "acc": 0.5555555555555556}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 5, "all": 17, "acc": 0.29411764705882354}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 72.18852298403947, "acc": 0.2894736842105263}, "言语理解与表达|阅读理解|中心理解题|关联词-对策": {"hit": 12, "all": 40, "difficulty": {"5": {"hit": 1, "all": 5, "acc": 0.2}, "4": {"hit": 6, "all": 19, "acc": 0.3157894736842105}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "7": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 66.77662401733, "acc": 0.3}, "言语理解与表达|语句表达|接语选择题": {"hit": 5, "all": 10, "difficulty": {"7": {"hit": 2, "all": 2, "acc": 1.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 62.38647134424, "acc": 0.5}, "判断推理|定义判断|多定义": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|定义判断|多定义|常规问法": {"hit": 3, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.0433060714, "acc": 0.3}, "判断推理|逻辑判断|加强题型|加强选非题": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 2, "all": 2, "acc": 1.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 75.30809915712001, "acc": 0.4}, "言语理解与表达|阅读理解|中心理解题|行文脉络-总分": {"hit": 6, "all": 22, "difficulty": {"4": {"hit": 1, "all": 9, "acc": 0.1111111111111111}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 64.28934778878182, "acc": 0.2727272727272727}, "言语理解与表达|阅读理解|中心理解题|程度词": {"hit": 11, "all": 31, "difficulty": {"5": {"hit": 3, "all": 6, "acc": 0.5}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 2, "all": 2, "acc": 1.0}, "7": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 4, "all": 13, "acc": 0.3076923076923077}}, "human_acc": 63.04056480034193, "acc": 0.3548387096774194}, "判断推理|逻辑判断|原因解释": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.16088493282, "acc": 0.3}, "判断推理|定义判断|单定义|故事类": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 84.49767651094, "acc": 0.3}, "言语理解与表达|阅读理解|中心理解题|特殊问法": {"hit": 8, "all": 28, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 3, "all": 9, "acc": 0.3333333333333333}, "3": {"hit": 4, "all": 6, "acc": 0.6666666666666666}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 4, "acc": 0.0}}, "human_acc": 68.32961605834642, "acc": 0.2857142857142857}, "判断推理|逻辑判断|削弱题型|削弱选非题": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.58474381049999, "acc": 0.3}, "判断推理|逻辑判断|削弱题型|拆桥": {"hit": 1, "all": 10, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 60.04176179382, "acc": 0.1}, "言语理解与表达|语句表达|语句填空题|结尾": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 46.99353167244, "acc": 0.2}, "判断推理|逻辑判断|组合排列-材料": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}}, "human_acc": 68.78145644953, "acc": 0.4}, "言语理解与表达|语句表达|语句填空题|中间": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.51476866928999, "acc": 0.2}, "言语理解与表达|阅读理解|中心理解题|关联词-因果": {"hit": 6, "all": 29, "difficulty": {"5": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "6": {"hit": 0, "all": 3, "acc": 0.0}, "4": {"hit": 3, "all": 15, "acc": 0.2}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.0384110174069, "acc": 0.20689655172413793}, "言语理解与表达|语句表达|语句排序题": {"hit": 18, "all": 55, "difficulty": {"4": {"hit": 7, "all": 29, "acc": 0.2413793103448276}, "3": {"hit": 9, "all": 14, "acc": 0.6428571428571429}, "5": {"hit": 2, "all": 7, "acc": 0.2857142857142857}, "6": {"hit": 0, "all": 5, "acc": 0.0}}, "human_acc": 74.78757039704001, "acc": 0.32727272727272727}, "言语理解与表达|语句表达|语句排序题|确定顺序": {"hit": 6, "all": 12, "difficulty": {"4": {"hit": 2, "all": 5, "acc": 0.4}, "3": {"hit": 3, "all": 4, "acc": 0.75}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.2333906347, "acc": 0.5}, "言语理解与表达|语句表达|语句排序题|非首句特征": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 3, "all": 7, "acc": 0.42857142857142855}, "3": {"hit": 3, "all": 3, "acc": 1.0}}, "human_acc": 83.03719898832999, "acc": 0.6}, "言语理解与表达|语句表达|语句排序题|确定捆绑": {"hit": 2, "all": 13, "difficulty": {"4": {"hit": 0, "all": 7, "acc": 0.0}, "3": {"hit": 2, "all": 4, "acc": 0.5}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 77.69154875399232, "acc": 0.15384615384615385}, "言语理解与表达|阅读理解|中心理解题|行文脉络-分总分": {"hit": 7, "all": 22, "difficulty": {"3": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 4, "all": 12, "acc": 0.3333333333333333}, "5": {"hit": 2, "all": 4, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 72.9498201946909, "acc": 0.3181818181818182}, "判断推理|逻辑判断|削弱题型|削弱论据": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 52.47360422099001, "acc": 0.4}, "判断推理|逻辑判断|削弱题型|因果倒置": {"hit": 4, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.9467117178, "acc": 0.4}, "言语理解与表达|语句表达|语句排序题|首句特征": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 71.83643557879998, "acc": 0.2}, "判断推理|逻辑判断|削弱题型|他因削弱": {"hit": 0, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.69770659340001, "acc": 0.0}, "言语理解与表达|阅读理解|标题填入题": {"hit": 1, "all": 10, "difficulty": {"7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 53.00512973501001, "acc": 0.1}, "资料分析": {"hit": 124, "all": 496, "difficulty": {"6": {"hit": 18, "all": 82, "acc": 0.21951219512195122}, "3": {"hit": 9, "all": 37, "acc": 0.24324324324324326}, "5": {"hit": 34, "all": 155, "acc": 0.21935483870967742}, "4": {"hit": 50, "all": 184, "acc": 0.2717391304347826}, "7": {"hit": 11, "all": 34, "acc": 0.3235294117647059}, "2": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 69.07169919470341, "acc": 0.25}, "资料分析|基期与现期": {"hit": 12, "all": 57, "difficulty": {"6": {"hit": 1, "all": 7, "acc": 0.14285714285714285}, "5": {"hit": 2, "all": 17, "acc": 0.11764705882352941}, "4": {"hit": 9, "all": 30, "acc": 0.3}, "2": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 71.02920549983685, "acc": 0.21052631578947367}, "资料分析|基期与现期|基期计算": {"hit": 2, "all": 10, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "4": {"hit": 2, "all": 8, "acc": 0.25}, "2": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.85815813289, "acc": 0.2}, "资料分析|文字资料": {"hit": 58, "all": 237, "difficulty": {"6": {"hit": 8, "all": 39, "acc": 0.20512820512820512}, "3": {"hit": 4, "all": 17, "acc": 0.23529411764705882}, "5": {"hit": 15, "all": 75, "acc": 0.2}, "4": {"hit": 25, "all": 88, "acc": 0.2840909090909091}, "7": {"hit": 5, "all": 16, "acc": 0.3125}, "2": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 69.12763865158183, "acc": 0.24472573839662448}, "判断推理|逻辑判断|加强题型|加强-其他": {"hit": 5, "all": 8, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 56.018162254625004, "acc": 0.625}, "判断推理|逻辑判断|削弱题型|削弱-其他": {"hit": 4, "all": 5, "difficulty": {"5": {"hit": 3, "all": 4, "acc": 0.75}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 61.34466161420001, "acc": 0.8}, "言语理解与表达|语句表达|语句排序题|尾句特征": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 68.77892047476, "acc": 0.2}, "资料分析|简单计算": {"hit": 9, "all": 30, "difficulty": {"3": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "4": {"hit": 2, "all": 9, "acc": 0.2222222222222222}, "5": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 82.90393719697998, "acc": 0.3}, "资料分析|简单计算|直接找数": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 2, "all": 5, "acc": 0.4}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "2": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 84.61737291947, "acc": 0.3}, "资料分析|简单计算|简单加减计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 85.66512725525001, "acc": 0.4}, "资料分析|增长率": {"hit": 5, "all": 32, "difficulty": {"5": {"hit": 0, "all": 9, "acc": 0.0}, "4": {"hit": 0, "all": 9, "acc": 0.0}, "6": {"hit": 2, "all": 8, "acc": 0.25}, "7": {"hit": 3, "all": 5, "acc": 0.6}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.71806505801563, "acc": 0.15625}, "资料分析|增长率|一般增长率": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 64.06221757717, "acc": 0.1}, "资料分析|比重问题": {"hit": 12, "all": 32, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 5, "all": 13, "acc": 0.38461538461538464}, "5": {"hit": 3, "all": 12, "acc": 0.25}, "6": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "7": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.38629613428436, "acc": 0.375}, "资料分析|比重问题|现期比重": {"hit": 3, "all": 10, "difficulty": {"3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 73.35875248133, "acc": 0.3}, "资料分析|增长量": {"hit": 9, "all": 26, "difficulty": {"4": {"hit": 4, "all": 8, "acc": 0.5}, "6": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 70.02933960017693, "acc": 0.34615384615384615}, "资料分析|增长量|增长量计算": {"hit": 4, "all": 10, "difficulty": {"4": {"hit": 2, "all": 3, "acc": 0.6666666666666666}, "5": {"hit": 1, "all": 5, "acc": 0.2}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.01181165196002, "acc": 0.4}, "资料分析|平均数问题": {"hit": 9, "all": 40, "difficulty": {"4": {"hit": 3, "all": 15, "acc": 0.2}, "6": {"hit": 3, "all": 11, "acc": 0.2727272727272727}, "5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 2, "all": 3, "acc": 0.6666666666666666}}, "human_acc": 64.02933098769998, "acc": 0.225}, "资料分析|平均数问题|现期平均数": {"hit": 3, "all": 10, "difficulty": {"4": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 69.03596569742999, "acc": 0.3}, "资料分析|增长率|间隔增长率": {"hit": 1, "all": 10, "difficulty": {"4": {"hit": 0, "all": 4, "acc": 0.0}, "6": {"hit": 1, "all": 4, "acc": 0.25}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 67.11288202957999, "acc": 0.1}, "资料分析|倍数与比值相关": {"hit": 7, "all": 31, "difficulty": {"3": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 2, "all": 6, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 11, "acc": 0.18181818181818182}, "5": {"hit": 3, "all": 10, "acc": 0.3}, "7": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 70.8255537505613, "acc": 0.22580645161290322}, "资料分析|倍数与比值相关|比值计算": {"hit": 4, "all": 10, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 3, "all": 5, "acc": 0.6}, "4": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 67.44683392969999, "acc": 0.4}, "资料分析|倍数与比值相关|现期倍数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "3": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 76.80972094145, "acc": 0.1}, "资料分析|综合分析": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 3, "all": 5, "acc": 0.6}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.99716763692, "acc": 0.3}, "资料分析|基期与现期|现期计算": {"hit": 4, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 3, "all": 5, "acc": 0.6}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 74.29458274163999, "acc": 0.4}, "资料分析|比重问题|基期比重": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 1, "all": 8, "acc": 0.125}, "7": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 58.812557757140006, "acc": 0.2}, "资料分析|比重问题|两期比重": {"hit": 6, "all": 10, "difficulty": {"4": {"hit": 5, "all": 6, "acc": 0.8333333333333334}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 63.78078638926, "acc": 0.6}, "资料分析|增长率|混合增长率": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 4, "acc": 0.0}, "4": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 2, "all": 2, "acc": 1.0}}, "human_acc": 60.69437779192001, "acc": 0.3}, "资料分析|增长量|增长量比较": {"hit": 3, "all": 10, "difficulty": {"6": {"hit": 0, "all": 3, "acc": 0.0}, "5": {"hit": 1, "all": 3, "acc": 0.3333333333333333}, "4": {"hit": 2, "all": 4, "acc": 0.5}}, "human_acc": 71.35157502931, "acc": 0.3}, "资料分析|比重问题|混合比重": {"hit": 1, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 50.4202550099, "acc": 0.5}, "资料分析|基期与现期|基期和差": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 1, "all": 5, "acc": 0.2}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "5": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 70.43817867076999, "acc": 0.2}, "资料分析|倍数与比值相关|基期倍数": {"hit": 2, "all": 10, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 1, "all": 6, "acc": 0.16666666666666666}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.12983261721999, "acc": 0.2}, "资料分析|平均数问题|基期平均数": {"hit": 1, "all": 10, "difficulty": {"6": {"hit": 0, "all": 2, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 4, "acc": 0.0}, "3": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 67.34429652963, "acc": 0.1}, "资料分析|简单计算|排序类": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 5, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "3": {"hit": 1, "all": 2, "acc": 0.5}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 78.42931141622, "acc": 0.2}, "资料分析|平均数问题|平均数的增长率": {"hit": 2, "all": 10, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 2, "all": 5, "acc": 0.4}, "7": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 2, "acc": 0.0}}, "human_acc": 57.88165508704001, "acc": 0.2}, "资料分析|基期与现期|间隔基期": {"hit": 3, "all": 10, "difficulty": {"5": {"hit": 1, "all": 4, "acc": 0.25}, "4": {"hit": 2, "all": 5, "acc": 0.4}, "6": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 69.58961219941, "acc": 0.3}, "资料分析|平均数问题|两期平均数比较": {"hit": 0, "all": 3, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}}, "human_acc": 71.31262790903334, "acc": 0.0}, "资料分析|基期与现期|基期比较": {"hit": 1, "all": 10, "difficulty": {"5": {"hit": 0, "all": 5, "acc": 0.0}, "4": {"hit": 1, "all": 4, "acc": 0.25}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 70.82193192074, "acc": 0.1}, "资料分析|平均数问题|平均数的增长量": {"hit": 3, "all": 7, "difficulty": {"5": {"hit": 0, "all": 3, "acc": 0.0}, "3": {"hit": 1, "all": 1, "acc": 1.0}, "4": {"hit": 1, "all": 1, "acc": 1.0}, "6": {"hit": 1, "all": 2, "acc": 0.5}}, "human_acc": 57.80231180570001, "acc": 0.42857142857142855}, "资料分析|基期与现期|现期追赶": {"hit": 0, "all": 7, "difficulty": {"4": {"hit": 0, "all": 3, "acc": 0.0}, "6": {"hit": 0, "all": 2, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}, "7": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 54.091439548028575, "acc": 0.0}, "资料分析|增长量|年均增长量": {"hit": 1, "all": 2, "difficulty": {"3": {"hit": 0, "all": 1, "acc": 0.0}, "6": {"hit": 1, "all": 1, "acc": 1.0}}, "human_acc": 76.33410959220001, "acc": 0.5}, "资料分析|倍数与比值相关|比值比较": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 61.7282913837, "acc": 0.0}, "资料分析|增长量|间隔增长量": {"hit": 1, "all": 4, "difficulty": {"6": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 1, "all": 2, "acc": 0.5}, "4": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 66.11518590187501, "acc": 0.25}, "资料分析|增长率|年均增长率": {"hit": 0, "all": 2, "difficulty": {"4": {"hit": 0, "all": 1, "acc": 0.0}, "5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 76.1416539349, "acc": 0.0}, "资料分析|综合资料": {"hit": 0, "all": 1, "difficulty": {"5": {"hit": 0, "all": 1, "acc": 0.0}}, "human_acc": 81.6901408451, "acc": 0.0}}
results/202309/details/ChineseLlama-13B/difficulty_result.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"总计": {"hit": 490, "all": 1768, "acc": 0.27714932126696834}, "3": {"hit": 64, "all": 193, "acc": 0.3316062176165803}, "4": {"hit": 151, "all": 470, "acc": 0.32127659574468087}, "5": {"hit": 144, "all": 561, "acc": 0.25668449197860965}, "6": {"hit": 84, "all": 306, "acc": 0.27450980392156865}, "7": {"hit": 46, "all": 236, "acc": 0.19491525423728814}, "2": {"hit": 1, "all": 2, "acc": 0.5}}