Research
LLEMA: Evolutionary Search with LLMs for Multi-Objective Materials Discovery
Overview Research area: Machine learning for scientific discovery — specifically, combining large language models with evolutionary search for multi-objective materials discovery. Technical level: Adv
- arXiv
- 2510.22503
- Published
- 2025-10-26
- Authors
- Nikhil Abhyankar, Sanchit Kabra, Saaketh Desai, Chandan K. Reddy
AI summary
Overview
Research area: Machine learning for scientific discovery — specifically, combining large language models with evolutionary search for multi-objective materials discovery.
Technical level: Advanced. The paper assumes familiarity with materials chemistry (crystallographic information files, formation energy, energy above hull, bulk and shear moduli, dielectric constants) and with machine learning concepts such as surrogate models, multi-objective optimization, and Pareto fronts.
Scope: The paper introduces LLEMA (LLM-guided Evolution for MAterials discovery), an agentic framework that couples LLM scientific priors with chemistry-informed evolutionary rules, surrogate property prediction, and success/failure memory pools to discover synthesizable materials satisfying several competing property constraints at once, evaluated on 14 application-driven tasks.
What This Paper Is About
Materials discovery means searching an enormous space of chemical compositions and crystal structures for a material with the right properties — and real design problems almost always require satisfying several conflicting requirements at once, such as high electrical conductivity together with thermal resistance. Existing methods tend to optimize a single property in isolation, and LLM-based approaches often propose candidates that look plausible on paper but are thermodynamically unstable or impractical to synthesize. LLEMA addresses this by framing materials design as a constrained multi-objective optimization problem and letting an LLM generate and repeatedly refine crystallographically specified candidates under explicit property constraints, guided by domain chemistry rules and by memory of what has worked and failed before.
Key Contributions
- A synthesizability-aware evolutionary framework. LLEMA integrates LLM scientific knowledge with chemistry-informed evolutionary operators, explicitly enforcing chemical validity and thermodynamic feasibility during the search rather than only at the end.
- Memory-based evolution. A mechanism that uses success and failure pools together with multi-island sampling to steer the LLM toward high-performing regions of chemical space while avoiding memorization of training data.
- A constrained multi-objective formulation for materials discovery. The paper casts materials design as a constrained multi-objective optimization problem that jointly optimizes competing property objectives, with constraints expressed as interval, lower-bound, or upper-bound conditions.
- Large-scale evaluation on realistic discovery tasks. The authors build a benchmark suite of 14 industrially motivated tasks and report higher validity, stability, and Pareto efficiency than state-of-the-art baselines. The code is released at https://github.com/scientific-discovery/LLEMA and the dataset at https://huggingface.co/datasets/nikhilsa/LLEMABench.
Main Findings
- LLEMA beats all baselines across the benchmark. On the 14 tasks, LLEMA achieves higher hit-rate (percentage of candidates satisfying all property constraints) and markedly better stability than CDVAE, G-SchNet, DiffCSP, MatterGen, LLMatDesign, an End2end baseline, and direct prompting. For example, on Wide-Bandgap Semiconductors, LLEMA with GPT-4o-mini reaches 33.62 hit-rate and 22.42 stability, versus 6.56 / 4.15 for MatterGen and 4.19 / 1.13 for LLMatDesign.
- Backbone choice matters, and results vary by task. LLEMA with GPT-4o-mini leads on most tasks (for instance 59.88 hit-rate on SAW/BAW Acoustic Substrates, 46.17 on High-k Dielectrics, 43.87 on Piezo Energy Harvesters with the Mistral backbone — note the Mistral run is best there), while LLEMA with Mistral-Small-3.2-24B-Instruct-2506 wins on some tasks such as Piezo Energy Harvesters (43.87 hit-rate, 18.48 stability) and Perovskite Oxides (22.90 / 2.78 versus GPT's 19.37 / 2.79).
- Traditional generative models produce valid but unstable candidates. The paper reports that methods like CDVAE, G-SchNet, and DiffCSP sometimes post reasonable hit-rates on tasks such as hard, stiff ceramics or acousto-optic hybrids, but their stability values are frequently 0.00, indicating candidates that satisfy property targets without being thermodynamically practical.
- Every stage of the pipeline adds value. Aggregated over four tasks, a direct LLM achieves 4.4 hit-rate, 1.8 stability, and 95.3 memorization rate; adding memory gives 15.1 / 20.1 / 58.3; adding unguided mutation and crossover gives 29.8 / 21.5 / 25.3; full LLEMA gives 30.2 / 27.6 / 16.6. These runs used 250 iterations across four benchmark datasets with property constraints relaxed by 20%.
- LLEMA dominates the Pareto fronts. For the Wide-Bandgap Semiconductor and Hard–Stiff Ceramic tasks, the paper reports that the optimal Pareto front is completely dominated by LLEMA and that all Pareto-optimal solutions originate from LLEMA.
- Candidate validity improves with iteration. In the wide-bandgap task, the proportion of valid candidates rises from roughly 27% at the 250th iteration to about 33% near the 1000th iteration, with candidate clusters visibly migrating into constraint-satisfying zones (band gaps above 2.5 eV with low formation energies).
- Surrogate models are essential. Removing CGCNN and ALIGNN and relying only on the Materials Project database causes hit-rate and stability to collapse to near-zero (less than 5%); reintroducing surrogates produces more than a sixfold improvement, raising hit-rate and stability into the 25–30% range.
- LLM memorization is a real failure mode. A direct LLM call shows near-total reliance on the Materials Project (High-k dielectrics show almost 100% overlap), and adding a memory buffer alone still shows a high memorization rate; only multi-island evolution plus chemistry-informed rules substantially reduces redundancy.
- Discovered compositions align with expert-known families. In High-k dielectrics LLEMA proposes ZrAl2O5 and Hf0.5Zr0.5O2, related to Zr–Al and Hf–Zr oxides studied as promising high-k materials, and BaHfZr oxide, consistent with dopant-driven improvements in HfZr oxides. In photovoltaics it proposes CaZnSi and MgZnSi oxides, which the paper describes as not directly reported but chemically related to established ZnO-based systems.
Methodology in Plain English
LLEMA runs a loop. A user supplies a CSV file naming the task and its property constraints. The framework builds a prompt containing four things: the natural-language task description with the numeric property constraints; chemistry-informed design rules (for example, same-group elemental substitution, stoichiometry-preserving replacement, oxidation-state consistency, prototype substitution); demonstrations drawn from prior iterations; and a request for a crystallographic representation. From the first iteration onward, the prompt includes the evolution rules.
The LLM then generates a batch of candidates and outputs each as structured JSON giving the reduced chemical formula, lattice parameters, atomic species, and fractional coordinates, which is converted into a crystallographic information file (CIF).
Properties are estimated by a hierarchical oracle. First a reference model queries curated experimental and computational databases such as the Materials Project using exact or similarity-based matching. Candidates that fall outside that coverage — out-of-distribution compounds — are handled by pretrained surrogate models, specifically CGCNN and ALIGNN, used in inference mode with publicly available weights so no retraining is needed. This yields a property vector for each candidate.
A multi-objective scoring function then compares predicted properties against the design constraints using weighted normalized reward terms. Candidates satisfying all hard constraints go into the success pool; those violating one or more go into the failure pool. To manage exploration, the population is split into m = 5 independent islands, each holding its own success and failure memory, and one island is chosen at each iteration by Boltzmann sampling with a score-based probability and temperature parameter. Within the chosen island, top-k selection is applied to both the success and failure memories so the prompt contains balanced demonstrations of high-scoring exemplars alongside constraint violations. Those examples, plus the domain rules, form the in-context material for the next generation. After N rounds the optimized candidate set from the success pool is returned. Candidates that violate hard constraints are assigned low scores so they are pruned before expensive evaluations.
Why This Matters
Impact on research. The paper argues that most prior LLM-for-materials work relies on prompt engineering or unguided generation and formulates discovery as a single-objective problem, producing candidates that are theoretically plausible yet unstable or impractical to synthesize. LLEMA's contribution is to make synthesizability and multi-objective trade-offs first-class parts of the search, and to supply a 14-task benchmark for evaluating that behavior. It also quantifies a problem that is easy to overlook: LLMs regenerating materials straight out of their training data, with a direct LLM call showing 95.3 memorization rate in the aggregated four-task comparison.
Real-world applications named in the benchmark:
- Electronics and power devices: wide-bandgap semiconductors with band gap at least 2.5 eV and formation energy at most −1.0 eV/atom, plus transparent conductors with band gap above 3.0 eV and conductivity between 50 and 5000 S/cm.
- Energy: solid-state electrolytes requiring formation energy at most −1.0 eV/atom, band gap at least 2.0 eV, and one of Li, Na, K, Mg, Ca, or Al; piezoelectric energy harvesters; and photovoltaic absorbers with band gap 0.7–2.0 eV restricted to earth-abundant, non-toxic elements.
- Aerospace and structural: aerospace materials with density at most 5.0 g/cm3, bulk modulus at least 100 GPa, shear modulus at least 40 GPa; low-density structures with density at most 3.5 g/cm3 and shear modulus 65–195 GPa.
- Coatings, optics, and dielectrics: hard coating materials (bulk modulus at least 200 GPa, band gap at least 3.0 eV), SAW/BAW acoustic substrates, acousto-optic hybrids, high-k dielectrics, and toxic-free perovskite oxides that exclude Pb, Cd, Hg, Tl, Be, As, Sb, Se, U, and Th.
Industry relevance. Each benchmark task is framed around an industrially critical need — power and optoelectronics, sustainable energy, advanced electronics, structural resilience. Because the framework evaluates thermodynamic stability (energy above hull under 0.1 eV/atom counts as stable) and synthesizability, the paper positions its outputs as candidates worth experimental pursuit rather than purely theoretical constructions, and the released code and dataset lower the barrier for others to test the approach on their own constraint sets.
Future Directions
- Experimental or higher-fidelity validation. The paper validates candidates through surrogate and database property predictions and chemical plausibility arguments; it does not report laboratory synthesis or DFT-level confirmation of the newly proposed compositions such as CaZnSi and MgZnSi oxides. Closing that gap is the natural next step.
- Improving and auditing surrogate reliability. The ablation shows performance collapses below 5% without ML surrogates, which means the framework's discovery signal depends on the accuracy and coverage of CGCNN, ALIGNN, and database lookups. Extending surrogate coverage and quantifying prediction error propagation into the evolutionary loop remains open.
- Resolving backbone-dependent performance. LLEMA's results differ meaningfully between GPT-4o-mini and Mistral-Small-3.2-24B-Instruct-2506 across tasks, and on Perovskite Oxides the Mistral run has the higher hit-rate. Understanding which model and prompting properties drive these task-specific differences is an open question.
- Scaling the search and the benchmark. The paper reports convergence gains continuing from the 250th to roughly the 1000th iteration, while the component ablations were run at 250 iterations with constraints relaxed by 20%. Studying behavior at larger iteration budgets, on more tasks, and under tighter constraints would clarify how far the approach can be pushed.
Target Audience
This paper is most useful to machine learning researchers working on LLM-driven scientific discovery, evolutionary and agentic optimization, and multi-objective search; to computational materials scientists and chemists who want a screening pipeline that respects synthesizability and several property constraints at once; and to industry R&D groups in semiconductors, batteries, photovoltaics, coatings, and aerospace who need to prioritize which candidate compositions to investigate experimentally. Readers without a materials science background will still follow the framework design and the benchmarking methodology, but the property constraints, descriptors, and evaluation metrics require domain familiarity.
Authors’ abstract
Materials discovery requires navigating vast chemical and structural spaces while satisfying multiple, often conflicting, objectives. We present LLM-guided Evolution for MAterials discovery (LLEMA), a unified framework that couples the scientific knowledge embedded in large language models with chemistry-informed evolutionary rules and memory-based refinement. At each iteration, an LLM proposes crystallographically specified candidates under explicit property constraints; a surrogate-augmented oracle estimates physicochemical properties; and a multi-objective scorer updates success/failure memories to guide subsequent generations. Evaluated on 14 realistic tasks that span electronics, energy, coatings, optics, and aerospace, LLEMA discovers candidates that are chemically plausible, thermodynamically stable, and property-aligned, achieving higher hit rates and improved Pareto front quality relative to generative and LLM-only baselines. Ablation studies confirm the importance of rule-guided generation, memory-based refinement, and surrogate prediction. By enforcing synthesizability and multi-objective trade-offs, LLEMA provides a principled approach to accelerating practical materials discovery. Project website: https://scientific-discovery.github.io/llema-project/