• bitcoinBitcoin(BTC)$77,178.00-1.01%
  • ethereumEthereum(ETH)$2,385.87-2.63%
  • tetherTether(USDT)$1.00-0.01%
  • binancecoinBNB(BNB)$686.43-0.05%
  • rippleXRP(XRP)$1.33-3.24%
  • usd-coinUSDC(USDC)$1.00-0.01%
  • solanaSolana(SOL)$99.16-2.88%
  • tronTRON(TRX)$0.323884-0.21%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.042.54%
  • HyperliquidHyperliquid(HYPE)$81.68-2.00%
  • zcashZcash(ZEC)$814.36-4.83%
  • dogecoinDogecoin(DOGE)$0.081486-1.50%
  • RainRain(RAIN)$0.0167531.03%
  • USDSUSDS(USDS)$1.00-0.01%
  • moneroMonero(XMR)$518.331.57%
  • leo-tokenLEO Token(LEO)$9.28-1.14%
  • whitebitWhiteBIT Coin(WBT)$70.69-1.55%
  • chainlinkChainlink(LINK)$11.07-3.11%
  • cardanoCardano(ADA)$0.195985-1.85%
  • stellarStellar(XLM)$0.173503-2.73%
  • bitcoin-cashBitcoin Cash(BCH)$242.55-2.55%
  • daiDai(DAI)$1.000.00%
  • CantonCanton(CC)$0.109611-5.90%
  • Ethena USDeEthena USDe(USDE)$1.00-0.02%
  • USD1USD1(USD1)$1.000.00%
  • litecoinLitecoin(LTC)$49.35-1.05%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.32-1.94%
  • uniswapUniswap(UNI)$5.862.02%
  • Global DollarGlobal Dollar(USDG)$1.000.06%
  • hedera-hashgraphHedera(HBAR)$0.073249-1.76%
  • avalanche-2Avalanche(AVAX)$7.14-2.38%
  • shiba-inuShiba Inu(SHIB)$0.000005-0.75%
  • suiSui(SUI)$0.72-1.63%
  • paypal-usdPayPal USD(PYUSD)$1.000.02%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Circle USYCCircle USYC(USYC)$1.140.01%
  • tether-goldTether Gold(XAUT)$4,365.92-0.07%
  • crypto-com-chainCronos(CRO)$0.053893-3.52%
  • nearNEAR Protocol(NEAR)$1.85-8.13%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • MemeCoreMemeCore(M)$1.04-0.96%
  • okbOKB(OKB)$106.64-4.03%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.140.03%
  • BittensorBittensor(TAO)$216.89-4.01%
  • aaveAave(AAVE)$126.93-0.21%
  • AsterAster(ASTER)$0.734.29%
  • pax-goldPAX Gold(PAXG)$4,376.34-0.07%
  • mantleMantle(MNT)$0.552.43%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.056429-0.37%
  • MorphoMorpho(MORPHO)$2.48-3.06%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

AllenAI Open Instruct Tulu 3 Post-Training with SFT, DPO, RLVR, GRPO, and Verifier-Based Evaluation

August 12, 2026
in AI & Technology
Reading Time: 3 mins read
A A
AllenAI Open Instruct Tulu 3 Post-Training with SFT, DPO, RLVR, GRPO, and Verifier-Based Evaluation
ShareShareShareShareShare

YOU MAY ALSO LIKE

Huskeys Raises $27M Series A to Build the Security Control Layer for the AI Driven Network – Unite.AI

Forward-deployed engineering is how enterprise AI learns

print("\n" + "=" * 90); print("STAGE 3 — RLVR / GRPO"); print("=" * 90)
grpo_cfg = types.SimpleNamespace(loss_fn=GRPOLossType.dapo, clip_lower=cfg.clip_lower,
                                clip_higher=cfg.clip_higher, kl_estimator=cfg.kl_estimator)
