top of page

Apple SimpleDesign Protein Design Cuts a Training Stage, but the Lab Test Is Still Missing

2 hours ago
15 min read

Apple researchers have introduced a protein model with one training stage, despite a field increasingly built around specialized pipelines. The Apple SimpleDesign protein design system generates amino-acid sequences and three-dimensional structures together. Its central claim is architectural simplicity, not proven biological function.

That distinction matters. SimpleDesign produced competitive results in computer benchmarks after training on more than 2 million sequence-structure pairs. However, the researchers did not report laboratory synthesis, folding measurements, binding tests, or functional assays for its generated proteins.

The work therefore pressures multimodal systems such as ESM3 and DPLM2 on model design, while geometric models remain formidable on structural consistency. The important contest is simple end-to-end modeling versus specialized protein architectures. SimpleDesign makes the simpler route credible, but experiments must determine whether that credibility survives contact with biology.

What Apple’s SimpleDesign Protein Design Model Changes

SimpleDesign removes the learned structure-tokenizer stage that many multimodal protein models use before generation begins.

Apple listed the work as a September 2026 publication in Transactions on Machine Learning Research. The named authors include Jiarui Lu, Yuyang Wang, Yizhe Zhang, Jiatao Gu, Navdeep Jaitly, Joshua M. Susskind, and Miguel Ángel Bautista.

Several authors completed the work while at Apple, according to the publication page. Lu is also affiliated with Mila and Université de Montréal. The Apple research page describes the project as a joint model for protein sequence and structure codesign.

Protein sequence means the ordered chain of amino acids that forms a protein. Protein structure describes how that chain occupies three-dimensional space. These modalities are connected because a sequence affects folding, while a desired shape constrains which sequences are viable.

Many generative systems handle this relationship through separate stages. An autoencoder first compresses structural information into learned tokens or another latent representation. A second model then learns how to generate within that compressed space.

SimpleDesign removes that preliminary tokenization process. It directly represents amino-acid identities as discrete variables and structural coordinates as continuous variables. A single training objective teaches the model to recover both forms of corrupted data.

For sequences, the objective resembles masked language modeling. Some amino-acid positions are hidden, and the model predicts their identities using cross-entropy loss. Cross-entropy measures how well predicted categorical probabilities match the correct amino acids.

For structures, the model receives coordinates perturbed with noise. It learns a regression objective that guides those coordinates back toward the training data. Regression predicts continuous values, which suits coordinates better than a vocabulary of discrete structure symbols.

The researchers call this direct data-space modeling. It avoids making protein structures pass through a separately trained codebook before the generative model can use them.

During inference, SimpleDesign begins with masked amino-acid positions and noisy coordinates. It gradually reveals the sequence while denoising the structure. The two processes advance together, so each modality can influence the other.

That joint process supports several configurations. A supplied sequence with an unknown structure resembles protein folding. A supplied structure with an unknown sequence resembles inverse folding, which seeks sequences compatible with a given backbone.

When neither side is known, the model generates both. This unconditional codesign setting is the paper’s central test because the system must maintain consistency between a new sequence and its proposed shape.

The researchers trained SimpleDesign primarily with a filtered version of AFESM. The full AFESM resource combines predicted structures from the AlphaFold Database and the ESM Metagenomic Atlas.

The original collection contains more than 800 million predicted structures. Its creators grouped the raw records through sequence and structural similarity, producing roughly 5 million non-singleton structural clusters.

SimpleDesign used more than 2 million sequence-structure pairs from that broader resource. The researchers also studied additional fine-tuning with Swiss-Prot, a curated protein sequence database.

These details establish what changed. Apple’s team did not introduce the first generative protein model, nor the first system that combines sequence and structure. It introduced evidence that joint generation does not necessarily require a separately learned structural vocabulary.

That is a narrower claim than headlines about AI-designed drugs would suggest. It is also a technically meaningful one. Removing a training stage reduces the number of learned interfaces where information can be lost or optimization can become unstable.

