Artificial intelligence researchers have long grappled with a fundamental tension: modern neural networks can match or exceed human performance on well-defined benchmarks, yet frequently fail when conditions shift even slightly. Three new studies, all released this week, take markedly different approaches to solving that problem — from the depths of the earth to the neural circuits of the fruit fly.
Finding Ore with Physics-Informed Networks
The first paper introduces Korzhinskii-Net, a neural network designed to identify underground mineral deposits by simulating the physical processes that actually create them. Named after Soviet geochemist Dmitri Korzhinskii, whose mid-twentieth-century work on fluid infiltration through rock remains foundational to ore geology, the model couples fluid flow equations, heat transport, and chemical reaction rates into a single trainable system.
Developed by researcher Boris Kriuk, the network was tested across six Russian ore provinces spanning copper, gold, and polymetallic deposits. Against a strong classical baseline — a support vector machine — Korzhinskii-Net achieved a mean precision-recall area under the curve of 0.708, compared to 0.235 for the competing approach. In practical terms, it ranked known deposits far higher in its predictions, with a mean fractional rank of 0.036 versus 0.475 for the baseline.
The key insight is that surface and satellite data alone are insufficient proxies for what happens kilometres underground. By forcing the model to respect physical laws, the researchers argue, it can infer subsurface geology that data-only classifiers systematically miss. The full pipeline has been released as open-source software.
A Robot That Navigates Like a Fly
The second paper takes biological inspiration in a different direction. Researchers Benquan Wang and Jingdao Chen at constructed FLYNN — the Fly Neural Network — by mapping the architecture of their artificial neural network directly onto the synaptic connectome of Drosophila melanogaster, the common fruit fly, whose complete brain wiring has been charted at the resolution of individual connections.
Trained to navigate in the MuJoCo physics simulation environment using only camera input, FLYNN performed comparably to conventional hand-crafted networks of similar size. The more striking result came under stress: when vision was removed entirely during testing, FLYNN continued to function, while purpose-built networks failed — even those specifically trained with simulated camera dropout.
The researchers attribute FLYNN's resilience to what they call representational modularity — the idea that its fruit-fly-derived architecture naturally organises information into separable internal representations, allowing it to compensate when one input source disappears. Principal component analysis of the network's internal states supported this interpretation.
Letting Engineers Describe Networks in Plain Language
The third paper asks whether large language models can translate natural-language infrastructure requirements — the kind a network engineer might write in a specification document — into valid, deployable network topologies. Researchers Kholoud El-Habbouli, Fen Zhou, and Stephane Huet built a constraint-driven pipeline that layers hierarchical modelling and systematic validation on top of existing LLMs.
Testing across both proprietary and open-weight models on four realistic network scenarios, the team found meaningful variation in how well different LLMs handle structural correctness and resilience requirements. Common failure modes included interface mismatches and directional inconsistencies — errors that could render a generated topology undeployable. The study stops short of endorsing any single model, positioning itself instead as a benchmark to guide model selection for AI-driven network design.
Taken together, the three papers reflect a broader shift in applied AI research: rather than relying solely on scale, researchers are increasingly asking what domain knowledge, biological principles, or structured reasoning can do that raw data cannot.