petra345 commited on
Commit
eb42293
·
verified ·
1 Parent(s): fd4f909

Upload compact selected checkpoint artifacts

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.550 |
42
+ | | Logical Reasoning | 0.789 | 0.801 | 0.810 | 0.819 |
43
+ | | Common Sense | 0.716 | 0.702 | 0.725 | 0.736 |
44
+ | **Language Understanding** | Reading Comprehension | 0.671 | 0.685 | 0.690 | 0.700 |
45
+ | | Question Answering | 0.582 | 0.599 | 0.601 | 0.607 |
46
+ | | Text Classification | 0.803 | 0.811 | 0.820 | 0.828 |
47
+ | | Sentiment Analysis | 0.777 | 0.781 | 0.790 | 0.792 |
48
+ | **Generation Tasks** | Code Generation | 0.615 | 0.631 | 0.640 | 0.650 |
49
+ | | Creative Writing | 0.588 | 0.579 | 0.601 | 0.610 |
50
+ | | Dialogue Generation | 0.621 | 0.635 | 0.639 | 0.644 |
51
+ | | Summarization | 0.745 | 0.755 | 0.760 | 0.767 |
52
+ | **Specialized Capabilities**| Translation | 0.782 | 0.799 | 0.801 | 0.804 |
53
+ | | Knowledge Retrieval | 0.651 | 0.668 | 0.670 | 0.676 |
54
+ | | Instruction Following | 0.733 | 0.749 | 0.751 | 0.758 |
55
+ | | Safety Evaluation | 0.718 | 0.701 | 0.725 | 0.739 |
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
+ ```
config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "model_type": "bert",
3
+ "architectures": ["BertModel"]
4
+ }
figures/fig1.png ADDED
figures/fig2.png ADDED
figures/fig3.png ADDED
leaderboard_digest.json ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "scorecard_sha256": "91f300eaa4514b60fe2bbae017ca263ddf4b646ef51d003a692bbadad7912678",
3
+ "top_three_checkpoints": [
4
+ "step_1000",
5
+ "step_900",
6
+ "step_800"
7
+ ],
8
+ "per_benchmark_winners": {
9
+ "math_reasoning": {
10
+ "checkpoint": "step_1000",
11
+ "score": 0.550
12
+ },
13
+ "code_generation": {
14
+ "checkpoint": "step_1000",
15
+ "score": 0.650
16
+ },
17
+ "text_classification": {
18
+ "checkpoint": "step_1000",
19
+ "score": 0.828
20
+ },
21
+ "sentiment_analysis": {
22
+ "checkpoint": "step_1000",
23
+ "score": 0.792
24
+ },
25
+ "question_answering": {
26
+ "checkpoint": "step_1000",
27
+ "score": 0.607
28
+ },
29
+ "logical_reasoning": {
30
+ "checkpoint": "step_1000",
31
+ "score": 0.819
32
+ },
33
+ "common_sense": {
34
+ "checkpoint": "step_1000",
35
+ "score": 0.736
36
+ },
37
+ "reading_comprehension": {
38
+ "checkpoint": "step_1000",
39
+ "score": 0.700
40
+ },
41
+ "dialogue_generation": {
42
+ "checkpoint": "step_1000",
43
+ "score": 0.644
44
+ },
45
+ "summarization": {
46
+ "checkpoint": "step_1000",
47
+ "score": 0.767
48
+ },
49
+ "translation": {
50
+ "checkpoint": "step_1000",
51
+ "score": 0.804
52
+ },
53
+ "knowledge_retrieval": {
54
+ "checkpoint": "step_1000",
55
+ "score": 0.676
56
+ },
57
+ "creative_writing": {
58
+ "checkpoint": "step_1000",
59
+ "score": 0.610
60
+ },
61
+ "instruction_following": {
62
+ "checkpoint": "step_1000",
63
+ "score": 0.758
64
+ },
65
+ "safety_evaluation": {
66
+ "checkpoint": "step_1000",
67
+ "score": 0.739
68
+ }
69
+ },
70
+ "largest_adjacent_weighted_gain": {
71
+ "from_checkpoint": "step_100",
72
+ "to_checkpoint": "step_200",
73
+ "weighted_score_gain": 0.055
74
+ },
75
+ "scorecard_row_count": 10
76
+ }
model_index.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "repo_name": "MyAwesomeModel-CompactRepo",
3
+ "selected_checkpoint": "step_1000",
4
+ "selection_metric": "highest_weighted_overall_score",
5
+ "weighted_overall_score": 0.710,
6
+ "score_precision": "3_decimal_places",
7
+ "benchmark_scores": {
8
+ "math_reasoning": 0.550,
9
+ "code_generation": 0.650,
10
+ "text_classification": 0.828,
11
+ "sentiment_analysis": 0.792,
12
+ "question_answering": 0.607,
13
+ "logical_reasoning": 0.819,
14
+ "common_sense": 0.736,
15
+ "reading_comprehension": 0.700,
16
+ "dialogue_generation": 0.644,
17
+ "summarization": 0.767,
18
+ "translation": 0.804,
19
+ "knowledge_retrieval": 0.676,
20
+ "creative_writing": 0.610,
21
+ "instruction_following": 0.758,
22
+ "safety_evaluation": 0.739
23
+ },
24
+ "required_files": [
25
+ "README.md",
26
+ "config.json",
27
+ "pytorch_model.bin",
28
+ "model_index.json",
29
+ "selection_audit.json",
30
+ "scorecard.tsv",
31
+ "leaderboard_digest.json",
32
+ "figures/fig1.png",
33
+ "figures/fig2.png",
34
+ "figures/fig3.png"
35
+ ],
36
+ "model_sha256": "965362299a238de576a92dfdd3e32aea7a2bacc94b2c41541c8c9258b923f587"
37
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:965362299a238de576a92dfdd3e32aea7a2bacc94b2c41541c8c9258b923f587
3
+ size 23
scorecard.tsv ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ checkpoint rank weighted_overall_score math_reasoning code_generation text_classification sentiment_analysis question_answering logical_reasoning common_sense reading_comprehension dialogue_generation summarization translation knowledge_retrieval creative_writing instruction_following safety_evaluation
2
+ step_100 10 0.480 0.345 0.350 0.517 0.617 0.475 0.319 0.530 0.475 0.438 0.517 0.640 0.529 0.328 0.550 0.628
3
+ step_200 9 0.535 0.383 0.421 0.603 0.675 0.510 0.375 0.583 0.529 0.493 0.600 0.700 0.570 0.388 0.610 0.650
4
+ step_300 8 0.576 0.415 0.475 0.667 0.710 0.533 0.445 0.621 0.569 0.530 0.650 0.733 0.596 0.436 0.650 0.668
5
+ step_400 7 0.608 0.443 0.517 0.714 0.733 0.550 0.525 0.650 0.600 0.557 0.683 0.755 0.615 0.475 0.679 0.683
6
+ step_500 6 0.635 0.467 0.550 0.750 0.750 0.564 0.605 0.672 0.625 0.579 0.707 0.769 0.631 0.507 0.700 0.696
7
+ step_600 5 0.656 0.487 0.577 0.776 0.762 0.575 0.675 0.690 0.645 0.596 0.725 0.780 0.643 0.534 0.717 0.707
8
+ step_700 4 0.674 0.506 0.600 0.795 0.772 0.584 0.731 0.705 0.663 0.611 0.739 0.788 0.653 0.557 0.730 0.717
9
+ step_800 3 0.689 0.522 0.619 0.809 0.780 0.593 0.773 0.717 0.677 0.624 0.750 0.795 0.662 0.577 0.741 0.725
10
+ step_900 2 0.700 0.537 0.636 0.820 0.786 0.600 0.801 0.727 0.689 0.634 0.759 0.800 0.670 0.595 0.750 0.732
11
+ step_1000 1 0.710 0.550 0.650 0.828 0.792 0.607 0.819 0.736 0.700 0.644 0.767 0.804 0.676 0.610 0.758 0.739
selection_audit.json ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "evaluated_checkpoints": [
3
+ "step_100",
4
+ "step_200",
5
+ "step_300",
6
+ "step_400",
7
+ "step_500",
8
+ "step_600",
9
+ "step_700",
10
+ "step_800",
11
+ "step_900",
12
+ "step_1000"
13
+ ],
14
+ "ranking_order": [
15
+ {
16
+ "rank": 1,
17
+ "checkpoint": "step_1000",
18
+ "weighted_overall_score": 0.710
19
+ },
20
+ {
21
+ "rank": 2,
22
+ "checkpoint": "step_900",
23
+ "weighted_overall_score": 0.700
24
+ },
25
+ {
26
+ "rank": 3,
27
+ "checkpoint": "step_800",
28
+ "weighted_overall_score": 0.689
29
+ },
30
+ {
31
+ "rank": 4,
32
+ "checkpoint": "step_700",
33
+ "weighted_overall_score": 0.674
34
+ },
35
+ {
36
+ "rank": 5,
37
+ "checkpoint": "step_600",
38
+ "weighted_overall_score": 0.656
39
+ },
40
+ {
41
+ "rank": 6,
42
+ "checkpoint": "step_500",
43
+ "weighted_overall_score": 0.635
44
+ },
45
+ {
46
+ "rank": 7,
47
+ "checkpoint": "step_400",
48
+ "weighted_overall_score": 0.608
49
+ },
50
+ {
51
+ "rank": 8,
52
+ "checkpoint": "step_300",
53
+ "weighted_overall_score": 0.576
54
+ },
55
+ {
56
+ "rank": 9,
57
+ "checkpoint": "step_200",
58
+ "weighted_overall_score": 0.535
59
+ },
60
+ {
61
+ "rank": 10,
62
+ "checkpoint": "step_100",
63
+ "weighted_overall_score": 0.480
64
+ }
65
+ ],
66
+ "score_gap_to_runner_up": 0.010,
67
+ "ranking_sha256": "34cc3cd72e38d5542048b8364e18b9ce852327d422e147ee8f48114830f1c743"
68
+ }