The SimpleDesign paper presents this recipe as complementary to geometric models, rather than a universal replacement. That framing becomes important when its benchmark results are compared with specialized alternatives.

Why the Single-Stage Approach Matters Now

The immediate pressure falls on multimodal protein models whose complexity depends on learned structural tokens and separately optimized components.

Protein generation has moved beyond sequence-only language modeling. Researchers increasingly want systems that coordinate sequence, structure, function, molecular context, or several of these properties at once.

Each added modality creates a representation problem. Amino acids are naturally discrete, but three-dimensional coordinates are continuous and geometric. Rotating an entire molecule should not change its biological identity, yet ordinary token sequences lack that built-in symmetry.

One response is specialization. A model can use geometric neural networks, rotation-aware operations, structure tokenizers, or task-specific diffusion processes. These tools encode assumptions that often help models respect molecular geometry.

Another response is unification. A general-purpose architecture can process different modalities through a shared framework, provided its training objective preserves their distinctions. SimpleDesign follows this route.

The timing reflects broader progress in protein AI. Structure prediction systems showed that neural networks could infer plausible three-dimensional forms from sequences. Generative systems then began reversing and extending that relationship.

RFdiffusion demonstrated that a diffusion model could generate protein backbones for multiple design tasks. Its published experiments included binders, symmetric assemblies, and metal-binding proteins.

ESM3 expanded the language-model route by reasoning across sequence, structure, and function. Researchers synthesized some of its outputs, including a fluorescent protein distant from known natural examples.

These advances raised expectations for multimodal generation. They also produced elaborate systems with multiple objectives, representations, and validation steps. SimpleDesign asks whether part of that machinery is optional.

Apple’s model uses a Mixture-of-Transformer architecture, abbreviated MoT. This is not a mixture-of-experts system that dynamically routes tokens among many independent expert networks.

Instead, MoT gives sequence and structure streams modality-specific projections, normalization, and feed-forward processing. It then performs global self-attention across their combined tokens.

That design lets each modality retain specialized parameters while exchanging information. The sequence stream can preserve language-model knowledge, while the structure stream handles continuous coordinates.

Both reported SimpleDesign variants started from publicly available ESM2-650M weights for sequence embeddings and attention layers. This initialization gives the model prior knowledge from protein sequences rather than requiring all biological patterns to emerge from paired training alone.

The team also tested a vanilla Transformer with shared parameters. Surprisingly, that version remained competitive and exceeded MoT on certain measures.

This ablation strengthens the paper’s central mechanism. An ablation removes or changes one component to determine what actually drives performance. Here, the specialized backbone was not consistently responsible for the reported gains.

The tokenizer-free objective appears more important than the exact Transformer variant. Apple’s researchers explicitly state that MoT does not uniformly improve every metric.

That admission separates SimpleDesign from a familiar pattern in AI research. New systems are often presented as packages whose individual improvements are difficult to isolate. This paper identifies the training formulation as the main contribution.

The potential benefit is not merely a smaller architecture diagram. Multi-stage models inherit dependencies between their stages. If a structure tokenizer discards subtle information, the later generator cannot recover it.

Separate training can also create mismatched objectives. A tokenizer optimized for reconstruction does not automatically produce the best representation for generation. End-to-end learning allows the generative loss to shape the entire model.

However, simplicity does not guarantee lower operational cost. The paper does not establish a broad comparison of training time, inference speed, memory use, or energy consumption across all competing systems.

Single-stage refers to the optimization pipeline, not necessarily to one inference operation. SimpleDesign still generates through iterative sequence unmasking and coordinate denoising.

Its structure schedule uses nonuniform steps, emphasizing late-stage refinement. The sequence schedule advances more evenly. These coupled schedules coordinate two different kinds of uncertainty during sampling.

SimpleDesign is therefore simpler in a specific sense. It eliminates a learned structural tokenizer and separate latent-model training stage. It does not eliminate iterative generation, pretrained initialization, data filtering, or careful sampling choices.

