top of page

NASA-IBM Lunar Foundation Model Opens Moon Mapping, but Not Mission Control

2 days ago
13 min read

IBM and NASA released the NASA-IBM Lunar Foundation Model after training it on roughly 2 million lunar image tiles spanning two very different spatial scales. The open-source system gives researchers a shared starting point for mapping craters, studying volcanic features, and estimating where polar ice may remain stable.

The release changes how scientists can approach decades of observations from separate instruments. Instead of building a specialized model from scratch for every research question, teams can adapt one pretrained representation of the Moon. The model and its training resources are available publicly, lowering the entry barrier for institutions outside NASA and IBM.

That openness creates the central tension. A reusable foundation model can organize fragmented observations and narrow the search for scientifically interesting sites. However, it cannot certify a landing zone, confirm the presence of ice, or replace calibrated instruments. The real contest is therefore not IBM versus another AI vendor. It is reusable open modeling versus task-specific, operationally validated analysis.

The NASA-IBM Lunar Foundation Model Turns an Archive Into Infrastructure

The release converts a large collection of lunar observations into a reusable research layer, not a finished navigation system.

NASA announced the model on September 10, 2026, through its broader collaboration with IBM Research and several academic institutions. The agency describes it as one of the first open-source AI models developed specifically for lunar science. Its weights are hosted on Hugging Face, while its supporting code is available through GitHub.

The official release says the system was trained primarily on observations from the Lunar Reconnaissance Orbiter, or LRO. That mission has spent 17 years collecting detailed information about the Moon. NASA says its output is larger than the combined data volume of all other agency planetary missions.

Training used more than 1 million high-resolution camera images at approximately 1 meter per pixel. It also included nearly 964,000 multispectral images at approximately 100 meters per pixel. These sources let the model encounter both local surface detail and broader regional patterns.

Additional inputs came from NASA’s GRAIL and Lunar Prospector missions, along with Japan’s SELENE mission. The combined material covers imagery, terrain, gravity, temperature, mineral, radar, illumination, and hydrogen-related information. Coverage differs by instrument, so not every location has every measurement.

The resulting system is a foundation model, meaning it learns a broad representation before being adapted to narrower tasks. That differs from a conventional pipeline built solely to detect craters or segment one geological feature. Researchers can fine-tune the common backbone using smaller labeled datasets.

NASA has initially highlighted three applications. The first is identifying and measuring craters, including smaller craters that remain uncatalogued. The second is mapping irregular mare patches, which are unusual volcanic features that may clarify the Moon’s thermal history. The third is estimating polar ice prospectivity.

Ice prospectivity is a prediction about conditions associated with stable ice, not a direct measurement of water. That distinction matters because accessible lunar water could support drinking supplies, oxygen production, and propellant. A useful map can prioritize further investigation, but it cannot establish resource availability by itself.

The model also detected a newly formed crater near Einstein crater in a before-and-after test. Researchers excluded the post-impact image from pretraining, then adapted the system to recognize surface change. NASA says differing illumination between observations can still affect the visibility of smaller craters.

This release matters because it packages more than model weights. IBM and NASA also published machine-learning-ready datasets, benchmark collections, code, and technical documentation. That combination allows independent teams to reproduce tests, inspect limitations, and develop new lunar applications without rebuilding the entire data pipeline.

The important change is access to a common base. Previously, a research team might spend significant effort locating products, aligning coordinates, reconciling resolutions, and preparing task-specific inputs. The open source lunar AI release moves part of that expensive preparation into shared infrastructure.

Why Lunar Data Needs More Than Better Images

The Moon is extensively observed, but its data remains difficult to combine because sensors measure different phenomena at radically different scales.

A camera image offers only one view of lunar terrain. Scientists may also need elevation, slope, temperature, radar response, surface composition, gravity, illumination, or modeled ice stability. Each measurement answers a different question and arrives with its own resolution, coverage, and uncertainty.

The scale differences are especially large. LRO’s Narrow Angle Camera can resolve terrain at roughly 1 meter per pixel. Some gravity observations describe structures at scales measured in kilometers per pixel. Combining those sources is not equivalent to stacking several ordinary photographs.

Lighting creates another problem. With little atmosphere to scatter sunlight, lunar terrain can produce sharp glare and deep shadows. A crater rim may appear dramatically different as viewing and illumination geometry change. An algorithm that ignores those conditions can mistake changing light for changing terrain.

The model addresses that issue by supplying acquisition geometry as explicit context. Inputs include solar incidence, emission, phase, and azimuth information, along with tile coordinates and ground sampling distance. The system does not have to infer every lighting condition from visible pixels alone.

