I created an LLM post-training method called RPS. Preliminary results show that it improved Qwen3-8b's program synthesis reliability. [R]

· Source: Machine Learning · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Software Development & Engineering · Depth: Expert, quick

Summary

A new LLM post-training method, Regressive Plasticity Schedule (RPS), has been developed, drawing inspiration from neuroscience's two-stage learning model. RPS trains large language models like Qwen3-8b in two distinct stages: an initial phase on "easy" data with a high learning rate, followed by a second phase on "hard" data using 10% of the initial learning rate. This approach combines curriculum learning with learning rate decay. Preliminary results indicate RPS improved Qwen3-8b's program synthesis reliability, achieving 1145/1200 program executions without error, compared to 870/1200 for an Equal Plasticity Schedule (EPS) baseline. On ARC-AGI 1 public eval scores, RPS scored 4%, outperforming EPS's 2.4%. The method aims to enhance model performance by mimicking human neuro-plasticity stages.

Key takeaway

For Machine Learning Engineers optimizing LLM performance on code generation, consider integrating a two-stage training approach like RPS. Your current fine-tuning strategies might benefit from separating "easy" and "hard" data with distinct learning rates, potentially improving program synthesis reliability. Evaluate how you define and split your training data to operationalize "easy" versus "hard" examples, and benchmark against single-stage baselines to quantify the gains.

Key insights

The Regressive Plasticity Schedule (RPS) improves LLM program synthesis by mimicking human learning stages with a two-stage curriculum and learning rate decay.

Principles

Method

RPS trains models in two stages: easy data with high learning rate, then hard data with 10% of the initial learning rate, combining curriculum learning and learning rate decay.

In practice

Topics

Code references

Best for: Research Scientist, AI Engineer, AI Scientist, Machine Learning Engineer, NLP Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Machine Learning.