That precise interpretation matters for teams considering the research. The work offers an alternative modeling recipe, not evidence that protein generation has become easy or inexpensive.

Simpler Transformers Face Specialized Geometry

SimpleDesign’s primary contest is not Apple versus one company, but general Transformer modeling versus architectures built expressly for molecular geometry.

The distinction becomes visible in the benchmark results. Apple compared SimpleDesign with multimodal protein language models and geometric design systems.

The language-model group included ESM3, DPLM, and DPLM2. These systems extend token-generation ideas into biological domains, sometimes using discrete structural representations.

The geometric group included MultiFlow, La-proteina, RFdiffusion, FrameFlow, and related methods. These models use stronger structural assumptions or specialized generative dynamics.

SimpleDesign was evaluated on unconditional generation for proteins ranging from 100 to 500 residues. The reported experiments used 100 generated samples across those lengths.

The study assessed co-designability by refolding a generated sequence and comparing the predicted result with the structure generated alongside it. A pair counted as consistent under thresholds based on structural similarity.

One criterion used self-consistency root-mean-square deviation, or scRMSD. This measures the average coordinate difference after aligning the model’s proposed structure with the refolded sequence.

The paper used a threshold of 2 angstroms for this measure. An angstrom is one ten-billionth of a meter and is commonly used for molecular distances.

A second criterion used self-consistency TM-score, or scTM. TM-score evaluates overall structural similarity while reducing sensitivity to protein length.

The study used a threshold of 0.9 for that comparison. Scores near one indicate highly similar overall folds.

These tests ask a useful computational question. If the model proposes a sequence and structure together, does an independent folding system predict that the sequence returns to a similar shape?

SimpleDesign performed competitively against token-based multimodal language models. Certain configurations achieved strong combinations of consistency, novelty, and continuous structural diversity.

The strongest reported Transformer configuration reached co-designability ratios of 0.62 under the scRMSD criterion and 0.84 under scTM. Those values came after curated fine-tuning and depended on the selected sampling setting.

The Mixture-of-Transformer version reached 0.53 and 0.74 under the same two criteria in one reported configuration. Other noise settings traded consistency for diversity.

Those variations are important. Generative models rarely have one context-free performance number. Sampling settings can produce conservative, internally consistent designs or more diverse outputs with lower consistency.

MultiFlow remained stronger on several co-designability measurements. The SimpleDesign authors acknowledge that result rather than claiming overall leadership.

Specialized geometric models bring assumptions suited to spatial relationships. They can explicitly structure how residues, coordinates, rotations, and denoising trajectories interact.

SimpleDesign makes a different wager. It uses a more general C-alpha coordinate Transformer formulation. C-alpha coordinates represent the central carbon atom of each amino-acid residue and provide a simplified protein backbone trace.

That representation omits side-chain atoms and other atomic details. A complete protein model needs more information to describe chemical interactions, packing, and molecular function.

SimpleDesign’s advantage is architectural economy and adaptability. Its training recipe can work with familiar Transformer blocks and pretrained sequence models.

Its disadvantage is that it must learn important geometric behavior without as many hard-coded structural assumptions. The benchmark gap with MultiFlow suggests that specialized inductive biases still matter.

RFdiffusion provides an even more consequential historical reference. It did not merely score generated structures through computer models. Researchers experimentally characterized hundreds of designs across several tasks.

The RFdiffusion experiments included a cryogenic electron microscopy structure of an influenza binder. That measured structure closely matched the computational design.

This does not make RFdiffusion directly superior in every codesign benchmark. The systems target overlapping but nonidentical problems. It does establish a higher standard of evidence for practical protein design.

ESM3 offers another comparison. It jointly reasons across protein sequence, structure, and function rather than limiting itself to unconditional sequence-structure generation.

Researchers synthesized a subset of ESM3 outputs and identified a functioning fluorescent protein. The peer-reviewed ESM3 study therefore connects multimodal generation to an observable biological property.