Its design also treats lunar observations as separate modalities. A modality is a particular form of measurement, such as reflectance, topography, or gravity. Modality-specific tokenization preserves those distinctions before the system learns relationships between them.

According to the public model card, pretraining covered 11 modalities and two spatial scales. The dataset contained 963,609 wide-angle bundles and 1,000,113 narrow-angle bundles. Each bundle groups measurements aligned to the same area.

Those two families span a 100-fold resolution gap. Rather than training entirely separate backbones, the project used a mixed-resolution process that updates one set of weights. FlexiViT patch embedding, a method for adapting a vision transformer to different image patch sizes, supports later fine-tuning without retraining the backbone.

The architecture is based on a ViT-B encoder and decoder. A vision transformer, or ViT, divides imagery into patches and learns relationships among those patches. The released configuration uses a 12-layer encoder with 12 attention heads and a matching 12-layer decoder.

Pretraining required 16 H100 graphics processors, 150,000 optimization steps, and about 1,100 GPU-hours. Those figures show why a shared model can be valuable. Individual science teams can start from the released checkpoint instead of repeating the full compute-intensive training process.

IBM and NASA adapted the masked-token approach used by TerraMind, an Earth-observation model developed by IBM and the European Space Agency. During training, the system learns to reconstruct selected information from the surrounding multimodal context. This encourages it to capture relationships among observations rather than memorize a single classification target.

That mechanism is useful when a measurement is sparse, noisy, or available only in some regions. It can help researchers test whether several data sources collectively highlight a promising area. It does not create an authoritative measurement where no instrument collected one.

The NASA-IBM Lunar Foundation Model therefore attacks an integration problem before it attacks any specific science problem. Its main asset is a common representation across instruments. Crater detection, volcanic mapping, and ice prospectivity are demonstrations of how that representation can be adapted.

This distinction keeps the release grounded. The system is not a chatbot for astronauts, an autonomous rover pilot, or a digital replica of the Moon. It is a remote-sensing backbone designed to help researchers extract patterns from prepared lunar datasets.

Open Source Lunar AI Challenges the Task-Specific Model

IBM and NASA are betting that one adaptable lunar representation can reduce repeated work without sacrificing performance on specialized tasks.

Traditional scientific machine learning often begins with a defined target. Researchers assemble labeled examples, select an architecture, and train a model for that particular target. A crater detector built this way may perform well, but its learned features and preparation work may not transfer cleanly to ice research.

The NASA-IBM approach reverses the sequence. It first learns from a broad, largely unlabeled collection of lunar observations. Researchers then adapt that common backbone for detection, segmentation, or regression, depending on the question.

Detection locates discrete objects such as craters. Segmentation assigns image regions to classes, which can outline irregular mare patches. Regression estimates a continuous value, such as an ice-prospectivity score. These tasks still require labels and evaluation, but they no longer start from random model weights.

The project tested several adaptation strategies. Full fine-tuning updates the complete model for the new task. A frozen encoder changes only the task-specific components. Low-rank adaptation, or LoRA, trains small added matrices while leaving most original weights unchanged.

IBM reports that its LoRA experiments kept 90 percent of the base model’s weights frozen. The model card recommends LoRA as the default because it matched or surpassed full fine-tuning for crater detection and remained competitive on segmentation. It also displayed less variation across repeated runs.

That efficiency matters for smaller research groups. Training a foundation model required substantial computing hardware, but adapting one can require far fewer resources. Open weights shift the expensive common work upstream while leaving scientific teams responsible for their own labels, evaluation, and interpretation.

The strategy also enables more consistent comparisons. If multiple groups use the same backbone and benchmark definitions, they can investigate whether performance differences come from data, adaptation, or task design. That does not eliminate methodological disagreements, but it gives researchers a clearer common reference.

The public codebase integrates the model with TerraTorch, an open-source toolkit for geospatial foundation models. Configuration files cover the published downstream tasks. Researchers can inspect the training choices instead of relying only on a hosted interface.

An Apache 2.0 license permits broad reuse, modification, and distribution under its terms. This makes the NASA-IBM model more than a controlled demonstration. Universities, space agencies, companies, and independent researchers can test it against their own data and methods.

However, open availability is not the same as universal usability. Users still need remote-sensing expertise, suitable computing resources, correctly registered data, and scientifically defensible labels. A downloadable checkpoint does not resolve those requirements.

The competitive pressure falls on the task-specific route. If a shared pretrained model repeatedly reaches comparable performance with less labeled data, teams will need a strong reason to train every new backbone from scratch. That reason might be higher accuracy, clearer calibration, lower runtime, or better suitability for a particular instrument.

The shared model does not automatically win. Specialized systems can encode domain assumptions more directly and may be easier to validate for a narrow use. They can also avoid irrelevant modalities or reduce computational overhead in operational settings.

