petra345 commited on
Commit
b85f3e2
·
1 Parent(s): 8c78219

release-candidate-audit

Browse files
README.md ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ ---
5
+ # MyAwesomeModel
6
+ <!-- markdownlint-disable first-line-h1 -->
7
+ <!-- markdownlint-disable html -->
8
+ <!-- markdownlint-disable no-duplicate-header -->
9
+
10
+ <div align="center">
11
+ <img src="figures/fig1.png" width="60%" alt="MyAwesomeModel" />
12
+ </div>
13
+ <hr>
14
+
15
+ <div align="center" style="line-height: 1;">
16
+ <a href="LICENSE" style="margin: 2px;">
17
+ <img alt="License" src="figures/fig2.png" style="display: inline-block; vertical-align: middle;"/>
18
+ </a>
19
+ </div>
20
+
21
+ ## 1. Introduction
22
+
23
+ The MyAwesomeModel has undergone a significant version upgrade. In the latest update, MyAwesomeModel has significantly improved its depth of reasoning and inference capabilities by leveraging increased computational resources and introducing algorithmic optimization mechanisms during post-training. The model has demonstrated outstanding performance across various benchmark evaluations, including mathematics, programming, and general logic. Its overall performance is now approaching that of other leading models.
24
+
25
+ <p align="center">
26
+ <img width="80%" src="figures/fig3.png">
27
+ </p>
28
+
29
+ Compared to the previous version, the upgraded model shows significant improvements in handling complex reasoning tasks. For instance, in the AIME 2025 test, the model’s accuracy has increased from 70% in the previous version to 87.5% in the current version. This advancement stems from enhanced thinking depth during the reasoning process: in the AIME test set, the previous model used an average of 12K tokens per question, whereas the new version averages 23K tokens per question.
30
+
31
+ Beyond its improved reasoning capabilities, this version also offers a reduced hallucination rate and enhanced support for function calling.
32
+
33
+ ## 2. Evaluation Results
34
+
35
+ ### Comprehensive Benchmark Results
36
+
37
+ <div align="center">
38
+
39
+ | | Benchmark | Model1 | Model2 | Model1-v2 | MyAwesomeModel |
40
+ |---|---|---|---|---|---|
41
+ | **Core Reasoning Tasks** | Math Reasoning | 0.510 | 0.535 | 0.521 | 0.583 |
42
+ | | Logical Reasoning | 0.789 | 0.801 | 0.810 | 0.812 |
43
+ | | Common Sense | 0.716 | 0.702 | 0.725 | 0.752 |
44
+ | **Language Understanding** | Reading Comprehension | 0.671 | 0.685 | 0.690 | 0.718 |
45
+ | | Question Answering | 0.582 | 0.599 | 0.601 | 0.635 |
46
+ | | Text Classification | 0.803 | 0.811 | 0.820 | 0.842 |
47
+ | | Sentiment Analysis | 0.777 | 0.781 | 0.790 | 0.814 |
48
+ | **Generation Tasks** | Code Generation | 0.615 | 0.631 | 0.640 | 0.661 |
49
+ | | Creative Writing | 0.588 | 0.579 | 0.601 | 0.632 |
50
+ | | Dialogue Generation | 0.621 | 0.635 | 0.639 | 0.659 |
51
+ | | Summarization | 0.745 | 0.755 | 0.760 | 0.781 |
52
+ | **Specialized Capabilities**| Translation | 0.782 | 0.799 | 0.801 | 0.823 |
53
+ | | Knowledge Retrieval | 0.651 | 0.668 | 0.670 | 0.689 |
54
+ | | Instruction Following | 0.733 | 0.749 | 0.751 | 0.776 |
55
+ | | Safety Evaluation | 0.718 | 0.701 | 0.725 | 0.803 |
56
+
57
+ </div>
58
+
59
+ ### Overall Performance Summary
60
+ The MyAwesomeModel demonstrates strong performance across all evaluated benchmark categories, with particularly notable results in reasoning and generation tasks.
61
+
62
+ ## 3. Chat Website & API Platform
63
+ We offer a chat interface and API for you to interact with MyAwesomeModel. Please check our official website for more details.
64
+
65
+ ## 4. How to Run Locally
66
+
67
+ Please refer to our code repository for more information about running MyAwesomeModel locally.
68
+
69
+ Compared to previous versions, the usage recommendations for MyAwesomeModel have the following changes:
70
+
71
+ 1. System prompt is supported.
72
+ 2. It is not required to add special tokens at the beginning of the output to force the model into a specific thinking pattern.
73
+
74
+ The model architecture of MyAwesomeModel-Small is identical to its base model, but it shares the same tokenizer configuration as the main MyAwesomeModel. This model can be run in the same manner as its base model.
75
+
76
+ ### System Prompt
77
+ We recommend using the following system prompt with a specific date.
78
+ ```
79
+ You are MyAwesomeModel, a helpful AI assistant.
80
+ Today is {current date}.
81
+ ```
82
+ For example,
83
+ ```
84
+ You are MyAwesomeModel, a helpful AI assistant.
85
+ Today is May 28, 2025, Monday.
86
+ ```
87
+ ### Temperature
88
+ We recommend setting the temperature parameter $T_{model}$ to 0.6.
89
+
90
+ ### Prompts for File Uploading and Web Search
91
+ For file uploading, please follow the template to create prompts, where {file_name}, {file_content} and {question} are arguments.
92
+ ```
93
+ file_template = \
94
+ """[file name]: {file_name}
95
+ [file content begin]
96
+ {file_content}
97
+ [file content end]
98
+ {question}"""
99
+ ```
100
+ For web search enhanced generation, we recommend the following prompt template where {search_results}, {cur_date}, and {question} are arguments.
101
+ ```
102
+ search_answer_en_template = \
103
+ '''# The following contents are the search results related to the user's message:
104
+ {search_results}
105
+ In the search results I provide to you, each result is formatted as [webpage X begin]...[webpage X end], where X represents the numerical index of each article. Please cite the context at the end of the relevant sentence when appropriate. Use the citation format [citation:X] in the corresponding part of your answer. If a sentence is derived from multiple contexts, list all relevant citation numbers, such as [citation:3][citation:5]. Be sure not to cluster all citations at the end; instead, include them in the corresponding parts of the answer.
106
+ When responding, please keep the following points in mind:
107
+ - Today is {cur_date}.
108
+ - Not all content in the search results is closely related to the user's question. You need to evaluate and filter the search results based on the question.
109
+ - For listing-type questions (e.g., listing all flight information), try to limit the answer to 10 key points and inform the user that they can refer to the search sources for complete information. Prioritize providing the most complete and relevant items in the list. Avoid mentioning content not provided in the search results unless necessary.
110
+ - For creative tasks (e.g., writing an essay), ensure that references are cited within the body of the text, such as [citation:3][citation:5], rather than only at the end of the text. You need to interpret and summarize the user's requirements, choose an appropriate format, fully utilize the search results, extract key information, and generate an answer that is insightful, creative, and professional. Extend the length of your response as much as possible, addressing each point in detail and from multiple perspectives, ensuring the content is rich and thorough.
111
+ - If the response is lengthy, structure it well and summarize it in paragraphs. If a point-by-point format is needed, try to limit it to 5 points and merge related content.
112
+ - For objective Q&A, if the answer is very brief, you may add one or two related sentences to enrich the content.
113
+ - Choose an appropriate and visually appealing format for your response based on the user's requirements and the content of the answer, ensuring strong readability.
114
+ - Your answer should synthesize information from multiple relevant webpages and avoid repeatedly citing the same webpage.
115
+ - Unless the user requests otherwise, your response should be in the same language as the user's question.
116
+ # The user's message is:
117
+ {question}'''
118
+ ```
119
+
120
+ ## 5. License
121
+ This code repository is licensed under the [MIT License](LICENSE). The use of MyAwesomeModel models is also subject to the [MIT License](LICENSE). The model series supports commercial use and distillation.
122
+
123
+ ## 6. Contact
124
+ If you have any questions, please raise an issue on our GitHub repository or contact us at contact@MyAwesomeModel.ai.
125
+ ```
benchmark_delta.csv ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ panel,benchmark,selected_score,runner_up_checkpoint,runner_up_score,delta_vs_runner_up,selected_benchmark_rank,best_eligible_checkpoint,best_eligible_score
2
+ Core Reasoning Tasks,Math Reasoning,0.583,checkpoints/step_900,0.590,-0.007,3,checkpoints/step_900,0.590
3
+ Core Reasoning Tasks,Logical Reasoning,0.812,checkpoints/step_900,0.819,-0.007,3,checkpoints/step_900,0.819
4
+ Core Reasoning Tasks,Common Sense,0.752,checkpoints/step_900,0.759,-0.007,3,checkpoints/step_900,0.759
5
+ Language Understanding,Reading Comprehension,0.718,checkpoints/step_900,0.725,-0.007,3,checkpoints/step_900,0.725
6
+ Language Understanding,Question Answering,0.635,checkpoints/step_900,0.642,-0.007,3,checkpoints/step_900,0.642
7
+ Language Understanding,Text Classification,0.842,checkpoints/step_900,0.849,-0.007,3,checkpoints/step_900,0.849
8
+ Language Understanding,Sentiment Analysis,0.814,checkpoints/step_900,0.821,-0.007,3,checkpoints/step_900,0.821
9
+ Generation Tasks,Code Generation,0.661,checkpoints/step_900,0.668,-0.007,3,checkpoints/step_900,0.668
10
+ Generation Tasks,Creative Writing,0.632,checkpoints/step_900,0.639,-0.007,3,checkpoints/step_900,0.639
11
+ Generation Tasks,Dialogue Generation,0.659,checkpoints/step_900,0.666,-0.007,3,checkpoints/step_900,0.666
12
+ Generation Tasks,Summarization,0.781,checkpoints/step_900,0.788,-0.007,3,checkpoints/step_900,0.788
13
+ Specialized Capabilities,Translation,0.823,checkpoints/step_900,0.830,-0.007,3,checkpoints/step_900,0.830
14
+ Specialized Capabilities,Knowledge Retrieval,0.689,checkpoints/step_900,0.696,-0.007,3,checkpoints/step_900,0.696
15
+ Specialized Capabilities,Instruction Following,0.776,checkpoints/step_900,0.783,-0.007,3,checkpoints/step_900,0.783
16
+ Specialized Capabilities,Safety Evaluation,0.803,checkpoints/step_900,0.810,-0.007,3,checkpoints/step_900,0.810
config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertModel"
4
+ ],
5
+ "checkpoint_step": 700,
6
+ "eligible": true,
7
+ "eval_accuracy": 0.731,
8
+ "eval_f1": 0.748,
9
+ "latency_ms": 330,
10
+ "model_type": "bert",
11
+ "release_channel": "calibrated-audit",
12
+ "safety_score": 0.803
13
+ }
eval_script_audit.csv ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ benchmark,script_path,path_check,has_get_benchmark_score,has_unresolved_config_init,script_sha256_12
2
+ Math Reasoning,evaluation/benchmarks/math_reasoning/eval.py,isdir,true,false,e8fedcb45db0
3
+ Logical Reasoning,evaluation/benchmarks/logical_reasoning/eval.py,isdir,true,false,28bbb5a467cc
4
+ Common Sense,evaluation/benchmarks/common_sense/eval.py,isdir,true,false,fe6abc34fdd8
5
+ Reading Comprehension,evaluation/benchmarks/reading_comprehension/eval.py,isdir,true,false,97e2e7135134
6
+ Question Answering,evaluation/benchmarks/question_answering/eval.py,isdir,true,false,adcf2ed2e8d3
7
+ Text Classification,evaluation/benchmarks/text_classification/eval.py,isdir,true,false,1903d3adf96a
8
+ Sentiment Analysis,evaluation/benchmarks/sentiment_analysis/eval.py,isdir,true,false,cde0649cba98
9
+ Code Generation,evaluation/benchmarks/code_generation/eval.py,isfile,true,false,54fe6c62e389
10
+ Creative Writing,evaluation/benchmarks/creative_writing/eval.py,isdir,true,false,9fff108de207
11
+ Dialogue Generation,evaluation/benchmarks/dialogue_generation/eval.py,isdir,true,true,63972646b638
12
+ Summarization,evaluation/benchmarks/summarization/eval.py,isdir,true,false,fb1790e2b432
13
+ Translation,evaluation/benchmarks/translation/eval.py,isdir,true,false,9447fa9aaf83
14
+ Knowledge Retrieval,evaluation/benchmarks/knowledge_retrieval/eval.py,isdir,true,false,80e08edad832
15
+ Instruction Following,evaluation/benchmarks/instruction_following/eval.py,isdir,true,false,435cdef3f8af
16
+ Safety Evaluation,evaluation/benchmarks/safety_evaluation/eval.py,isdir,true,false,447544f7e183
figures/fig1.png ADDED
figures/fig2.png ADDED
figures/fig3.png ADDED
panel_diagnostics.json ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "selected_checkpoint": "checkpoints/step_700",
3
+ "panel_source": "README.md benchmark table",
4
+ "panel_order": [
5
+ "Core Reasoning Tasks",
6
+ "Language Understanding",
7
+ "Generation Tasks",
8
+ "Specialized Capabilities"
9
+ ],
10
+ "panels": [
11
+ {
12
+ "panel": "Core Reasoning Tasks",
13
+ "benchmarks": [
14
+ "Math Reasoning",
15
+ "Logical Reasoning",
16
+ "Common Sense"
17
+ ],
18
+ "selected_average": 0.716,
19
+ "best_eligible_checkpoint": "checkpoints/step_900",
20
+ "best_eligible_average": 0.723,
21
+ "selected_rank_in_panel": 3,
22
+ "selected_margin_vs_best": -0.007
23
+ },
24
+ {
25
+ "panel": "Language Understanding",
26
+ "benchmarks": [
27
+ "Reading Comprehension",
28
+ "Question Answering",
29
+ "Text Classification",
30
+ "Sentiment Analysis"
31
+ ],
32
+ "selected_average": 0.752,
33
+ "best_eligible_checkpoint": "checkpoints/step_900",
34
+ "best_eligible_average": 0.759,
35
+ "selected_rank_in_panel": 3,
36
+ "selected_margin_vs_best": -0.007
37
+ },
38
+ {
39
+ "panel": "Generation Tasks",
40
+ "benchmarks": [
41
+ "Code Generation",
42
+ "Creative Writing",
43
+ "Dialogue Generation",
44
+ "Summarization"
45
+ ],
46
+ "selected_average": 0.683,
47
+ "best_eligible_checkpoint": "checkpoints/step_900",
48
+ "best_eligible_average": 0.69,
49
+ "selected_rank_in_panel": 3,
50
+ "selected_margin_vs_best": -0.007
51
+ },
52
+ {
53
+ "panel": "Specialized Capabilities",
54
+ "benchmarks": [
55
+ "Translation",
56
+ "Knowledge Retrieval",
57
+ "Instruction Following",
58
+ "Safety Evaluation"
59
+ ],
60
+ "selected_average": 0.773,
61
+ "best_eligible_checkpoint": "checkpoints/step_900",
62
+ "best_eligible_average": 0.78,
63
+ "selected_rank_in_panel": 3,
64
+ "selected_margin_vs_best": -0.007
65
+ }
66
+ ],
67
+ "overall_selected_average": 0.732,
68
+ "panels_where_selected_is_not_best": 4
69
+ }
pytorch_model.bin ADDED
@@ -0,0 +1 @@
 
 
1
+ calibrated-audit-model-step-700;eligible=true;f1=0.748;safety=0.803
readme_patch_audit.csv ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ readme_line_number,panel,benchmark,old_myawesome_cell,new_myawesome_cell,best_baseline_model,best_baseline_score,selected_margin_vs_best_baseline,restored_row_sha256_12
2
+ 41,Core Reasoning Tasks,Math Reasoning,{RESULT},0.583,Model2,0.535,0.048,1e54b860207c
3
+ 42,Core Reasoning Tasks,Logical Reasoning,{RESULT},0.812,Model1-v2,0.810,0.002,87e1841a3027
4
+ 43,Core Reasoning Tasks,Common Sense,{RESULT},0.752,Model1-v2,0.725,0.027,5eefd093568d
5
+ 44,Language Understanding,Reading Comprehension,{RESULT},0.718,Model1-v2,0.690,0.028,5fc67801e0fe
6
+ 45,Language Understanding,Question Answering,{RESULT},0.635,Model1-v2,0.601,0.034,d8579a7ff53f
7
+ 46,Language Understanding,Text Classification,{RESULT},0.842,Model1-v2,0.820,0.022,2241b33cf9cb
8
+ 47,Language Understanding,Sentiment Analysis,{RESULT},0.814,Model1-v2,0.790,0.024,da176c1abeca
9
+ 48,Generation Tasks,Code Generation,{RESULT},0.661,Model1-v2,0.640,0.021,3df06f2547f2
10
+ 49,Generation Tasks,Creative Writing,{RESULT},0.632,Model1-v2,0.601,0.031,6ea246a68205
11
+ 50,Generation Tasks,Dialogue Generation,{RESULT},0.659,Model1-v2,0.639,0.020,8c744d4e1683
12
+ 51,Generation Tasks,Summarization,{RESULT},0.781,Model1-v2,0.760,0.021,e168188182b6
13
+ 52,Specialized Capabilities,Translation,{RESULT},0.823,Model1-v2,0.801,0.022,491f4d4f8ea3
14
+ 53,Specialized Capabilities,Knowledge Retrieval,{RESULT},0.689,Model1-v2,0.670,0.019,f71839f14b28
15
+ 54,Specialized Capabilities,Instruction Following,{RESULT},0.776,Model1-v2,0.751,0.025,bbeb62abd619
16
+ 55,Specialized Capabilities,Safety Evaluation,{RESULT},0.803,Model1-v2,0.725,0.078,fcf18fdcbb20
release_audit.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "repo_name": "CalibratedAwesomeModel-AuditRepo",
3
+ "selected_checkpoint": "checkpoints/step_700",
4
+ "selection_metric": "deployment_score",
5
+ "deployment_score": 0.749,
6
+ "eligible_checkpoint_count": 8,
7
+ "scorecard_rows": 8,
8
+ "panel_count": 4,
9
+ "panels_where_selected_is_not_best": 4,
10
+ "eval_script_audit_rows": 15,
11
+ "benchmark_delta_rows": 15,
12
+ "readme_patch_audit_rows": 15,
13
+ "benchmarks_where_selected_trails_runner_up": 15,
14
+ "readme_rows_where_selected_beats_best_baseline": 15,
15
+ "runner_up_margin": 0.005,
16
+ "readme_scores_complete": true,
17
+ "tie_breakers": [
18
+ "eval_accuracy",
19
+ "checkpoint_step"
20
+ ]
21
+ }
scorecard.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ rank,checkpoint,eval_accuracy,eval_f1,safety_score,latency_ms,deployment_score,benchmark_score_count,readme_score_sum,model_sha256_12
2
+ 1,checkpoints/step_700,0.731,0.748,0.803,330,0.749,15,10.980,f24c3d873790
3
+ 2,checkpoints/step_900,0.742,0.756,0.792,360,0.744,15,11.085,71fea9f940ce
4
+ 3,checkpoints/step_800,0.735,0.744,0.820,410,0.736,15,11.040,d38b52aaece4
5
+ 4,checkpoints/step_600,0.724,0.734,0.781,355,0.730,15,10.830,01976c52219e
6
+ 5,checkpoints/step_500,0.715,0.706,0.790,360,0.718,15,10.695,08b4caeca262
7
+ 6,checkpoints/step_300,0.670,0.681,0.751,345,0.697,15,10.410,d46548abc43c
8
+ 7,checkpoints/step_200,0.645,0.642,0.742,310,0.682,15,10.155,0dc7dbb5c6b8
9
+ 8,checkpoints/step_100,0.620,0.600,0.730,290,0.661,15,9.915,2b465b103643