SimpleDesign has not crossed that evidentiary boundary. Its contribution currently concerns how models can learn and generate, not whether a resulting molecule performs a useful task.

The competitive picture is therefore split. SimpleDesign pressures token-based multimodal models on architectural necessity. Geometric systems pressure SimpleDesign on structural fidelity and experimental maturity.

This is a healthier interpretation than declaring one universal winner. Protein design contains several tasks, including unconditional generation, backbone construction, inverse folding, binder design, and function-conditioned generation.

A model can excel at one while remaining unsuitable for another. Benchmark leadership also depends on training data, validation models, sampling settings, and the definition of success.

The Mechanism Works Without a Structure Vocabulary

The paper’s strongest result is that direct sequence-coordinate learning remains competitive across two Transformer backbones.

A structure tokenizer converts continuous molecular geometry into discrete symbols. That makes structural information easier to combine with language-model machinery, which already predicts tokens effectively.

The compression creates a bottleneck. Each structural token represents a region or pattern selected by the tokenizer. Details not preserved by the learned vocabulary become unavailable to the generator.

SimpleDesign skips this step. It embeds continuous coordinates directly and trains the model to estimate how noisy coordinates should move toward plausible protein structures.

At the same time, masked amino-acid positions become discrete classification problems. The model therefore solves continuous denoising and categorical recovery within one objective.

Joint attention supplies the connection. A sequence token can attend to structural tokens at corresponding or distant residues. Structural representations can likewise use information from visible or predicted amino acids.

Residue indices keep the two modalities aligned. The model knows which amino-acid position corresponds to which backbone coordinate, even while portions of both inputs remain corrupted.

This setup creates a two-dimensional continuum of training states. One axis represents sequence corruption, while the other represents structural noise.

Sometimes the sequence contains more usable information than the structure. Sometimes the structure provides the stronger signal. Intermediate states require genuine joint reasoning because neither modality is complete.

The formulation supports conditional tasks without rebuilding the whole architecture. Keeping the sequence visible while corrupting the structure produces a folding-like problem.

Keeping coordinates visible while masking the sequence produces an inverse-folding problem. Corrupting both creates joint generation.

This flexibility resembles the appeal of multimodal foundation models in language and vision. One training framework can support several directions of prediction.

Yet SimpleDesign remains narrower than a full protein foundation model. It generates sequence and backbone coordinates, not a verified biochemical function.

It does not directly establish binding affinity, catalytic activity, solubility, toxicity, expression yield, or stability. Those properties depend on physical and biological interactions beyond a plausible backbone.

The model also generates only C-alpha coordinates through its structure head. Reconstructing full atomic detail requires additional processing or modeling.

That simplification helps explain why a general Transformer can remain competitive. A backbone trace presents a less demanding geometric target than all-atom molecular generation.

Data curation also contributes substantially. Apple’s ablations show that Swiss-Prot fine-tuning improves sequence-structure consistency for both MoT and vanilla Transformer variants.

The same fine-tuning reduces Foldseek clustering diversity. Foldseek groups structures using local and global similarities, offering a different view of diversity than pairwise TM-score.

This creates a revealing tradeoff. Cleaner, curated examples can make generated sequence-structure pairs agree more often. They can also pull outputs toward a narrower family of structural patterns.

SimpleDesign showed high diversity under TM-score comparisons but lower Foldseek cluster diversity in some settings. The authors attribute part of this difference to training data and cropping choices.

DPLM2 used PDB and Swiss-Prot data with segment-wise cropping, while SimpleDesign’s main training pipeline differed. Therefore, architecture alone cannot explain every comparison.

This is common in generative biology. Dataset composition determines which folds, sequence families, lengths, and confidence levels a model sees.

Predicted structures also carry the assumptions of the systems that created them. Training on millions of computational predictions expands coverage, but it does not turn those records into experimental observations.

SimpleDesign’s results remain useful because the paper reports these dependencies. It does not claim that the Mixture-of-Transformer universally dominates a standard Transformer.