IBM and NASA have nonetheless changed the default question. Lunar researchers can now ask whether a new application benefits from the common representation before investing in an isolated pipeline. That is a practical shift in scientific software development, even without an immediate mission deployment.

How the IBM and NASA Lunar AI Performed

The strongest benchmark result involved ice prospectivity, while crater and volcanic results require more careful interpretation.

The project compared the lunar foundation model with several established computer-vision backbones. Those baselines included ResNet-50, ConvNeXt variants, SwinV2, DaViT, and a vision transformer trained with masked autoencoding. Segmentation comparisons also included DeepLabV3+ and SegFormer.

For wide-angle crater detection using the full training set, the best adapted NASA-IBM model recorded a mean average precision score of 0.2581. The strongest published baseline recorded 0.2420. With half the crater training data, the lunar model reached 0.2541, compared with 0.2313 for the baseline.

The model card says pretrained variants using 50 percent of the crater labels already matched or exceeded SwinV2 trained with all available labels. That result supports the case for label efficiency. It suggests the broad lunar pretraining captured features useful to a later detection task.

At the 1-meter scale, however, the difference was negligible. The lunar model reached 0.1543, while the strongest baseline reached 0.1552. The researchers describe the systems as comparable because the margin was smaller than variation across repeated runs.

Performance was also low across the narrow-angle crater benchmark. Part of that dataset was annotated at a blurrier 5-meter scale, despite being used with meter-scale imagery. The frozen lunar encoder performed close to a randomly initialized model, indicating that adaptation remained necessary.

For irregular mare patch segmentation, the best lunar configuration reached an intersection-over-union score of 0.5709. The strongest baseline reached 0.5687. Intersection over union measures how closely a predicted region overlaps the labeled reference.

Again, that small lead does not establish a decisive ranking. The spread between repeated runs was larger than the gap. More important, the randomly initialized lunar architecture fell to 0.3142, suggesting that pretraining contributed substantial value even when the best systems finished close together.

Ice prospectivity produced the clearest result. The adapted NASA-IBM model recorded a root mean square error of 0.0293, compared with 0.0377 for the strongest baseline. Lower values indicate that estimates stayed closer to the benchmark target.

IBM characterized this as a 22 percent reduction in error. Its research overview attributes part of the advantage to the model’s handling of multiple data types. Each modality receives a pretrained patch adapter before its tokens are combined.

Conventional comparison models instead received eight layers stacked as input channels through a common stem. The random-initialized lunar architecture already surpassed five of six ImageNet-pretrained baselines on this benchmark. Lunar pretraining delivered the remaining improvement.

One ablation, which removes inputs to test their contribution, offered another notable result. The lunar model using only aspect, slope, and modeled ice-stability depth roughly matched a ConvNeXt model using the complete eight-layer stack. This suggests the architecture can use selected modalities efficiently.

These figures still need context. The benchmarks measure performance against specific prepared targets, not success in a crewed exploration scenario. Ice prospectivity uses a knowledge-driven reference map. It does not compare predictions with a complete inventory of physically measured lunar ice.

The benchmark sets are also limited. The model card notes that narrow-angle pretraining depends on sites with available stereo terrain models. It covers 1,095 frames distributed around the Moon, but it is not globally dense.

The open source lunar AI model has therefore earned a credible research result, not an operational certificate. It performed competitively across four published benchmarks and showed its largest advantage in a multimodal task. Independent replication will determine how well those gains transfer to other regions, labels, instruments, and scientific questions.

The Open Model Still Has Hard Scientific Limits

The model can identify promising patterns, but its own documentation rules out using those patterns as direct operational evidence.

The clearest limitation concerns geodesy, the precise measurement and reference framework used to locate features. The model does not maintain an absolute geodetic reference frame. It can reproduce local terrain structure while shifting elevation or generating latitude and longitude values that are far from the correct location.

That limitation prevents researchers from treating generated outputs as mission-ready maps. A convincing crater outline is not enough if its coordinates or elevation reference can drift. Landing analysis requires traceable geometry, calibrated observations, and carefully managed uncertainty.

The developers explicitly state that the model has not been validated for landing-site certification or hazard clearance. Those tasks affect spacecraft and crew safety. They demand a standard of evidence well beyond performance on research benchmarks.

Generated fields also lack calibrated predictive meaning. The model can create plausible cross-modal outputs as a way to inspect what it learned. Those outputs are qualitative checks, not substitutes for instruments, stereo photogrammetry, or formal geodetic solutions.

Ice claims require particular caution. The model estimates similarity to an ice-prospectivity map built from temperature, terrain, and other relevant information. It does not detect or measure an underground deposit. A high score should guide investigation, not establish that extractable water exists.