_gen_eos = getattr(getattr(model, "generation_config", None), "eos_token_id", None)
_terms = {tok.eos_token_id, tok.pad_token_id}
_terms |= set(_gen_eos) if isinstance(_gen_eos, (list, tuple)) else {_gen_eos}
TERMINATORS = torch.tensor(sorted(t for t in _terms if t is not None), device=DEV)
def token_logps(seq, attn, temperature, grad=True):
   pos = (attn.cumsum(-1) - 1).clamp(min=0)
   ctx = torch.enable_grad() if grad else torch.no_grad()
   with ctx, amp():
       logits = model(input_ids=seq, attention_mask=attn, position_ids=pos).logits
   return per_token_logps_fn(logits / temperature, seq)
def rollout(batch_rows):
   G = cfg.samples_per_prompt
   ids = [r["input_ids_prompt"] for r in batch_rows]
   P = max(len(x) for x in ids)
   pin = torch.tensor([[tok.pad_token_id] * (P - len(x)) + x for x in ids], device=DEV)
   pmask = torch.tensor([[0] * (P - len(x)) + [1] * len(x) for x in ids], device=DEV)
   model.eval()
   with torch.no_grad(), amp(), with_cache():
       seq = model.generate(input_ids=pin, attention_mask=pmask, do_sample=True,
                            temperature=cfg.grpo_temperature, top_p=1.0, top_k=0,
                            max_new_tokens=cfg.grpo_max_new, num_return_sequences=G,
                            pad_token_id=tok.pad_token_id)
   model.train()
   resp = seq[:, P:]
   is_term = torch.isin(resp, TERMINATORS)
   first = torch.where(is_term.any(1), is_term.float().argmax(1),
                       torch.full((resp.shape[0],), resp.shape[1] - 1, device=DEV))
   idx = torch.arange(resp.shape[1], device=DEV).unsqueeze(0)
   resp_mask = (idx <= first.unsqueeze(1)).long()
   full_mask = torch.cat([torch.zeros(seq.shape[0], P, dtype=torch.long, device=DEV), resp_mask], 1)
   attn = torch.cat([pmask.repeat_interleave(G, 0), resp_mask], 1)
   texts = tok.batch_decode(resp, skip_special_tokens=True)
   gts = [r["ground_truth"] for r in batch_rows for _ in range(G)]
   srcs = [r["dataset"] for r in batch_rows for _ in range(G)]
   scores = verify_batch(texts, gts, srcs)
   per_prompt = scores.reshape(-1, G)
   mean_g = np.repeat(per_prompt.mean(-1), G, 0)
   if cfg.adv_norm == "standard":
       adv = (scores - mean_g) / (np.repeat(per_prompt.std(-1), G, 0) + 1e-8)
   else:
       adv = scores - mean_g
   adv_t = torch.tensor(adv, device=DEV, dtype=torch.float32).unsqueeze(1).expand_as(full_mask.float())
   return seq, attn, full_mask, adv_t, scores, texts
opt, sched, scaler = new_opt(cfg.grpo_lr, cfg.grpo_iters * cfg.grpo_inner_epochs)
order = list(range(len(rlvr_ds))); random.shuffle(order)
for it_i in range(cfg.grpo_iters):
   rows = [rlvr_ds[order[(it_i * cfg.prompts_per_iter + j) % len(rlvr_ds)]]
           for j in range(cfg.prompts_per_iter)]
   seq, attn, mask, adv, scores, texts = rollout(rows)
   with torch.no_grad():
       old_lp = torch.cat([token_logps(seq[i:i + cfg.grpo_micro_bs], attn[i:i + cfg.grpo_micro_bs],
                                       cfg.grpo_temperature, grad=False)
                           for i in range(0, seq.shape[0], cfg.grpo_micro_bs)])
       with model.disable_adapter():
           ref_lp = torch.cat([token_logps(seq[i:i + cfg.grpo_micro_bs], attn[i:i + cfg.grpo_micro_bs],
                                           cfg.grpo_temperature, grad=False)
                               for i in range(0, seq.shape[0], cfg.grpo_micro_bs)])
   n_chunks = math.ceil(seq.shape[0] / cfg.grpo_micro_bs)
   for ep in range(cfg.grpo_inner_epochs):
       stats = {"pg": 0.0, "kl": 0.0, "clip": 0.0}
       for i in range(0, seq.shape[0], cfg.grpo_micro_bs):
           sl = slice(i, i + cfg.grpo_micro_bs)
           new_lp = token_logps(seq[sl], attn[sl], cfg.grpo_temperature, grad=True)
           new_lp_, old_lp_, ref_lp_ = new_lp[:, :-1], old_lp[sl][:, :-1], ref_lp[sl][:, :-1]
           m_, a_ = mask[sl][:, 1:], adv[sl][:, 1:]
           ratio = torch.exp((new_lp_ - old_lp_).clamp(-20, 20))
           pg, clipfrac, kl = compute_grpo_loss(new_lp_, ratio, a_, ref_lp_, grpo_cfg,
                                                torch.ones_like(ratio))
           loss = masked_mean(pg + cfg.grpo_kl_beta * kl, m_) / n_chunks
           scaler.scale(loss).backward()
           with torch.no_grad():
               stats["pg"] += masked_mean(pg.detach(), m_).item() / n_chunks
               stats["kl"] += masked_mean(kl.detach(), m_).item() / n_chunks
               stats["clip"] += masked_mean(clipfrac.detach(), m_).item() / n_chunks
           del new_lp, ratio, pg, kl
       step_opt(opt, sched, scaler)
       if DEV == "cuda":
           torch.cuda.empty_cache()
       print(f"  grpo iter {it_i+1}/{cfg.grpo_iters} ep{ep+1}  reward {scores.mean():.3f} "
             f"(solved {int(scores.sum())}/{len(scores)})  pg {stats['pg']:+.4f}  "
             f"kl {stats['kl']:.4f}  clipfrac {stats['clip']:.3f}")
