Marin 535B: The Training Run Is the Real Open-Source Release
On August 18, 2026, the Marin community opened the tracking issue for its largest training run yet: a 535.3-billion-parameter mixture-of-experts model with 22.76 billion active parameters. Training is now underway, and the important release is not a checkpoint. It is the operating record around the checkpoint.
Marin is publishing the model specification, scaling ladder, pinned code, data-provenance tables, training dashboards, failure reports, and health checks while the run is still in progress. For developers evaluating “open” models, that changes the question from Can I download the weights? to Can I audit how this system was built and where it might fail?
What Marin Actually Launched
The official hero-run issue describes an all-MoE model trained on 18 trillion tokens across 11 GB200 NVL72 racks. Its 384 routed experts activate eight experts per token, while two shared experts provide a dense backbone. The run begins with a 4,096-token sequence length and plans staged context extensions later.
Those details matter, but they are not a finished-model announcement. Final checkpoints, throughput measurements, and evaluations are still pending. Marin is exposing a live engineering process whose outcome is uncertain.
That is consistent with the project’s stated method. Marin’s documentation defines open development as recording data work, experiments, decisions, and failed attempts—not merely publishing artifacts after the fact. Its public site describes a lifecycle in which an experiment is preregistered in an issue, tied to reproducible code, executed, and summarized in a tracking report.
The Scaling Ladder Is More Valuable Than a Benchmark Teaser
Before committing roughly three months to the hero run, Marin trained a sequence of smaller models using the same recipe. The ladder moves from 61 million active parameters and 48 billion tokens through intermediate rungs up to 1.2 billion active parameters and 926 billion tokens. The full model is the final extrapolation target.
This is not ceremonial benchmarking. The team says the ladder costs about 1% of total compute and uses it to catch failures that would become catastrophically expensive at full scale. A previous ladder exposed growing gradient norms; that led to adding logit z-loss before the larger run.
One rung failed at about 81% completion and was not resumed. That is exactly the kind of record most model releases erase. Here, the failure and the decision to extrapolate the remaining trajectory are documented in the same public issue thread.
For teams training smaller models, the lesson is practical: a scaling ladder is not only a way to predict final loss. It is a production test for initialization, routing balance, optimizer behavior, checkpoint recovery, and monitoring. The useful artifact is the set of expectations you can compare against every day of the expensive run.
The Run Makes Systems Risk Visible
The model’s architecture turns training into a distributed-systems problem. Marin’s experts are sharded within each rack, while data-parallel replicas communicate across racks. Activations move through a custom pooled-wave all-to-all implementation because the team did not find a faster JAX/XLA alternative on the target hardware.
Marin publishes a separate expert-parallel implementation report and pins the run to a specific code commit. The implementation compresses activations into a smaller latent width before transport, uses fixed-shape buffers, and limits optimizer collectives to links inside a rack.
That openness turns vague claims about “efficient MoE training” into inspectable tradeoffs. The run can still fail because of token dropping, gradient instability, hardware interruption, or cross-rack communication. But each risk has a metric and an intervention plan.
The health checklist is unusually concrete: watch the direction of gradient norms rather than only their absolute value; compare token-drop behavior with the scaling ladder; verify router entropy, parameter norms, loss, evaluation trajectories, learning-rate schedules, and model-flop utilization. This is more useful to practitioners than a final leaderboard number because it explains what to monitor before a leaderboard result exists.
Open Training Is Not the Same as Immediate Reproduction
Marin has published a frozen data-provenance table, reports describing deduplication and decontamination, the model code, tracking issues, and live dashboards. That is substantially more process visibility than an open-weight release normally provides.
Still, transparency and reproducibility are different standards. A public record can let outsiders audit decisions without giving them immediate access to every byte, credential, or hardware environment needed to rerun the experiment.
An unresolved comment in the hero-run issue reports that the referenced Harrier data store was not anonymously downloadable from its advertised object-storage endpoint on August 22. The public provenance metadata remains valuable, but until the project documents a working download path or mirror, an independent team cannot treat the data layer as fully reproducible.
Hardware is an even harder boundary. Eleven GB200 NVL72 racks, custom expert-parallel kernels, and a multi-month schedule are not a casual reproduction target. The right near-term test is whether outsiders can inspect the recipe, rerun smaller ladder stages, regenerate analysis, and challenge the project’s assumptions.
A Better Checklist for “Open” Models
Marin’s run suggests a more useful evaluation framework than asking whether weights eventually appear:
- Recipe: Are architecture, optimizer, data mixture, schedule, and evaluation choices documented?
- Provenance: Can outsiders trace datasets and transformations to frozen artifacts?
- Execution: Are code commits, configurations, logs, checkpoints, and dashboards linked?
- Failure record: Are aborted runs and changed decisions visible, or only successful results?
- Reproduction path: Can an outsider actually retrieve inputs and rerun at least a smaller equivalent experiment?
The first four make a model auditable. The fifth determines whether it is reproducible. Projects should claim each property separately.
Limitations and What Is Still Missing
The hero run is in progress, so there is no finished model to evaluate. Its projected loss is not a benchmark result, the data mixture and context schedule may change, and the final post-training recipe has not been demonstrated.
Marin also needs to resolve or document the reported anonymous-access problem for the referenced data store. Without that, the training record is unusually transparent but the full data path remains harder to reproduce than the code and analysis.
The Bottom Line
Marin 535B matters because it treats model training as a public engineering process, not because 535 billion is a magical number. Its scaling ladder, failure log, pinned implementation, and health checks give developers something more durable than launch-day benchmark theater.
The project’s strongest claim should remain precise: this is an auditable frontier-scale training run in progress. Whether it becomes independently reproducible depends on the accessibility of its data and the ability of outsiders to rerun meaningful parts of the pipeline.