The benchmark design creates another uncertainty. IBM and NASA have not yet isolated the individual contributions of geometry tokens, mixed-resolution training, and lunar pretraining across all tasks. The ice experiment offers partial evidence, but it does not explain every gain.

Small evaluation sets further limit strong conclusions. For tasks with limited labeled examples, a few difficult tiles can change a headline metric. The researchers report variation across multiple seeds, which helps, but independent tests on new regions remain essential.

Illumination can still complicate surface-change detection. NASA notes that lighting differences between orbits may influence the visibility of small craters. Explicit geometry gives the system useful context, yet it does not eliminate every ambiguity created by shadow and glare.

Coverage also reflects historical mission choices. Some instruments observed nearly the entire Moon, while others focused on particular regions. A model trained on those archives inherits their unevenness. Open weights cannot manufacture equivalent evidence for places with limited measurements.

There is also a risk of automation bias. A visually coherent output can look authoritative even when it reflects uncertain inputs or an imperfect target. Researchers will need uncertainty estimates, comparison with raw observations, and domain review before acting on a suggested pattern.

These limitations do not make the NASA-IBM Lunar Foundation Model less useful. They define the role it can safely play. It can help prioritize locations, accelerate mapping, compare data sources, and generate hypotheses for expert review.

Its most defensible position is upstream from operational decisions. The model narrows a search space, while instruments and validated analytical pipelines establish the evidence. Reusable modeling and task-specific verification therefore complement each other, even as they compete for development resources.

That boundary should shape public expectations. The release supports lunar exploration by improving scientific analysis. It does not autonomously plan Artemis missions, steer landers, certify terrain, or prove that a polar crater contains usable water.

Three Signals Will Show Whether the Release Matters

The next test is adoption: independent teams must reproduce the benchmarks, extend the model, and connect its outputs to new observations.

The first signal is independent benchmark replication. Outside researchers should rerun the crater, irregular mare patch, and ice-prospectivity evaluations using the released data and code. Comparable results would strengthen confidence in the implementation and published comparisons.

The most informative replication will test new geographic splits and previously unused lunar products. A model can perform well when training and evaluation data share subtle local patterns. Strong results in unfamiliar regions would show that its representation transfers beyond the original benchmark design.

Independent work should also report uncertainty, runtime, memory use, and sensitivity to adaptation choices. Accuracy alone does not determine whether a model fits a research workflow. A smaller specialized model may remain preferable when it is easier to validate or operate.

The second signal is the appearance of new downstream applications. The current demonstrations cover craters, volcanic features, and polar ice prospectivity. Researchers could adapt the same backbone to landslides, boulder fields, surface maturity, illumination analysis, or change detection.

The strongest evidence would be a task that was not designed by the original team and uses an independently prepared label set. That would support the central foundation-model claim: broad pretraining should help with questions that were not fully specified during development.

The third signal is connection to fresh mission data and field validation. Predictions become more valuable when later observations confirm or challenge them. New orbital imagery, surface measurements, or targeted exploration can reveal whether suggested features correspond to physical conditions.

NASA’s wider AI science strategy provides useful context. The agency and IBM previously released Prithvi models for Earth observation and Surya for heliophysics. The lunar model extends that pattern into planetary science rather than standing as a one-off project.

Future releases may show whether NASA can maintain a family of open scientific foundation models without fragmenting tools, standards, or data preparation. Shared software such as TerraTorch can help, but each scientific domain still requires its own measurements and validation practices.

Researchers should also watch how the model changes over time. Additional modalities, improved geodetic handling, broader narrow-angle coverage, and calibrated uncertainty would address several current limitations. Versioned benchmarks will be necessary to separate genuine progress from changed evaluation conditions.

The NASA-IBM Lunar Foundation Model has already delivered one concrete result: scientists can now download a common representation built from decades of lunar observations. Its benchmark performance makes the release worthy of serious testing, especially for multimodal problems and label-constrained projects.

Its longer-term importance depends on what the research community does next. Can independent teams reproduce the results, build applications beyond the original three tasks, and validate predictions against new evidence? Those are the questions that will turn an open checkpoint into durable scientific infrastructure.

For developers and scientific teams, the immediate action is straightforward. Inspect the documentation, choose a bounded research task, and establish a trusted baseline before adapting the model. Compare outputs with raw measurements and preserve human review at every consequential step. The NASA-IBM Lunar Foundation Model should be treated as a hypothesis engine, not an oracle. If independent work confirms its advantages while exposing its failures, the project will have achieved something more valuable than a polished demonstration: a shared, testable way to study the Moon.

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