print("\n  sample rollout ->", textwrap.shorten(texts[0].replace("\n", " "), 220))
rlvr_acc = evaluate("after-rlvr", eval_rows)
print("\n" + "=" * 90)
print(f"{'stage':<14}{'verifier acc':>14}")
for name, val in [("base", f"{base_acc:.3f}"), ("sft", f"{sft_acc:.3f}"),
                 ("dpo", f"{dpo_acc:.3f}"), ("rlvr", f"{rlvr_acc:.3f}")]:
   print(f"{name:<14}{val:>14}")
print("=" * 90)
OUT = "/content/tulu-mini" if os.path.isdir("/content") else "./tulu-mini"
merged = model.merge_and_unload()
merged.save_pretrained(OUT); tok.save_pretrained(OUT)
print(f"merged checkpoint -> {OUT}  (equivalent to `python open_instruct/merge_lora.py`)")

Credit: Source link

ShareTweetSendSharePin

Related Posts

Huskeys Raises M Series A to Build the Security Control Layer for the AI Driven Network – Unite.AI
AI & Technology

Huskeys Raises $27M Series A to Build the Security Control Layer for the AI Driven Network – Unite.AI

September 2, 2026
Forward-deployed engineering is how enterprise AI learns
AI & Technology

Forward-deployed engineering is how enterprise AI learns

September 2, 2026
Nintendo’s Surprise Free Update For Mario Kart 8 Deluxe On Switch 2 Includes Eight-Player Split-Screen
AI & Technology

Nintendo’s Surprise Free Update For Mario Kart 8 Deluxe On Switch 2 Includes Eight-Player Split-Screen

September 2, 2026
Anthropic Introduces Enterprise Frontier Safeguards (EFS): Zero-Data-Retention Privacy Plus Cross-Session Misuse Detection
AI & Technology

Anthropic Introduces Enterprise Frontier Safeguards (EFS): Zero-Data-Retention Privacy Plus Cross-Session Misuse Detection

September 2, 2026
Next Post
Live Updates: Europe’s First Total Solar Eclipse in Decades Is Turning Day to Dark – The New York Times

Live Updates: Europe’s First Total Solar Eclipse in Decades Is Turning Day to Dark - The New York Times

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
My Sister Thinks I’m Out To Kill Her (I Just Want To Sell a House)

My Sister Thinks I’m Out To Kill Her (I Just Want To Sell a House)

September 2, 2026
Horses run from flames as wildfire advances in Greece

Horses run from flames as wildfire advances in Greece

August 30, 2026
Instagram Renames AI Creator Label and Restricts Unlabeled AI-Generated Profiles – Unite.AI

Instagram Renames AI Creator Label and Restricts Unlabeled AI-Generated Profiles – Unite.AI

August 31, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!