REVIEW 3 major objections 4 minor 42 references
Agentic Instruction Data Selection: Let DataMaster Interpret Your Intent
T0 review · 3 major / 4 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper claims that instruction-data selection should be configured dynamically from a user's natural-language intent and the candidate pool, and it reports that its four-stage agent pipeline beats static baselines in 16 of 18…
desk verdict A useful, clearly-written agentic data-selection tool whose headline win counts are undercut by a benchmark-influenced LR choice and single-seed reporting. 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 machinery is a four-agent cascade, each stage reading the same user instruction and the data it receives. The Domain Agent embeds and clusters the pool, asks an LLM to label each cluster, and keeps only clusters matching the instruction; the Characteristic Agent inspects the filtered pool through a sandboxed data-analysis tool and emits deterministic filtering rules such as length bounds, refusal-phrase blacklists, and noise caps; the Informativeness Agent computes four target-model metrics (negative log-likelihood, token entropy, semantic drift, and MeanDiff, the magnitude of parameter change caused by one gradient step on a sample) and weights them according to the instruction; the Quality Agent synthesizes a task-specific rubric and applies it in batched listwise LLM judging to pick the final subset. The same frozen LLM configures all stages, while the target model is used only for the Stage-3 metrics, and the whole design keeps the selection objective conditioned on the user's request at every step instead of collapsing it into one proxy.
What would settle it
Take one pool and two contrasting user instructions, run DataMaster on each, and compute the overlap of the two selected 10K subsets; if the subsets are nearly identical, or if a single fixed high-quality subset outscores both on both target benchmarks, then intent-conditioned dynamic selection is not what drives the reported gains.
Extended reading notes
Core claim
The paper's central claim is that instruction-data selection should be configured dynamically from a user's natural-language intent and from the actual contents of the candidate pool, not by a fixed metric. It argues that the same pool should be curated differently for different goals because the optimal subset depends on the target task, the data distribution, and the target model together. The paper instantiates this as DataMaster, a four-agent cascade that composes domain matching, characteristic rule filtering, informativeness scoring against the target model, and LLM-judged quality at run time. Across six single-domain pools and two multi-domain pools, with three 7B-8B target models, the 10K subsets produced this way beat static selectors in 16 of 18 single-domain settings, beat the strongest static multi-dimensional baseline in 13 of 18, and beat full-pool training in 12 of 18 settings while using 2-41 times less data.
Load-bearing premise
The load-bearing premise is that the LLM's own quality rubrics and metric weights are trustworthy proxies for what actually improves downstream fine-tuning; if that judge has systematic taste biases, the selected subset can be skewed even though the final benchmark scores are measured independently.
Editorial extensions
If this is right
- A developer can curate a task-specific fine-tuning set by writing a sentence in natural language, removing the need to hand-craft per-dataset heuristics.
- A compact 10K subset selected for the stated intent can outperform training on the entire uncurated pool in most tested settings, so compute and data budgets can shrink without sacrificing benchmark scores.
- Dynamic, agentic selection is a workable replacement for static metric-based selection in both single-domain and multi-domain pools, including target-domain extraction from mixed pools.
- The first-stage domain filter can be reused as a preprocessing module for existing static selectors, improving them, which supports the value of separating domain selection from the rest of the pipeline.
Reading between the lines
- Because the selected subset is defined relative to an instruction, benchmark comparisons of selection methods may need to be reported per intent; a method's 'best subset' is not a property of the pool alone.
- A direct test of the self-judging design would swap the stage-four LLM judge for an independent model or human scores; if gains persist, intent-conditioned rubric generation, not judge identity, is what matters.
- The emitted rule policies and metric weights could be recorded as reusable curation recipes, letting users transfer a strategy across pools or audit what the agent actually optimized.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes DataMaster, an agentic instruction-data-selection system that interprets a natural-language selection instruction and composes a four-stage cascade of domain, characteristic, informativeness, and quality filters to curate a 10K subset from an instruction pool. Each stage is configured by the same frozen LLM (DeepSeek-V4-Flash), with tool-assisted pool inspection, target-model metrics, and an LLM-generated quality rubric. Across three 7B–8B target models and eight source pools, the reported experiments claim that DataMaster outperforms six static baselines in 16 of 18 single-domain settings, outperforms Claude Code in 14 of 18 settings, and beats full-pool training in 12 of 18 settings, with additional multi-domain gains.
Significance. If the empirical claims hold, this is a useful and timely contribution: it replaces per-task handcrafted selection heuristics with intent-conditioned, agentic orchestration, and it ships a transparent protocol, per-benchmark tables, prompt templates, and public code. The central idea is clearly novel relative to static selection metrics, and the low API cost (about US$4–5 per selection task) makes the system practical. The main obstacle is the fairness and stability of the headline comparison: the shared learning rate is selected using the reported benchmark scores themselves, and all results come from a single seed with no variance quantification. Because the headline claims are count-based and several margins are below one point, the comparison protocol must be repaired before the counts can be accepted. The same-LLM rubric-generation/judging coupling is a secondary internal-validity concern but is not a circular derivation, since the final numbers come from external benchmarks.
major comments (3)
- [Appendix I, 'Fine-tuning protocol' and 'Runs per setting'] The shared learning rate is selected per setting by running every method at all three retained rates and picking the rate with the highest setting-level average across all methods. Because DataMaster has the highest scores in most settings, it disproportionately influences the average that selects the rate, so the evaluation benchmarks serve simultaneously as the learning-rate selection criterion and as the outcome measure, with no held-out split. The paper's central claims are count-based (16/18 over static baselines, 12/18 over Full Pool, 14/18 over Claude Code), and several margins are sub-1-point (e.g., Table 2, OpenHermes-2.5 Code: 41.11 vs. 41.07). This protocol can therefore materially inflate DataMaster's win count. Please rerun the comparison with multi-seed variance and with a learning-rate choice that is independent of the reported test scores, such as a per-model fixed LR or an LR selected on a development split, and report whether the win counts survive.
- [Appendix I, 'Runs per setting'] The paper explicitly states that 'multi-seed variance is not quantified' and that each setting is reported on a single seed (42). Given that the headline claims are counts of wins and losses and that multiple reported margins are well under one point, the absence of variance estimates leaves the 16/18 and 12/18 claims statistically unsupported. At a minimum, report 3–5 seeds for DataMaster and the strongest baselines in the settings with small margins, together with confidence intervals or per-seed ranges, and state whether the rank order is stable across seeds.
- [Section 4, 'Stage 4: Quality Agent' (Eqs. 12–14); Appendix G.4] The same backbone LLM both generates the quality rubric (Eq. 13) and applies it as the judge (Eq. 14), and no analysis shows that these LLM-judge scores predict downstream fine-tuning quality. Because the final benchmark numbers are external, this is not a circular derivation, but it is an unvalidated internal proxy: if the judge has systematic taste biases, the selected subset is corrupted even though the reported accuracies remain independent. I ask for a sensitivity analysis, for example comparing against a fixed generic rubric, or a correlation of LLM-judge scores with per-sample downstream utility; if that is infeasible, the limitation should be stated explicitly and its potential impact on the quality-stage contribution discussed.
minor comments (4)
- [Title/Front matter] The full-text title reads 'LetDataMasterInterpret Your Intent' without spaces; this should be corrected to 'Let DataMaster Interpret Your Intent'.
- [Table 1 and Appendix C.1] The column layout of Table 1 is difficult to read because the column headers are not clearly separated from the row labels and the Full Pool column is interleaved with the selection methods; a clearer table design with explicit column headers would improve reproducibility.
- [Appendix H, Select2Reason] Select2Reason is a reimplementation because the original implementation is not public; please release this reimplementation in the public repository and note the exact version used so that the baseline is fully reproducible.
- [Section 2 and Appendix K] The related-work section cites agentic curation systems that optimize through downstream feedback, but no such system is included as a baseline; a direct comparison, or a clear statement of why those systems are out of scope, would strengthen the positioning of the feedback-free design.
Circularity Check
No significant circularity: DataMaster's effectiveness claims are supported by external benchmark evaluations, not by a self-referential derivation.
full rationale
The paper's central claims are empirical comparisons: DataMaster selects a 10K subset via a four-stage cascade (Eqs. 1-14) and the resulting fine-tuned models are evaluated on standard benchmarks in Tables 1-2. The selection scores—weighted informativeness in Stage 3 (Eqs. 9-10) and rubric-based quality in Stage 4 (Eqs. 11-14)—are generated from the user instruction and tool-assisted observations of the data pool; they are never defined in terms of the downstream benchmark accuracies. Thus no benchmark result is equivalent to a selection input by construction. The same LLM both writes and applies the Stage 4 rubric, and Appendix I selects a shared learning rate using the reported benchmark averages; these are evaluation-fairness and stability concerns rather than logical circles, and neither reduces a prediction to a fitted parameter. The only apparent self-citation is Huang et al. (2026) in the Related Work, used to note that LLMs can generate semantic domain labels for clustering; it is not load-bearing for DataMaster's design or claims. No equation equates a fitted parameter with a prediction, and no self-cited uniqueness theorem is invoked to force the design. Verdict: no significant circularity.
Assumptions & free parameters
free parameters (11)
- selection_budget_k =
10,000
- clustering_switch_threshold_nc =
50,000
- kmeans_clusters_kc =
20
- cluster_label_samples_ns =
8
- stage3_internal_topk_kstar =
not reported (k* > k)
- stage4_batch_size_b =
10 samples per batch, 5 batches per round
- characteristic_default_thresholds =
Lmin=40, Lmax=4096, Lx=5, Ly=15, rho_min=0.2, tau_n=0.15, tau_e=0.30
- llm_decoding_temperature =
0.01
- shared_lr_protocol =
chosen per setting from {1e-6, 5e-6, 1e-5} to maximize average benchmark score across all methods
- random_seed =
42
- mean_diff_update_lr_and_layer =
1e-5, last-layer up_proj only
assumptions (8)
- domain assumption Embedding-based clustering yields semantically coherent clusters, so labels from 8 samples per cluster represent the cluster.
- domain assumption LLM tool-assisted observations are read-only and sufficient to configure rules, weights, and rubrics.
- domain assumption LLM-generated quality rubrics and metric weights are valid proxies for downstream SFT performance.
- domain assumption The fixed four-metric informativeness set (NLL, entropy, drift, MeanDiff) spans the relevant selection dimensions.
- domain assumption The natural-language instructions in Tables 8 and 9 are representative of real user intents and carry enough signal.
- domain assumption The shared learning-rate selection and single-seed final-epoch scores give a fair comparison across methods.
- domain assumption Overriding evaluator chat templates fixes a tokenizer artifact without changing model behavior.
- domain assumption Near-greedy decoding of the configurator LLM is stable enough that one run represents the agent's behavior.
Cite this review
Pith. "Pith review of Agentic Instruction Data Selection: Let DataMaster Interpret Your Intent." pith.science (2026). https://pith.science/paper/UUHESACC
@misc{pith2026260810579,
author = {Pith},
title = {Pith review of: Agentic Instruction Data Selection: Let DataMaster Interpret Your Intent},
year = {2026},
howpublished = {\url{https://pith.science/paper/UUHESACC}},
note = {Machine review of arXiv:2608.10579}
}
read the original abstract
Although existing instruction data selection methods have introduced various metrics, the inherent complexity of real-world datasets makes it impractical for any single metric to generalize across all scenarios. Developers are thus often forced to manually inspect data and craft heuristic rules for each new application---a tedious and error-prone process. In this paper, we propose a paradigm shift from manual configuration to automated orchestration via the Instruction Data Selection Agent (DataMaster), which interprets user intent and autonomously composes optimal selection strategies. By allowing users to specify data needs through natural language descriptions, DataMaster simplifies data curation and removes the burden of manual strategy design. Extensive experiments across the math, medical, and code domains show that DataMaster outperforms static baselines in most settings and surpasses full-pool training in a substantial number of cases. The implementation of DataMaster and the scripts needed to reproduce the reported pipeline are publicly available at https://github.com/nju-websoft/DataMaster.
Figures
Reference graph
Works this paper leans on
-
[1]
From Quantity to Quality: Boosting
Ming Li and Yong Zhang and Zhitao Li and Jiuhai Chen and Lichang Chen and Ning Cheng and Jianzong Wang and Tianyi Zhou and Jing Xiao , editor =. From Quantity to Quality: Boosting. Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers),. 2024 , ...
-
[2]
Superfiltering: Weak-to-Strong Data Filtering for Fast Instruction-Tuning , booktitle =
Ming Li and Yong Zhang and Shwai He and Zhitao Li and Hongyu Zhao and Jianzong Wang and Ning Cheng and Tianyi Zhou , editor =. Superfiltering: Weak-to-Strong Data Filtering for Fast Instruction-Tuning , booktitle =. 2024 , url =. doi:10.18653/V1/2024.ACL-LONG.769 , timestamp =
-
[3]
Findings of the Association for Computational Linguistics,
Yicheng Chen and Yining Li and Kai Hu and Zerun Ma and Haochen Ye and Kai Chen , editor =. Findings of the Association for Computational Linguistics,. 2025 , url =. doi:10.18653/V1/2025.FINDINGS-ACL.515 , timestamp =
-
[4]
Select2Reason: Efficient Instruction-Tuning Data Selection for Long-CoT Reasoning , booktitle =
Cehao Yang and Xueyuan Lin and Xiaojun Wu and Chengjin Xu and Xuhui Jiang and Honghao Liu and Hui Xiong and Jian Guo , editor =. Select2Reason: Efficient Instruction-Tuning Data Selection for Long-CoT Reasoning , booktitle =. 2026 , url =
work page 2026
-
[5]
Wong and Dongfang Li and Ziyi Wang and Baotian Hu and Min Zhang , editor =
Liangxin Liu and Xuebo Liu and Derek F. Wong and Dongfang Li and Ziyi Wang and Baotian Hu and Min Zhang , editor =. SelectIT: Selective Instruction Tuning for LLMs via Uncertainty-Aware Self-Reflection , booktitle =. 2024 , url =
work page 2024
-
[6]
The Twelfth International Conference on Learning Representations,
Lichang Chen and Shiyang Li and Jun Yan and Hai Wang and Kalpa Gunaratna and Vikas Yadav and Zheng Tang and Vijay Srinivasan and Tianyi Zhou and Heng Huang and Hongxia Jin , title =. The Twelfth International Conference on Learning Representations,. 2024 , url =
work page 2024
-
[7]
The Twelfth International Conference on Learning Representations,
Wei Liu and Weihao Zeng and Keqing He and Yong Jiang and Junxian He , title =. The Twelfth International Conference on Learning Representations,. 2024 , url =
work page 2024
-
[8]
The Twelfth International Conference on Learning Representations,
Keming Lu and Hongyi Yuan and Zheng Yuan and Runji Lin and Junyang Lin and Chuanqi Tan and Chang Zhou and Jingren Zhou , title =. The Twelfth International Conference on Learning Representations,. 2024 , url =
work page 2024
Show all 42 references
-
[9]
Clustering and Ranking: Diversity-preserved Instruction Selection through Expert-aligned Quality Estimation , booktitle =
Yuan Ge and Yilun Liu and Chi Hu and Weibin Meng and Shimin Tao and Xiaofeng Zhao and Mahong Xia and Zhang Li and Boxing Chen and Hao Yang and Bei Li and Tong Xiao and JingBo Zhu , editor =. Clustering and Ranking: Diversity-preserved Instruction Selection through Expert-align...
2024 doi
- [10]
- [11]
-
[12]
Proceedings of the Thirty-Fourth International Joint Conference on Artificial Intelligence,
Jia Zhang and Chen. Proceedings of the Thirty-Fourth International Joint Conference on Artificial Intelligence,. 2025 , url =. doi:10.24963/IJCAI.2025/928 , timestamp =
2025 doi
-
[13]
Chunting Zhou and Pengfei Liu and Puxin Xu and Srinivasan Iyer and Jiao Sun and Yuning Mao and Xuezhe Ma and Avia Efrat and Ping Yu and Lili Yu and Susan Zhang and Gargi Ghosh and Mike Lewis and Luke Zettlemoyer and Omer Levy , editor =. Advances in Neural Information Processi...
2023
-
[14]
ResoFilter: Fine-grained Synthetic Data Filtering for Large Language Models through Data-Parameter Resonance Analysis , booktitle =
Zeao Tu and Xiangdi Meng and Yu He and Zihan Yao and Tianyu Qi and Jun Liu and Ming Li , editor =. ResoFilter: Fine-grained Synthetic Data Filtering for Large Language Models through Data-Parameter Resonance Analysis , booktitle =. 2025 , url =. doi:10.18653/V1/2025.FINDINGS-N...
2025 doi
- [15]
-
[16]
UltraMedical: Building Specialized Generalists in Biomedicine , booktitle =
Kaiyan Zhang and Sihang Zeng and Ermo Hua and Ning Ding and Zhang. UltraMedical: Building Specialized Generalists in Biomedicine , booktitle =. 2024 , url =
2024
-
[17]
SelfCodeAlign: Self-Alignment for Code Generation , booktitle =
Yuxiang Wei and Federico Cassano and Jiawei Liu and Yifeng Ding and Naman Jain and Zachary Mueller and Harm de Vries and Leandro von Werra and Arjun Guha and Lingming Zhang , editor =. SelfCodeAlign: Self-Alignment for Code Generation , booktitle =. 2024 , url =
2024
-
[18]
Miranda and Alisa Liu and Nouha Dziri and Shane Lyu and Yuling Gu and Saumya Malik and Victoria Graf and Jena D
Nathan Lambert and Jacob Morrison and Valentina Pyatkin and Shengyi Huang and Hamish Ivison and Faeze Brahman and Lester James V. Miranda and Alisa Liu and Nouha Dziri and Shane Lyu and Yuling Gu and Saumya Malik and Victoria Graf and Jena D. Hwang and Jiangjiang Yang and Rona...
-
[19]
CoRR , volume =
An Yang and Baosong Yang and Beichen Zhang and Binyuan Hui and Bo Zheng and Bowen Yu and Chengyuan Li and Dayiheng Liu and Fei Huang and Haoran Wei and Huan Lin and Jian Yang and Jianhong Tu and Jianwei Zhang and Jianxin Yang and Jiaxi Yang and Jingren Zhou and Junyang Lin and...
- [20]
- [21]
-
[22]
CoRR , volume =
Karl Cobbe and Vineet Kosaraju and Mohammad Bavarian and Mark Chen and Heewoo Jun and Lukasz Kaiser and Matthias Plappert and Jerry Tworek and Jacob Hilton and Reiichiro Nakano and Christopher Hesse and John Schulman , title =. CoRR , volume =. 2021 , url =. 2110.14168 , timestamp =
2021 arXiv
-
[23]
Measuring Mathematical Problem Solving With the
Dan Hendrycks and Collin Burns and Saurav Kadavath and Akul Arora and Steven Basart and Eric Tang and Dawn Song and Jacob Steinhardt , editor =. Measuring Mathematical Problem Solving With the. Proceedings of the Neural Information Processing Systems Track on Datasets and Benc...
2021
-
[24]
Ramasesh and Ambrose Slone and Cem Anil and Imanol Schlag and Theo Gutman
Aitor Lewkowycz and Anders Andreassen and David Dohan and Ethan Dyer and Henryk Michalewski and Vinay V. Ramasesh and Ambrose Slone and Cem Anil and Imanol Schlag and Theo Gutman. Solving Quantitative Reasoning Problems with Language Models , booktitle =. 2022 , url =
2022
-
[25]
Evaluating Large Language Models Trained on Code , journal =
Mark Chen and Jerry Tworek and Heewoo Jun and Qiming Yuan and Henrique Pond. Evaluating Large Language Models Trained on Code , journal =. 2021 , url =. 2107.03374 , timestamp =
2021 arXiv
-
[26]
LiveCodeBench: Holistic and Contamination Free Evaluation of Large Language Models for Code , booktitle =
Naman Jain and King Han and Alex Gu and Wen. LiveCodeBench: Holistic and Contamination Free Evaluation of Large Language Models for Code , booktitle =. 2025 , url =
2025
-
[27]
BigCodeBench: Benchmarking Code Generation with Diverse Function Calls and Complex Instructions , booktitle =
Terry Yue Zhuo and Minh Chien Vu and Jenny Chim and Han Hu and Wenhao Yu and Ratnadira Widyasari and Imam Nur Bani Yusuf and Haolan Zhan and Junda He and Indraneil Paul and Simon Brunner and Chen Gong and James Hoang and Armel Randy Zebaze and Xiaoheng Hong and Wen. BigCodeBen...
2025
-
[28]
What Disease does this Patient Have?
Di Jin and Eileen Pan and Nassim Oufattole and Wei. What Disease does this Patient Have?. CoRR , volume =. 2020 , url =. 2009.13081 , timestamp =
2020 arXiv
-
[29]
9th International Conference on Learning Representations,
Dan Hendrycks and Collin Burns and Steven Basart and Andy Zou and Mantas Mazeika and Dawn Song and Jacob Steinhardt , title =. 9th International Conference on Learning Representations,. 2021 , url =
2021
- [30]
-
[31]
M3-Embedding: Multi-Linguality, Multi-Functionality, Multi-Granularity Text Embeddings Through Self-Knowledge Distillation , booktitle =
Jianlyu Chen and Shitao Xiao and Peitian Zhang and Kun Luo and Defu Lian and Zheng Liu , editor =. M3-Embedding: Multi-Linguality, Multi-Functionality, Multi-Granularity Text Embeddings Through Self-Knowledge Distillation , booktitle =. 2024 , url =. doi:10.18653/V1/2024.FINDI...
2024 doi
-
[32]
Balappanawar and Weicong Chen and Shashank Kambhatla and Srinivasan Iyengar and Shivkumar Kalyanaraman and Ponnurangam Kumaraguru and Vipin Chaudhary , title =
Debargha Ganguly and Sumit Kumar and Ishwar B. Balappanawar and Weicong Chen and Shashank Kambhatla and Srinivasan Iyengar and Shivkumar Kalyanaraman and Ponnurangam Kumaraguru and Vipin Chaudhary , title =. 2025 , url =. doi:10.1109/BIGDATA66926.2025.11401579 , timestamp =
2025
- [33]
-
[34]
CoRR , volume =
Yujie Luo and Xiangyuan Ru and Jingsheng Zheng and Jingjing Wang and Yuqi Zhu and Jintian Zhang and Runnan Fang and Kewei Xu and Ye Liu and Zheng Wei and Jiang Bian and Zang Li and Shumin Deng , title =. CoRR , volume =. 2026 , url =. doi:10.48550/ARXIV.2605.30407 , eprinttype...
-
[35]
Ma and Frederic Sala and Dawn Song and Ruoxi Jia , title =
Feiyang Kang and Hanze Li and Adam Nguyen and Mahavir Dabas and Jiaqi W. Ma and Frederic Sala and Dawn Song and Ruoxi Jia , title =. CoRR , volume =. 2026 , url =. doi:10.48550/ARXIV.2606.04261 , eprinttype =. 2606.04261 , timestamp =
-
[36]
2026 , publisher =
Shaojie Dai and Xin Liu and Yue Yu , title =. 2026 , publisher =. doi:10.1109/TASLPRO.2025.3642562 , url =
2026
-
[37]
Take the essence and discard the dross:
Ziche Liu and Rui Ke and Yajiao Liu and Feng Jiang and Haizhou Li , editor =. Take the essence and discard the dross:. Proceedings of the 2025 Conference of the Nations of the Americas Chapter of the Association for Computational Linguistics: Human Language Technologies,. 2025...
2025 doi
-
[38]
Data Selection for Language Models via Importance Resampling , booktitle =
Sang Michael Xie and Shibani Santurkar and Tengyu Ma and Percy Liang , editor =. Data Selection for Language Models via Importance Resampling , booktitle =. 2023 , url =
2023
-
[39]
Zifan Liu and Amin Karbasi and Theodoros Rekatsinas , editor =. Advances in Neural Information Processing Systems 37: Annual Conference on Neural Information Processing Systems 2024, NeurIPS 2024, Vancouver, BC, Canada, December 10 - 15, 2024 , year =
2024
- [40]
-
[41]
DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence , journal =
DeepSeek. DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence , journal =. 2026 , url =. doi:10.48550/ARXIV.2606.19348 , eprinttype =. 2606.19348 , timestamp =
2026 doi
-
[42]
ZeRO: memory optimizations toward training trillion parameter models , booktitle =
Samyam Rajbhandari and Jeff Rasley and Olatunji Ruwase and Yuxiong He , editor =. ZeRO: memory optimizations toward training trillion parameter models , booktitle =. 2020 , url =. doi:10.1109/SC41405.2020.00024 , timestamp =
2020 arXiv
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.