Small AI Models Gain Traction Around the World
4 104locater16 shares a report from IEEE Spectrum: One morning in 2019, Adebayo Alonge was in a Cape Town hotel room, preparing to demonstrate his startup's AI answer to a serious problem in African health care: counterfeit medication, which kills thousands of people across the continent every year. The RxScanner is a handheld spectrometer that scans a pill with infrared light, then sends the item's molecular profile to an AI model equipped with a pharmaceutical database. In seconds, the AI identifies the medication from its molecular profile -- or reports that it's phony.
Pharmacies were using the system in more than a dozen countries, including Ghana, Kenya, Myanmar, and Alonge's native Nigeria. But that morning in South Africa, it didn't work. "I was shocked," Alonge says... So Alonge immediately asked his engineers to shrink the AI model down to a smaller, low-power, unconnected version that could run entirely on his Android phone. They produced it 2 hours later, and that saved the demo. More importantly, the work birthed a new version of his device, which can authenticate a pill in places without broadband, computers, or even reliable electricity. It also turned Alonge into an advocate for this kind of "small AI." "The article goes on to detail other immediately useful 'small' AI applications without any subscription or billion dollar data centers needed," writes locator16. For example, Bala Murugan and colleagues at Vellore Institute of Technology in India developed a drone-based system that photographs cashew plants and identifies disease-indicating splotches on the plants. The key advantage is that all processing happens on the drone itself, so farmers do not need a computer, broadband connection, or cloud server access.
In a Uruguayan vineyard, researchers developed small-AI systems to identify ant infestations. The article doesn't go deep into the deployment details, but it presents this as another example of a narrow, localized model trained to recognize a specific agricultural threat. Small AI has also been used to detect the presence of malaria-carrying mosquitoes in multiple countries. This is especially useful in regions where public-health teams may lack reliable network access or expensive lab infrastructure, but still need fast, local detection.
In parts of Brazil without access to more complex medical equipment, researchers have used small AI to run electrocardiograms from an Arduino device. The article also describes Marcelo Jose Rovai's work on a TinyML model that generates electrocardiograms in a patient simulator lab. Rovai also describes a newer experiment using an Arduino UNO Q with a Qualcomm chipset. The device runs a language model locally, collects sensor data, and analyzes it to detect tiny pools of water where mosquitoes might breed -- while using only about 3 watts of power.
4 comments
Re:Farming (Score: 5, Interesting)
by drnb ( 2434720 ) on Monday July 06, 2026 @08:58PM (#66226012)
At my university the school of agriculture was next to the school science. I used to use the ag computer lab since it was better than the science computer lab. I was polite, gave up my computer if the lab started to get full, so the ag students didn't mind my being there. Plus I was flippin amazed at the stuff they were doing. They enjoyed explaining it and I had some experience with embedded stuff so I could help out at times. So it was a kind of win win. Good times. Eye opening.
Re:Ok cool (Score: 5, Informative)
by Anonymous Coward ( None ) on Monday July 06, 2026 @07:38PM (#66225882)
> But why does rxscanner need AI? It's a scanner and a database lookup. The AI is redundant no?
from Gemini
Pattern Recognition: Unlike a standard database that only looks for exact matches, AI looks for patterns.
Tolerance Handling: The AI accounts for minor variations, such as humidity, pill age, or scanner angles.
Anomaly Detection: Machine learning algorithms instantly flag if active ingredients are missing, diluted, or replaced with toxic fillers.
Re:Ok cool (Score: 5, Informative)
by innocent_white_lamb ( 151825 ) on Tuesday July 07, 2026 @12:21AM (#66226186)
Pattern Recognition:
James C. Bezdek's "Pattern Recognition with Fuzzy Objective Function Algorithms" (1981) is a seminal work in the field of fuzzy clustering and pattern recognition.
Tolerance Handling:
Variables can be assigned as ranges rather than absolute values.
Anomaly Detection:
That's why you have the database lookup.
I don't see any AI here. It's just basic computer programming as it's been done for decades.
Re:Ok cool (Score: 5, Informative)
by niftydude ( 1745144 ) on Monday July 06, 2026 @07:43PM (#66225890)
The rxscanner is a very cheap portable spectrometer, so it is probably a near IR or short wave IR device with quite poor spectral resolution.
On top of that, there is a lot of clutter in those spectral bands, not to mention measurement problems caused by varying reflectivity and light levels between samples taken in the wild
So it isn't as simple as taking a scan and comparing the spectra you measure to a database, there is a lot of noise.
Machine learning/AI models to help with this are quite common in this field, and have been around for decades to help with spectral library lookups - long before the current LLM hype phase.