REVIEW 4 major objections 5 minor 2 cited by
Progressive Mastery: Customized Curriculum Learning with Guided Prompting for Mathematical Reasoning
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Customized Curriculum Learning orders post-training data by a model's own measured accuracy, turns too-hard problems into hint-assisted completion tasks, and reports that this beats uniform training on five mathematical reasoning…
desk verdict The 13.8-point GRPO gain is mostly sample filtering, not curriculum ordering or guided prompting, but the paper is honest enough to include the ablation that shows it. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is a per-sample accuracy score, $\mathrm{ACC}_i = \frac{1}{n}\sum_{j=1}^{n}\mathbf{1}\{A_{ij}=A_i^*\}$, computed by sampling $n$ answers at temperature 0.7; its inverse orders the curriculum. Guided Prompting decomposes the golden solution into steps $\{s_{i1},...,s_{ik}\}$, chooses a prefix $P_i=\{s_{i1},...,s_{ip}\}$ short enough that the model's accuracy rises to a threshold $\tau$, and feeds $[Q_i;P_i]$ so the model completes the reasoning. Multi-stage training then applies supervised fine-tuning or Group Relative Policy Optimization (GRPO) sequentially to the easy, medium, and hard splits, mixing a small proportion of easy samples into later stages. Together these pieces convert a static dataset into a per-model course of study.
What would settle it
Retrain the best GRPO setting with the same three data splits and the same hints but with the stage order shuffled; if the shuffled model matches CCL's average accuracy, the reported gains come from data selection and hinting rather than from the easy-to-hard order.
Extended reading notes
Core claim
The central claim is that a training set should be ordered and rewritten according to the specific model being trained. CCL first computes an accuracy score for every question from $n$ sampled answers, ranks the questions by that score, and splits them into three equal stages; the least-accurate third is treated as difficult. For those difficult questions, the reference solution is decomposed into steps and a prefix is appended to the question as a hint, so the model is asked to complete the rest of the solution. Training proceeds stage by stage under supervised fine-tuning (SFT) or Group Relative Policy Optimization (GRPO), with a small fraction of earlier-stage samples mixed into later stages. On MATH-500, Minerva Math, OlympiadBench, AMC 23, and AIME 24, the paper reports that CCL outperforms uniform training in most of its comparisons, with the largest average gain under GRPO on the 1.5B model: 38.54 versus 24.74.
Load-bearing premise
The method assumes that 16 sampled answers at temperature 0.7 give a stable difficulty estimate for each problem, and that revealing the first steps of the reference solution as a hint teaches the model without simply leaking the answer.
Editorial extensions
If this is right
- The same raw dataset yields different curricula for different models, so post-training can be customized per base model without hand-labeled difficulty levels.
- Hard examples that are normally discarded can be kept by converting them into completion tasks, increasing the fraction of usable training data.
- The staged schedule appears to help under both SFT and GRPO, so the ordering signal is not tied to one optimization objective.
- Mixing a small proportion of easy samples into later stages is claimed to prevent catastrophic forgetting and is part of the best reported configuration.
Reading between the lines
- The paper leaves implicit that the curriculum costs 16 extra forward passes per training sample before training starts; on very large datasets this precomputation, not the staged training itself, may dominate the added expense.
- A test the paper does not run is whether the same hint prefix helps when given to a model that already answers the problem correctly; if it does, part of the gain may be a format effect rather than difficulty adaptation.
- The prefix-hint idea should transfer to any domain with decomposable reference solutions, such as code generation or proof assistants, but the paper only claims evidence for mathematical reasoning.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Customized Curriculum Learning (CCL), a post-training framework for mathematical reasoning that (i) defines sample difficulty adaptively per model by sampling multiple responses and measuring accuracy, (ii) partitions data into easy/medium/hard stages, (iii) converts hard samples into hint-guided completion tasks via step decomposition of reference solutions, and (iv) trains the model in multiple SFT or GRPO stages with a review mechanism. The empirical section reports results on Qwen2.5-Math-1.5B and 7B across five benchmarks (MATH500, Minerva Math, OlympiadBench, AIME24, AMC23), with main SFT and GRPO comparisons to uniform training and ablations on difficulty definition, hard-sample processing, and mixing strategy.
Significance. The idea of model-adaptive difficulty combined with hint-based reuse of hard samples is a plausible and practically motivated contribution, and the paper includes a reasonable range of benchmarks and both SFT and RL paradigms. The strongest part is the demonstration that discarding hard samples can help (Table 2) and that guided prompting can add a small further gain. However, the paper's central attribution — that the easy-to-hard curriculum ordering and guided prompting, rather than simple data filtering, drive the headline improvements — is not supported by the present experiments. The missing uniform-order-plus-filtered baseline and the unreported hyperparameters (tau, alpha) leave the main claim underdetermined. These issues are fixable within the manuscript's scope, so they warrant a major revision rather than rejection.
major comments (4)
- [Section 4.6.2 / Table 2] The ablation conflates curriculum ordering with data filtering and does not support the paper's causal attribution. For Qwen2.5-Math-1.5B GRPO, uniform training (Table 1) gives 24.74; retaining hard samples in a curriculum gives 26.36; discarding the hardest third gives 37.46; and CCL with guided prompting gives 38.54. Thus the dominant effect is dropping the hard third (+12.7 points), while curriculum ordering contributes about +1.6 and guided prompting about +1.1. The paper does not report a uniform-order baseline trained on the same filtered easy+medium dataset; without it, the claim that 'customized curriculum' and 'guided prompting' drive the improvement is not established. I request that this baseline be added, or that the conclusions be reframed to attribute the gains primarily to data filtering.
- [Section 4.5 / Table 1] The claim that CCL yields 'consistent performance gains across all test subsets' is contradicted by the paper's own table. Under SFT, MATH500 drops for both models (48.60 to 48.00 for 1.5B; 68.80 to 63.00 for 7B), and AIME24 is flat at 0 for 1.5B SFT. Additionally, no variance or multiple-seed results are reported anywhere, so even the positive differences of 1–2 points in other settings cannot be distinguished from noise. The authors should provide per-seed results or error bars, or temper the consistency claim to match the data.
- [Algorithm 1 / Appendix A] The two key hyperparameters of Guided Prompting, the accuracy threshold tau and the hint ratio alpha, are never reported in the paper or the appendix. Algorithm 1 uses them to decide which samples to keep with hints and how much of the solution prefix to reveal, so their values are essential to reproducing the method and to ruling out that they were tuned toward the test benchmarks. The authors should report specific values for tau and alpha for each model and setting, and ideally include a sensitivity analysis over a small grid.
- [Section 3.1 / Appendix A.1] The difficulty estimator uses only n=16 sampled answers at temperature 0.7 for each sample. This is a high-variance estimator: for a sample with true accuracy below 0.1, the probability of observing 0/16 is substantial, making the ordering within the difficult third effectively random. The paper does not report the distribution of ACC_i values, nor the fraction of samples with 0/16 or 1/16 accuracy, so the 'easy-to-hard' ordering component of CCL is not empirically verified. If the difficulty signal is too noisy, the observed gains would be explained by which samples are discarded rather than by the curriculum order. The authors should report the ACC_i summary statistics and, if feasible, a check with a larger n or multiple difficulty-estimation seeds.
minor comments (5)
- [Abstract / Section 4] The abstract and conclusion say CCL 'significantly outperforms' uniform training, but no significance tests or confidence intervals are reported; please soften to 'outperforms' or add error bars.
- [Equation (6)] There is a typo in the advantage formula: 'maen' should be 'mean'.
- [Section 3.3.1] The text says multi-stage SFT needs 'm rounds' but the dataset partitions are defined as p subsets in Section 3.1 and Algorithm 1; please use consistent notation.
- [Figure 3] The percentages in the Venn diagram are difficult to interpret (they do not sum to 100% and the figure lacks clear labels for each region); please add a clearer explanation, e.g., percentage of all questions in each category.
- [Appendix D / Figure 8] The stage-wise accuracy curves show no variance and are reported on the test sets; please add a sentence clarifying whether these are single runs and how much run-to-run variation is expected.
Circularity Check
No significant circularity: CCL's adaptive difficulty is self-paced and evaluated on held-out benchmarks; self-citations are not load-bearing.
full rationale
I examined the derivation chain in Sections 3.1, 3.2, Algorithm 1, Tables 1-2, and the cited prior work. The difficulty label in Eq. (1) is the base model's own accuracy on each training problem, so it is a self-paced training signal rather than a hidden fit to test labels. The central comparison is against uniform training on external benchmarks (MATH500, Minerva, OlympiadBench, AIME24, AMC23), so the claimed improvement is not equivalent to the difficulty definition by construction. The ablation in Table 2 shows that most of the GRPO gain comes from discarding difficult samples and a smaller part from guided prompting; this is an attribution concern, not a circular reduction, because the experimental outcomes are measured rather than derived from the method's inputs. Citations to Xi et al. (2024) and Dou et al. (2025) overlap with the authors and motivate the hinting technique, but they are not the evidence for CCL's effectiveness, which is provided by the paper's own experiments; hence the self-citation is not load-bearing. Unreported hyperparameters tau and alpha and missing variance estimates are reproducibility concerns, not circularity. No self-definitional, fitted-input-as-prediction, uniqueness-importation, or ansatz-smuggling step appears in the paper. The derivation chain is therefore self-contained with respect to circularity.
Assumptions & free parameters
free parameters (6)
- accuracy threshold tau =
not reported
- hint ratio alpha =
not reported
- number of stages p =
3
- sampling count n for difficulty =
16
- temperature for difficulty estimation =
0.7
- curriculum review mix proportion =
not reported
assumptions (4)
- domain assumption Training on samples far beyond current capability degrades performance.
- domain assumption A prefix of the reference solution steps is a valid hint, and the remaining steps are a valid supervised target.
- domain assumption Accuracy over 16 sampled responses approximates true sample difficulty.
- ad hoc to paper Sequential training on three accuracy-based splits with review helps learning.
Cite this review
Pith. "Pith review of Progressive Mastery: Customized Curriculum Learning with Guided Prompting for Mathematical Reasoning." pith.science (2026). https://pith.science/paper/TIWORS6B
@misc{pith2026250604065,
author = {Pith},
title = {Pith review of: Progressive Mastery: Customized Curriculum Learning with Guided Prompting for Mathematical Reasoning},
year = {2026},
howpublished = {\url{https://pith.science/paper/TIWORS6B}},
note = {Machine review of arXiv:2506.04065}
}
read the original abstract
Large Language Models (LLMs) have achieved remarkable performance across various reasoning tasks, yet post-training is constrained by inefficient sample utilization and inflexible difficulty samples processing. To address these limitations, we propose Customized Curriculum Learning (CCL), a novel framework with two key innovations. First, we introduce model-adaptive difficulty definition that customizes curriculum datasets based on each model's individual capabilities rather than using predefined difficulty metrics. Second, we develop "Guided Prompting," which dynamically reduces sample difficulty through strategic hints, enabling effective utilization of challenging samples that would otherwise degrade performance. Comprehensive experiments on supervised fine-tuning and reinforcement learning demonstrate that CCL significantly outperforms uniform training approaches across five mathematical reasoning benchmarks, confirming its effectiveness across both paradigms in enhancing sample utilization and model performance.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 2 Pith papers
-
StructCoh: Structured Contrastive Learning for Context-Aware Text Semantic Matching
StructCoh, a graph-enhanced contrastive learning framework for text semantic matching, reportedly outperforms prior methods on legal and plagiarism benchmarks, but the reported results are not reproducible from the pa...
-
Multi-Granularity Reasoning for Natural Language Inference
Stacking element-wise multi-layer BERT interactions and DenseNet yields modest NLI gains over BERT/RoBERTa baselines on standard benchmarks.
Reference graph
Works this paper leans on
-
[1]
Yoshua Bengio, J \'e r \^o me Louradour, Ronan Collobert, and Jason Weston. 2009. https://api.semanticscholar.org/CorpusID:873046 Curriculum learning . In International Conference on Machine Learning
work page 2009
-
[2]
DeepSeek-AI, Daya Guo, Dejian Yang, Haowei Zhang, Jun-Mei Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiaoling Bi, Xiaokang Zhang, Xingkai Yu, Yu Wu, Z. F. Wu, Zhibin Gou, Zhihong Shao, Zhuoshu Li, Ziyi Gao, and 179 others. 2025. https://api.semanticscholar.org/CorpusID:275789950 Deepseek-r1: Incentivizing reasoning capability in llms...
arXiv 2025
-
[3]
Yiwen Ding, Zhiheng Xi, Wei He, Zhuoyuan Li, Yitao Zhai, Xiaowei Shi, Xunliang Cai, Tao Gui, Qi Zhang, and Xuanjing Huang. 2024. https://api.semanticscholar.org/CorpusID:273798221 Mitigating tail narrowing in llm self-improvement via socratic-guided sampling . ArXiv, abs/2411.00750
arXiv 2024
-
[4]
Shihan Dou, Muling Wu, Jingwen Xu, Rui Zheng, Tao Gui, Qi Zhang, and Xuanjing Huang. 2025. https://api.semanticscholar.org/CorpusID:277955209 Improving rl exploration for llm reasoning through retrospective replay
work page 2025
-
[5]
Hugging Face. 2025. https://github.com/huggingface/open-r1 Open r1: A fully open reproduction of deepseek-r1
work page 2025
-
[6]
Daya Guo, Qihao Zhu, Dejian Yang, Zhenda Xie, Kai Dong, Wentao Zhang, Guanting Chen, Xiao Bi, Yu Wu, Y. K. Li, Fuli Luo, Yingfei Xiong, and Wenfeng Liang. 2024. https://api.semanticscholar.org/CorpusID:267211867 Deepseek-coder: When the large language model meets programming - the rise of code intelligence . ArXiv, abs/2401.14196
arXiv 2024
-
[7]
Chaoqun He, Renjie Luo, Yuzhuo Bai, Shengding Hu, Zhen Leng Thai, Junhao Shen, Jinyi Hu, Xu Han, Yujie Huang, Yuxiang Zhang, Jie Liu, Lei Qi, Zhiyuan Liu, and Maosong Sun. 2024. https://api.semanticscholar.org/CorpusID:267770504 Olympiadbench: A challenging benchmark for promoting agi with olympiad-level bilingual multimodal scientific problems . In Annua...
work page 2024
-
[8]
Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Xiaodong Song, and Jacob Steinhardt. 2021. https://api.semanticscholar.org/CorpusID:232134851 Measuring mathematical problem solving with the math dataset . ArXiv, abs/2103.03874
arXiv 2021
Show all 41 references
-
[9]
Hockenmaier, and Tong Zhang
Jerry Huang, Siddarth Madala, Risham Sidhu, Cheng Niu, J. Hockenmaier, and Tong Zhang. 2025. https://api.semanticscholar.org/CorpusID:277066612 Rag-rl: Advancing retrieval-augmented generation via rl and curriculum learning . ArXiv, abs/2503.12759
2025 arXiv
-
[10]
Hyeonbin Hwang, Doyoung Kim, Seungone Kim, Seonghyeon Ye, and Minjoon Seo. 2024. https://api.semanticscholar.org/CorpusID:269157255 Self-explore: Enhancing mathematical reasoning in language models with fine-grained rewards . In Conference on Empirical Methods in Natural Langu...
2024
-
[11]
Koray Kavukcuoglu. 2025. Gemini 2.5: Our most intelligent ai model. https://blog.google/technology/google-deepmind/gemini-model-thinking-updates-march-2025/. Accessed: 2025-05-17
2025
-
[12]
Lee and Yeong-Tae Song
Jung X. Lee and Yeong-Tae Song. 2024. https://doi.org/10.1109/SNPD61259.2024.10673924 College exam grader using llm ai models . In 2024 IEEE/ACIS 27th International Conference on Software Engineering, Artificial Intelligence, Networking and Parallel/Distributed Computing (SNPD...
2024
-
[13]
Aitor Lewkowycz, Anders Andreassen, David Dohan, Ethan Dyer, Henryk Michalewski, Vinay Venkatesh Ramasesh, Ambrose Slone, Cem Anil, Imanol Schlag, Theo Gutman-Solo, Yuhuai Wu, Behnam Neyshabur, Guy Gur-Ari, and Vedant Misra. 2022. https://api.semanticscholar.org/CorpusID:25014...
2022 arXiv
-
[14]
Hunter Lightman, Vineet Kosaraju, Yura Burda, Harrison Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. 2023. https://api.semanticscholar.org/CorpusID:258987659 Let's verify step by step . ArXiv, abs/2305.20050
2023 arXiv
-
[15]
Haipeng Luo, Qingfeng Sun, Can Xu, Pu Zhao, Jian-Guang Lou, Chongyang Tao, Xiubo Geng, Qingwei Lin, Shifeng Chen, and Dongmei Zhang. 2023. https://api.semanticscholar.org/CorpusID:261030818 Wizardmath: Empowering mathematical reasoning for large language models via reinforced ...
2023 arXiv
-
[16]
Trung Quoc Luong, Xinbo Zhang, Zhanming Jie, Peng Sun, Xiaoran Jin, and Hang Li. 2024. https://api.semanticscholar.org/CorpusID:267027728 Reft: Reasoning with reinforced fine-tuning . ArXiv, abs/2401.08967
2024 arXiv
-
[17]
Jingyuan Ma, Rui Li, Zheng Li, Lei Sha, and Zhifang Sui. 2024. https://api.semanticscholar.org/CorpusID:275133496 Plug-and-play training framework for preference optimization . ArXiv, abs/2412.20996
2024 arXiv
-
[18]
Yingqian Min, Zhipeng Chen, Jinhao Jiang, Jie Chen, Jia Deng, Yiwen Hu, Yiru Tang, Jiapeng Wang, Xiaoxue Cheng, Huatong Song, Wayne Xin Zhao, Zheng Liu, Zhongyuan Wang, and Jiahui Wen. 2024. https://api.semanticscholar.org/CorpusID:274656265 Imitate, explore, and self-improve:...
2024 arXiv
-
[19]
OpenAI. 2024. Openai o1 system card. https://arxiv.org/abs/2412.16720. Accessed: 2025-05-17
2024 arXiv
-
[20]
Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Jun-Mei Song, Mingchuan Zhang, Y. K. Li, Yu Wu, and Daya Guo. 2024. https://api.semanticscholar.org/CorpusID:267412607 Deepseekmath: Pushing the limits of mathematical reasoning in open language models . ArXiv, abs/2402.03300
2024 arXiv
-
[21]
Taiwei Shi, Yiyang Wu, Linxin Song, Tianyi Zhou, and Jieyu Zhao. 2025. https://api.semanticscholar.org/CorpusID:277628042 Efficient reinforcement finetuning via adaptive curriculum learning
2025
-
[22]
Kimi Team, Angang Du, Bofei Gao, Bowei Xing, Changjiu Jiang, Cheng Chen, Cheng Li, Chenjun Xiao, Chenzhuang Du, Chonghua Liao, Chuning Tang, Congcong Wang, Dehao Zhang, Enming Yuan, Enzhe Lu, Feng Tang, Flood Sung, Guangda Wei, Guokun Lai, and 75 others. 2025. https://api.sema...
2025 arXiv
-
[23]
NovaSky Team. 2025. Sky-t1: Train your own o1 preview model within \ 450. https://novasky-ai.github.io/posts/sky-t1. Accessed: 2025-01-09
2025
-
[24]
Yuxuan Tong, Xiwen Zhang, Rui Wang, Rui Min Wu, and Junxian He. 2024. https://api.semanticscholar.org/CorpusID:271270574 Dart-math: Difficulty-aware rejection tuning for mathematical problem-solving . ArXiv, abs/2407.13690
2024 arXiv
-
[25]
Cheng Wen, Tingwei Guo, Shuaijiang Zhao, Wei Zou, and Xiangang Li. 2025 a . https://api.semanticscholar.org/CorpusID:277993890 Sari: Structured audio reasoning via curriculum-guided reinforcement learning . ArXiv, abs/2504.15900
2025 arXiv
-
[26]
Liang Wen, Yunke Cai, Fenrui Xiao, Xin He, Qi An, Zhenyu Duan, Yimin Du, Junchen Liu, Lifu Tang, Xiaowei Lv, Haosheng Zou, Yongchao Deng, Shousheng Jia, and Xiangzheng Zhang. 2025 b . https://api.semanticscholar.org/CorpusID:276960927 Light-r1: Curriculum sft, dpo and rl for l...
2025 arXiv
-
[27]
Zhiheng Xi, Wenxiang Chen, Boyang Hong, Senjie Jin, Rui Zheng, Wei He, Yiwen Ding, Shichun Liu, Xin Guo, Junzhe Wang, Honglin Guo, Wei Shen, Xiaoran Fan, Yuhao Zhou, Shihan Dou, Xiao Wang, Xinbo Zhang, Peng Sun, Tao Gui, and 2 others. 2024. https://api.semanticscholar.org/Corp...
2024 arXiv
-
[28]
Tian Xie, Zitian Gao, Qingnan Ren, Haoming Luo, Yuqian Hong, Bryan Dai, Joey Zhou, Kai Qiu, Zhirong Wu, and Chong Luo. 2025. https://api.semanticscholar.org/CorpusID:276482543 Logic-rl: Unleashing llm reasoning with rule-based reinforcement learning . ArXiv, abs/2502.14768
2025 arXiv
-
[29]
Wenjing Xie, Juxin Niu, Chun Jason Xue, and Nan Guan. 2024. https://api.semanticscholar.org/CorpusID:270123107 Grade like a human: Rethinking automated assessment with large language models . ArXiv, abs/2405.19694
2024 arXiv
-
[30]
Boyang Xue, Qi Zhu, Hongru Wang, Rui Wang, Sheng Wang, Hongling Xu, Fei Mi, Yasheng Wang, Lifeng Shang, Qun Liu, and Kam-Fai Wong. 2025. https://api.semanticscholar.org/CorpusID:276938276 Dast: Difficulty-aware self-training on large language models . ArXiv, abs/2503.09029
2025 arXiv
-
[31]
An Yang, Anfeng Li, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Gao, Chengen Huang, Chenxu Lv, Chujie Zheng, Dayiheng Liu, Fan Zhou, Fei Huang, Feng Hu, Hao Ge, Haoran Wei, Huan Lin, Jialong Tang, and 41 others. 2025. https://api.semanticscholar.org/Cor...
2025
-
[32]
An Yang, Beichen Zhang, Binyuan Hui, Bofei Gao, Bowen Yu, Chengpeng Li, Dayiheng Liu, Jianhong Tu, Jingren Zhou, Junyang Lin, Keming Lu, Mingfeng Xue, Runji Lin, Tianyu Liu, Xingzhang Ren, and Zhenru Zhang. 2024. https://api.semanticscholar.org/CorpusID:272707652 Qwen2.5-math ...
2024 arXiv
-
[33]
Qiying Yu, Zheng Zhang, Ruofei Zhu, Yufeng Yuan, Xiaochen Zuo, Yu Yue, Tiantian Fan, Gaohong Liu, Lingjun Liu, Xin Liu, Haibin Lin, Zhiqi Lin, Bole Ma, Guangming Sheng, Yuxuan Tong, Chi Zhang, Mofan Zhang, Wang Zhang, Hang Zhu, and 16 others. 2025. https://api.semanticscholar....
2025 arXiv
-
[34]
Siyu Yuan, Zehui Chen, Zhiheng Xi, Junjie Ye, Zhengyin Du, and Jiecao Chen. 2025. https://api.semanticscholar.org/CorpusID:275757809 Agent-r: Training language model agents to reflect via iterative self-training . ArXiv, abs/2501.11425
2025 arXiv
-
[35]
Zheng Yuan, Hongyi Yuan, Cheng Li, Guanting Dong, Chuanqi Tan, and Chang Zhou. 2023. https://api.semanticscholar.org/CorpusID:260438790 Scaling relationship on learning mathematical reasoning with large language models . ArXiv, abs/2308.01825
2023 arXiv
-
[36]
Xiang Yue, Xingwei Qu, Ge Zhang, Yao Fu, Wenhao Huang, Huan Sun, Yu Su, and Wenhu Chen. 2023. https://api.semanticscholar.org/CorpusID:261696697 Mammoth: Building math generalist models through hybrid instruction tuning . ArXiv, abs/2309.05653
2023 arXiv
-
[37]
Yu Yue, Yufeng Yuan, Qiying Yu, Xiaochen Zuo, Ruofei Zhu, Wenyuan Xu, Jiaze Chen, Chengyi Wang, Tiantian Fan, Zhengyin Du, Xiang Wei, Xiangyu Yu, Gaohong Liu, Juncai Liu, Lingjun Liu, Haibin Lin, Zhiqi Lin, Bole Ma, Chi Zhang, and 8 others. 2025. https://api.semanticscholar.or...
2025
-
[38]
Weihao Zeng, Yuzhen Huang, Qian Liu, Wei Liu, Keqing He, Zejun Ma, and Junxian He. 2025. https://arxiv.org/abs/2503.18892 Simplerl-zoo: Investigating and taming zero reinforcement learning for open base models in the wild . Preprint, arXiv:2503.18892
2025 arXiv
-
[39]
Yaowei Zheng, Richong Zhang, Junhao Zhang, Yanhan Ye, Zheyan Luo, Zhangchi Feng, and Yongqiang Ma. 2024. http://arxiv.org/abs/2403.13372 Llamafactory: Unified efficient fine-tuning of 100+ language models . In Proceedings of the 62nd Annual Meeting of the Association for Compu...
2024 arXiv
-
[40]
online" 'onlinestring :=
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list...
-
[41]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.