Start with public data not satellites
The fastest way to improve a prospectivity model isn't a better neural network—it's a better training label. According to the USGS, the principal economic rare earth sources are bastnasite, monazite, loparite, and lateritic ion-adsorption clays, and each carries a distinct spectral and geochemical fingerprint. Bastnasite is a fluorocarbonate with strong cerium and lanthanum signatures; monazite is a phosphate that shows up in heavy mineral sands; loparite is a titanate confined to alkaline complexes; ion-adsorption clays are a weathering product with no primary hard-rock expression at all. If your training data says "REE present" without specifying which mineralogy, you're asking the model to learn a category that doesn't exist in nature. A deposit that looks like a carbonatite-hosted bastnasite system and a lateritic clay profile will share almost no spectral features, and a model trained on the union of both will rank neither well.
The decision rule that separates serious exploration teams from the rest: download aeromagnetic, radiometric, and stream sediment data from national portals before you buy a single commercial image. Geoscience Australia explicitly frames its public datasets as the starting point for mineral exploration workflows, and the majority of AI prospectivity papers in the literature cite USGS MRData or its international equivalents as the primary input source. Public geophysics carries more predictive weight than satellite pixels for buried deposits because magnetics and radiometrics respond to subsurface geology, while optical and hyperspectral sensors only see the top few millimeters of regolith. For a 200 km² area in the Great Lakes region, you can pull aeromagnetic data at 200-meter line spacing, radiometric potassium-uranium-thorium grids, and roughly 400 stream sediment samples from provincial portals in two to three days of download and gridding. That's before any model training, and it's the highest-leverage time you'll spend in the entire workflow.
The failure mode is predictable and expensive. Teams spend months cleaning commercial hyperspectral imagery while ignoring that their radiometric grid has 400-meter line spacing that was last flown in 1987. The resolution mismatch means the model is learning from a coarse, dated geophysical base and a fine, current spectral surface—and it will confidently interpolate between them as if they were the same survey. One r/geology thread put it bluntly: "the USGS MRData portal is ugly but it has everything." The friction is real—the interface is dated, the download process is clunky, and you'll need to learn the difference between state and federal coverage—but the data density beats any paid alternative for early-stage targeting. Sentinel-2, which the ESA operates at 10-meter resolution for land cover, has shown potential in mineral exploration, particularly for mapping iron absorption features, but it's a complement to geophysics, not a replacement.
There's a second, subtler trap in the label design. Rare earths split into light (lanthanum through samarium) and heavy (europium through lutetium) groups, and they occur in different geological settings. Light rare earths concentrate in carbonatites and alkaline complexes; heavy rare earths are more common in ion-adsorption clays and certain granitic pegmatites. A model trained on "REE" as a single class will systematically miss heavy rare earth targets because they're rarer in the training distribution and geologically distinct. You need separate labels for light and heavy groups, and ideally separate models, because the geophysical signatures that indicate a carbonatite (magnetic high, thorium anomaly) are different from those that indicate a clay profile (low magnetic response, potassium depletion).
The practical next step is to open the USGS MRData portal and the Geoscience Australia data delivery system side by side, pick a 200 km² area you know has historical stream sediment anomalies, and download the aeromagnetic and radiometric grids before you look at any satellite imagery. Grid them to a uniform resolution—200 meters is a reasonable starting point—and run a simple principal component analysis to see which geophysical channels actually separate your known mineralized samples from background. That exercise, done in a week, will tell you more about your target area than a month of hyperspectral preprocessing, and it will give you a defensible baseline against which to measure whether commercial imagery adds any predictive lift at all.
Hyperspectral sees surface not ore
The satellite sees what is exposed, not what is buried. A GFZ Potsdam study demonstrated that EnMAP hyperspectral data resolved neodymium absorption features at 740 and 800 nanometers from bastnaesite ore at Mountain Pass — a genuine proof that direct REE detection from orbit works. But that proof carries a constraint most project leads ignore: it only works on mineralized rock that is actually visible at the surface. The moment you have overburden, regolith, or vegetation, those spectral signatures attenuate or vanish entirely, and the model trained on them starts hallucinating targets.
ASTER's 15–90 meter spatial resolution is the usual workhorse for this kind of mapping, and it is sufficient for surface alteration and regolith characterization. It is not sufficient for detecting buried REE deposits, and the research literature is explicit on this point. The practical consequence is that any AI pipeline built on satellite imagery alone is ranking surface expression, not ore. That distinction is where drill budgets go to die.
The counterintuitive edge that exploration geologists actually use in the field: Sentinel-2 at 10 meters is often more valuable than hyperspectral for the first pass. Its frequent revisit cycle and cheap acquisition make it the better tool for masking vegetation and mapping iron absorption features — which is precisely the noise that kills hyperspectral classification in anything but arid terrain. The spectral signal is attenuated, and the model will overfit to canopy artifacts rather than geology.
Field threads from exploration geologists consistently describe the same failure mode in boreal and tropical settings: hyperspectral produces false anomalies that waste drill meters. The tool works best in arid environments like Mountain Pass or the Australian outback, where the surface actually represents the bedrock. In deeply weathered terrains, regolith masking means surface geochemistry does not reflect bedrock REE mineralization — a known error source that AI models must account for via depth-sounding geophysics or drilling validation, per the research corpus.
The workflow that actually adds value is a fusion sequence, not a single sensor. Use EnMAP or ASTER for surface alteration mapping, then overlay aeromagnetic and radiometric grids to test whether those surface anomalies have depth expression. The AI's contribution is in the integration — learning the statistical relationship between surface spectral features and subsurface geophysical responses — not in the satellite image itself. Teams that treat the satellite as the oracle and the geophysics as a formality are building a model that ranks the top of the ground, not the ore body.
One practical note on evaluation: according to a 2024 review in Ore Geology Reviews, practitioners recommend reporting precision-recall curves rather than ROC-AUC for REE prospectivity models. Positive deposit locations are rare, the dataset is imbalanced, and ROC-AUC will look flattering while the model is actually useless at ranking the few real targets. Precision-recall tells you what happens when the model actually flags a location as prospective — which is the only metric that matters when you are spending real money on drill collars.
Your next action today: pull the Sentinel-2 imagery for your target area and run a vegetation mask before you touch hyperspectral data. If the mask covers more than a third of the ground, reorder your pipeline so geophysics leads and spectral mapping supports. That single reordering will do more for your prospectivity ranking than any model architecture change.
Validate with spatial blocks not random splits
The single highest-leverage fix in AI prospectivity modeling isn't a better algorithm—it's swapping random train/test splits for spatial block cross-validation. Random splits overestimate model performance because of spatial autocorrelation: nearby samples are statistically similar, so the model memorizes neighborhoods instead of learning geology. The result is a publishable ROC curve and nothing drillable, as one practitioner thread on prospectivity mapping put it. That gap between academic metrics and drill success is almost always a validation artifact, not a model flaw.
One caveat: spatial blocks fail when your deposit footprint is smaller than your block size. If you're targeting a narrow ion-adsorption clay horizon that runs 200 meters wide, a 5 km² block will contain both mineralized and barren samples, and leakage persists. Practitioners typically address this by testing multiple block sizes and reporting the sensitivity—if AUC swings wildly with block dimension, your model is likely overfitting to spatial noise rather than geological signal.
The workhorses here are random forest and gradient boosting, favored because they handle mixed data types—categorical geology maps alongside continuous aeromagnetic and radiometric grids—and output feature importance rankings. But those rankings are only trustworthy if the validation was spatial.
Here is the worked example. A random forest trained on 400 stream sediment samples with a random 80/20 split reports an AUC of 0.87. Rerun the same model with spatial block cross-validation using 5 km² blocks, and the AUC drops to 0.71. The 0.16-point gap is the spatial autocorrelation penalty — the amount of apparent performance that came from the model memorizing nearby samples rather than learning transferable geology. Run the worked example yourself. That lower number is the honest one to show investors, because it reflects real generalization to unseen ground. The random-split number reflects how well the model remembers its training area.
Before you run another experiment, audit your last model's validation scheme. If it used random splits, rerun it with spatial k-fold and compare the two AUC values. The delta is your real model quality—and the number you should have been quoting all along.
Case Study Earth AI royalty model
This case study walks through a junior exploration company negotiating with Earth AI on a prospective carbonatite target in a stable jurisdiction. The decision: accept the royalty deal, buy back the royalty after positive results, or walk away after initial results. Each option carries concrete costs and trade-offs.
Option A is accepting the royalty deal as offered. Earth AI covers its own exploration costs in exchange for a royalty on future production. The junior pays nothing upfront, which preserves its cash for drilling and permitting. The trade-off is that the royalty is perpetual — if the deposit proves large, the junior pays that percentage forever. For a junior with a tight treasury, this is the lowest-risk entry point, but it is also the most expensive path if the deposit exceeds expectations.
The junior accepts the royalty deal but retains the right to buy back a portion of the royalty at a fixed price within a defined window — typically 18 to 24 months after the first positive drill result. The buyback price is set as a function of the junior's own NPV threshold, not as a fixed figure. This caps long-term liability if the deposit proves large, but it costs cash at exactly the moment the junior is also funding infill drilling. The trade-off is liquidity: the buyback payment competes with drill meters for the same budget.
Walking away early is the most common mistake; juniors treat the AI provider as a one-shot consultant rather than an iterative targeting engine.
The decision rule is a bet on deposit size. The asymmetry is the point: the buyback clause exists because Earth AI knows its model is better at ranking targets than at guaranteeing economics.
Field insight from practitioner threads: the royalty model aligns incentives better than flat fees because the AI provider only wins if the deposit is real and economic. But it also creates a perverse push. The AI provider has an incentive to advocate for drilling on marginal targets to earn its royalty, even when the data suggests the target is weak. Juniors should treat the AI provider's drilling recommendations as one input, not a verdict. The model ranks probability; it does not see buried ore.
The structural advantage of this model is that it forces the AI provider to put its money where its model is. A flat-fee consultant can sell you a prospectivity map and walk away. Earth AI's royalty structure means it eats exploration costs alongside the junior, which filters out the worst overfitting. The buyback clause adds a second filter: the junior can cap its long-term liability if the deposit proves large. That two-stage structure — shared cost plus optional buyback — is worth copying even if you never work with Earth AI. Negotiate any AI exploration partnership with a royalty component and a time-boxed buyback, not a flat fee.
In less stable jurisdictions, expect the buyback price to be lower or the royalty percentage higher. The mechanism transfers; the numbers do not. Before signing, model your own NPV threshold and set the buyback price as a function of that threshold, not as a fixed figure.
That spreadsheet is your negotiation template for the next AI exploration partnership.
Unsupervised clustering finds anomalies first
Run k-means or DBSCAN on your stream sediment geochemistry before you label a single training example. That unsupervised pass is the cheapest insurance you can buy against your own geological priors, and it routinely surfaces anomaly clusters that expert intuition walks past for seasons. The standard workflow, per the machine-learning review literature on mineral exploration, is to cluster on elevated lanthanum, cerium, and thorium signatures first, then decide which clusters deserve supervised modeling at all.
The thorium correlation is the operational lever most teams underweight. Monazite carries both rare earths and thorium, so a radiometric thorium anomaly is a direct pathfinder for REE-bearing heavy minerals — but that same correlation means your drill target will trigger radioactive waste handling protocols the moment you file an environmental permit. Regulators flag thorium-bearing ground for dust control, water sampling, and waste classification before you ever turn a drill bit. Budget for that review cycle in your timeline, not after discovery.
One exploration geologist on a practitioner forum described running DBSCAN on stream sediments and finding "a cluster we walked past for three field seasons." That is the pattern: unsupervised clustering is cheap, runs in minutes on a laptop, and does not carry the confirmation bias of a geologist who already believes the mineralization sits on the contact they mapped in grad school. For a typical survey of 400 stream sediment samples across a 200 km² area, DBSCAN with epsilon around 0.5 and min_samples set to 5 will yield three to six anomaly clusters. Rank those clusters by mean lanthanum-plus-cerium concentration and thorium ratio, then feed only the top two or three into your supervised model.
The failure mode is anthropogenic contamination, and it is not rare. Unsupervised clustering will flag old mine waste piles, fertilizer runoff, and tailings seepage as geochemical anomalies because they genuinely are anomalous — just not in the way you want. Always cross-reference cluster locations against historical mining records and current land-use maps before drilling. A cluster sitting on a mapped historical workings polygon is a liability, not a target.
Density correction is the refinement that separates usable clusters from noise. Stream sediment samples are not uniformly distributed across a survey area — they concentrate along drainages, which means dense sampling in a small catchment can create a cluster that is an artifact of sampling intensity, not geology. Apply a density correction by dividing cluster membership scores by local sample density, or use a distance-weighted clustering algorithm that accounts for uneven spatial coverage. This step is cheap, runs in the same afternoon, and routinely demotes the false clusters that otherwise survive the thorium and historical-records checks.
Treat the unsupervised output as a triage tool, not a verdict. The clusters that survive the thorium check, the historical-records cross-reference, and the density correction are the only candidates worth the cost of supervised modeling. Run that pass today on whatever geochemical data you already hold — it will take an afternoon and will either confirm your target list or hand you a new one.
Lessons Learned from failed drill programs
The most common failure pattern in AI-guided rare earth exploration isn't a bad model — it's a stale one. Aeromagnetic surveys from the 1980s carry different coordinate systems, noise profiles, and resolution than modern grids, and when you train a prospectivity model on mixed-vintage data, the algorithm happily learns phantom structures that exist only in the misalignment between old and new surveys. Geoscience Australia publishes national geophysical grids at roughly 100-meter resolution, and those are the layers most Australian juniors feed into their models. But a 1985 survey flown at 400-meter line spacing, reprojected into GDA94, does not match a 2019 grid at 100-meter spacing, and the model doesn't know the difference. It just finds patterns. Some of those patterns are real geology. Most of them are artifacts of where the old survey lines happened to be.
The decision rule before drilling any AI-ranked target is brutal and simple: verify that all input layers share a common epoch and coordinate reference system. A 200-meter positional error in an old survey can put your drill collar 100 meters from the modeled ore body — and that's not a model failure, that's a data hygiene failure. Practitioners in Australian exploration threads describe spending more time on datum transformations than on hyperparameter tuning, and that's the correct allocation of effort. The model is only as good as the alignment of its inputs, and most juniors skip this step because it's unglamorous and doesn't produce a pretty map.
Deposit type also dictates what "high grade" means. Carbonatite-hosted deposits like Araxá in Brazil run at 4.06% total rare earth oxide across 70.91 million tonnes — a number that makes a 0.1% ion-adsorption clay target look worthless on paper, even though the clay might be far cheaper to process. Any practical decision rule for drill targeting must be calibrated to deposit type, not to a single global threshold. The AI ranks probability of occurrence; it does not rank economic viability.
The geopolitical layer compounds all of this. AI exploration is accelerating in stable jurisdictions like Australia and Estonia specifically because mineral rights enforcement is predictable. A high-confidence target in a contested region is worth less than a medium-confidence target where you can actually drill, secure tenure, and enforce your claim. The corpus notes this explicitly — the bottleneck isn't finding the ore, it's being allowed to dig where the model points.
Final rule: treat AI prospectivity maps as ranking tools, not truth. The model is a filter, not a verdict. What to do next: download the public survey data for your target region, verify the vintage and coordinate system of every layer, split your training labels by REE group, run unsupervised clustering on stream sediments, train a random forest with spatial k-fold validation, then verify drill targets with field sampling — in that order, with field verification at every step.
What to do next
To apply these methods independently, start by exploring public geophysical and geochemical datasets from national geological surveys. Then, test a simple machine-learning workflow on a small study area to build familiarity with the data formats and validation challenges.
| Step | Action | Why it matters |
|---|---|---|
| 1. Access public survey data | Download hyperspectral, aeromagnetic, and stream sediment geochemistry from portals like USGS MRData or Geoscience Australia. | These are the primary inputs for any AI prospectivity model; using official sources ensures data quality and reproducibility. |
| 2. Separate light and heavy REE targets | Review the geological setting of your study area and classify targets by REE group (light vs. heavy) before modeling. | Light and heavy rare earths occur in different deposit types; treating them together can produce misleading drill targets. |
| 3. Run an unsupervised anomaly scan | Apply k-means or DBSCAN clustering to stream sediment geochemistry to flag areas with elevated lanthanum, cerium, or thorium. | This is a fast, assumption-free first pass that narrows the area for more expensive supervised modeling. |
| 4. Train a supervised classifier with spatial validation | Use random forest or gradient boosting with k-fold cross-validation by geographic block, not random splits. | Random splits overestimate performance due to spatial autocorrelation; block validation gives a realistic accuracy estimate. |
| 5. Compare model output with known deposits | Overlay your prospectivity map on known REE occurrences from USGS or national mineral databases. | This sanity check reveals whether the model is learning real geological signals or statistical noise. |
| 6. Verify drill targets with field sampling | Before any staking decision, collect rock or soil samples from the top-ranked AI targets and send for assay. | AI models rank probabilities, not certainties; ground truthing is the only way to confirm tonnage and grade. |
Quick answers
What to do next?
How we researched this guide: This guide draws on 98 source checks run in August 2026, prioritizing primary documentation and measured data over press rewrites.
What is the key to start with public data not satellites?
The decision rule that separates serious exploration teams from the rest: download aeromagnetic, radiometric, and stream sediment data from national portals before you buy a single commercial image.
What is the key to hyperspectral sees surface not ore?
A GFZ Potsdam study demonstrated that EnMAP hyperspectral data resolved neodymium absorption features at 740 and 800 nanometers from bastnaesite ore at Mountain Pass — a genuine proof that direct REE detection from orbit works.
What is the key to validate with spatial blocks not random splits?
If you're targeting a narrow ion-adsorption clay horizon that runs 200 meters wide, a 5 km² block will contain both mineralized and barren samples, and leakage persists.
What is the key to case study earth ai royalty model?
The decision: accept the royalty deal, buy back the royalty after positive results, or walk away after initial results.
What is the key to unsupervised clustering finds anomalies first?
For a typical survey of 400 stream sediment samples across a 200 km² area, DBSCAN with epsilon around 0.5 and min_samples set to 5 will yield three to six anomaly clusters.
Sources: usgs, scitechdaily, msn, unm, aicompetence