It also does not claim that masked generation inherently defeats diffusion or flow methods. The researchers describe specialized geometric models as complementary.

That restraint clarifies the actual advance. A directly trained Transformer can learn a meaningful joint distribution across amino acids and coordinates without first inventing a structural alphabet.

If later work reproduces that result at larger scales, the approach could simplify experimentation across protein modalities. Researchers could adapt pretrained sequence models without maintaining an entirely separate tokenization pipeline.

However, reproduction will depend on practical access. The paper provides methodological details, but the public availability of complete training code, model weights, datasets, and generation artifacts determines how independently teams can test it.

A paper can make a modeling idea legible. A usable research release makes the idea falsifiable across laboratories, datasets, and downstream objectives.

Computer Benchmarks Are Not Biological Validation

SimpleDesign has passed an in silico consistency test, not a laboratory test of folding or function.

This is the central uncertainty surrounding Apple SimpleDesign protein design. Every reported success depends on computational evaluation.

Refolding provides a valuable filter. If a generated sequence is predicted to adopt a shape unlike its paired structure, the design is internally suspect.

However, agreement between generative and predictive models does not guarantee physical success. Both systems can share training-data biases or favor similar structural patterns.

A high scTM score says the predicted fold resembles the intended backbone. It does not say the protein expresses efficiently in living cells.

It does not establish that the sequence remains soluble at useful concentrations. It does not reveal aggregation, degradation, toxicity, unwanted interactions, or loss of function.

Even the word “designability” requires care. In this paper, it describes a computational threshold based on refolding. It does not mean researchers synthesized and experimentally confirmed each design.

Independent research has examined this exact gap. A validation study found that AlphaFold2, ESMFold, and ProteinMPNN can help filter designs, but their ability to predict experimental success remains limited.

That limitation does not invalidate computational screening. Laboratory testing is expensive and slow, so useful filters can reduce the number of candidates requiring synthesis.

The danger appears when benchmark terminology migrates into product claims. “Designable” can sound like “works,” although the underlying evidence may only show agreement among models.

SimpleDesign’s unconditional task adds another limitation. It generates proteins without a specified target or biological function.

A plausible new fold is scientifically interesting. Drug discovery generally demands something more specific, such as binding one target while avoiding related proteins.

Enzyme engineering requires catalytic geometry and reaction context. Therapeutic development also requires stability, delivery, immunogenicity, manufacturability, and safety.

SimpleDesign does not report those outcomes. It should not be presented as an Apple drug-discovery product or a direct route to a medicine.

The comparison with RFdiffusion illustrates the missing layer. RFdiffusion’s Nature study included expression, purification, binding assays, structural measurements, and functional tests.

Those experiments did not make every computational design successful. They measured failure rates and identified which design classes survived real-world screening.

For one binder campaign, the study reported a 19 percent experimental success rate under its stated screening definition. That figure demonstrates both progress and difficulty.

A strong design system can still produce many laboratory failures. Biology imposes constraints that a structural confidence score cannot fully capture.

ESM3’s fluorescent protein also required synthesis and testing. Researchers could observe fluorescence directly, turning a model proposal into evidence of function.

SimpleDesign currently stops before that step. The most persuasive follow-up would synthesize diverse samples across lengths and structural families.

Researchers should measure expression, monodispersity, thermal stability, and agreement with the designed backbone. Cryogenic electron microscopy, X-ray crystallography, or nuclear magnetic resonance could test structural accuracy.

Function-conditioned studies would raise the bar further. A model could be asked to preserve a binding motif, support a catalytic site, or interact with a chosen target.

Negative results would be informative too. They could reveal whether SimpleDesign’s errors arise from backbone geometry, sequence packing, side-chain reconstruction, or benchmark overconfidence.

Data leakage and novelty also deserve scrutiny. SimpleDesign compares generated structures with known databases, but novelty scores depend on reference coverage and similarity thresholds.

