Could we use ML to detect Covid-19 infection?
What I'm thinking is that we could train a model against the hundreds of thousands of testing kits now in circulation with known results, wire that model into a web API, and then patch a device like this one:
https://www.owlstonemedical.com/products/reciva/
into said API. You send a breath/spit sample to the server, and the server would respond with a yes/no based on the model.
We could use this to test more people, more often, effectively for $0 24h/day. Doctors can be tested throughout their shifts, attendees for events could be tested before allowing entry, people could be easily vetted for exiting quarantine too.
I'm a web developer, and am confident that the web API part would be easy and anonymous, and from what I know about ML, training a model like this probably isn't difficult... if you have the data.
What I don't know much about is how easy it is to convert biology to data: getting testing kit information into a model, and converting breath/spit into data. I don't know how easy this is, but if it's doable, we may have something seriously helpful.
Can someone with domain knowledge in this area chime in with their point of view?
8 comments
[ 2.9 ms ] story [ 30.8 ms ] threadThe cost also seems suspicious. Every patient needs their own mask - you can't reuse those. Also, with the 4 cartridges per test, as recommended, that's unlikely to be $0.
FTR: Current coronavirus testing uses either an RNA match from a saliva sample, or a specific antibody reaction test - both are very specific to that single virus.
A breathalyzer might be just as good a comparison and is more reusable: if we can detect & capture breath/spit from enough infected & uninfected, surely a pattern would begin to present itself that could be used to diagnose, no?
Current testing is very specific, yes -- so would this system. But where current tests look for something specific: RNA or specific antibodies, this would simply look for "is this sample sufficiently like an infected case or an uninfected one?" Presumably there's more to what's going on in an infected person's lungs than just the existence of the antibodies. Could not ML help find these patterns and identify them as markers of infection?
And if ML wasn't redundant, you have no training set containing the relevant bio-markers and a binary variable indicating COVID-19 presence.
But I was thinking a little more macroscopically. We don't have any device that can see antibodies or anything as obvious in real time. Instead, we have to collect samples and test them separately in controlled environments while we look for specific markers we know to be signs of infection.
What ML does well though is see patterns in data we don't. Rather than find specific markers, I was thinking we could feed a series of different values into a model to see if a pattern emerged. We can't observe the virus directly, but we can measure the percentage makeup of different chemicals in someone's breath and see if there's a pattern in those we know to be infected vs those we know aren't -- the training set would be the pile of tests already conducted. Then we can apply that model to new data and test the results.
You don't know who is infected and who isn't. That was my second point about not having a training set.
Yeah - separate labs spread all over the world, using different protocols collecting different data points on different populations and answering to different companies and/or governments each of them with their own laws and regulations. You can't just "get all the data" in this case.