A structure can look globally novel while reusing familiar local motifs. Conversely, a biologically useful design need not maximize novelty.

The paper’s lower Foldseek diversity in some configurations illustrates this ambiguity. Continuous structural differences and local fold vocabulary do not always tell the same story.

Curated fine-tuning adds another tension. It improves computational consistency but produces more conservative outputs. That may help experimental success, or it may limit access to unfamiliar structures.

Only systematic wet-lab testing can reveal which side of that tradeoff matters. Until then, SimpleDesign supports a modeling hypothesis rather than a biological conclusion.

Three Signals Will Show Whether SimpleDesign Matters

The next evidence should test reproducibility first, laboratory performance second, and useful conditioning third.

The first signal is a complete public release. Researchers need model weights, inference code, evaluation scripts, and enough dataset documentation to reproduce the paper’s central comparisons.

Such a release would strengthen the architectural claim if independent teams recover similar results. Large discrepancies would weaken confidence in the reported advantage of direct data-space training.

Reproduction should include both Transformer variants. It should test whether a standard Transformer truly remains competitive with the modality-specific MoT backbone.

Teams should also rerun comparisons using matched data, protein lengths, sampling budgets, and validation systems. Without those controls, dataset decisions can masquerade as architectural gains.

The second signal is experimental validation. A credible study should select generated proteins before seeing laboratory outcomes and report the complete success rate.

Cherry-picked successful examples would not establish general performance. Researchers should disclose how many sequences were synthesized, expressed, purified, and structurally characterized.

The tests should cover more than one protein length or topology. Otherwise, success could reflect a narrow region already favored by the training distribution.

If a substantial fraction folds near the generated backbone, SimpleDesign’s direct representation would gain strong support. Poor correspondence would show that current computer metrics overestimate physical reliability.

The third signal is conditional generation tied to measurable function. Unconditional generation tests whether a model learns the broad sequence-structure distribution, but applications require constraints.

A useful extension might preserve an active-site motif, build a scaffold around a molecular target, or propose sequences for a supplied backbone.

Success would require more than structural agreement. Binding, catalysis, fluorescence, or another predefined function should be measured experimentally.

This progression matters because SimpleDesign’s architecture is well suited to multiple conditional directions. The model already trains across varied sequence and structure corruption levels.

Future versions could add function, ligand, or interaction information as another modality. That would test whether the minimalist recipe remains effective as biological demands increase.

Failure at that stage would also teach researchers something. Direct coordinate modeling may work for unconditional backbones while struggling with atomic interactions or precise functional constraints.

Competitor reactions will provide indirect evidence. If token-based model developers adopt direct coordinate objectives, SimpleDesign will have influenced the field even without becoming the best benchmark system.

If geometric systems simplify their pipelines while retaining superior consistency, they could capture the same engineering benefit with stronger molecular assumptions.

Apple’s role is another open question. The company publishes machine-learning research across health, vision, language, and scientific domains, but publication does not imply a consumer product.

The paper makes no announced connection to an Apple device, health service, or drug-development program. Speculation about such uses would outrun the available evidence.

The grounded conclusion is more interesting. Apple’s researchers have shown that protein sequence and structure codesign can be approached with fewer learned stages than many competing systems use.

That finding challenges an architectural convention. It does not replace experimental protein science, and it does not settle the contest with specialized geometry.

Readers evaluating Apple SimpleDesign protein design should ask three questions as new evidence arrives. Can independent teams reproduce it, do generated proteins work in the lab, and can the model satisfy useful biological constraints?

Those answers will determine whether SimpleDesign becomes a durable protein-engineering method or remains an elegant benchmark result. For now, the model earns attention because it makes simplicity competitive, while clearly exposing the evidence still missing.

Give every agent the context to do better work

Connect your agents to the knowledge, decisions, and history already organized in remio.

remio currently supports Windows 10+ (x64) and Macs with Apple silicon.

Your AI Partner at Work
Get more done with remio

Plan. Create. Deliver.
All in one place.

bottom of page