Slashdot Mirror


Researchers Develop AI To Predict Hospital Readmission Rates From Clinical Notes

Researchers at New York University and Princeton have developed a framework that evaluates clinical notes and autonomously assigns a risk score indicating whether patients will be readmitted within 30 days. They claim that the code and model parameters, which are publicly available on Github, handily outperform baselines. VentureBeat reports: As the researchers point out in a preprint paper on Arxiv.org, clinical notes use abbreviations and jargon, and they're often lengthy, which poses an AI system design challenge. To overcome it, they used a natural language processing method -- Google's bidirectional encoder representations from transformers, or BERT -- that captures interactions between distant words in sentences by incorporating global, long-range information. Each clinical note is represented as a collection of tokens, or subword units extracted from text in a preprocessing step. From multiple sequences of these, ClinicalBERT identifies which tokens are associated with which sequence. It also learns the position of tokens from variables corresponding to the sequences, and inserts a special token used in classification tasks in front of every sequence.

To train ClinicalBERT, the team sourced a corpus of clinical notes and masked 15 percent of the input tokens, forcing the model to predict the concealed tokens and whether any two given two sentences were in consecutive order. Then, drawing on the Multiparameter Intelligent Monitoring in Intensive Care (MIMIC-III), an electronic health records data set comprising over two million notes from 58,976 hospital admissions of 38,597 patients, the researchers fine-tuned the system for clinical forecasting tasks. Tested on a sample set consisting of 30 pairs of medical terms designed to assess medical term similarity, the authors report, ClinicalBERT achieved a high correlation score, indicating that its tokens captured similarity between medical concepts terms. Heart-related concepts like myocardial infarction, atrial fibrillation, and myocardium were close together, they say, and renal failure and kidney failure were also close.

11 of 29 comments (clear)

  1. Awesome by bmimatt · · Score: 1

    Cue in greedy insurance companies digesting that data and kicking off their 'ai' designed to ramp up premiums. Excellent.

    1. Re:Awesome by Humbubba · · Score: 1
      This story is about saving the healthcare industry money. But I think AI could help the patient too, by predicting which doctors will have more patients readmitted within 30 days.

      And just maybe, with a richer database, based on the patient's latest exam(s) and previous history, as found in their recorded electronic health records, AI might outperform doctors with better diagnoses, recommended prescriptions, rehabilitative care, etc.

      Not that I'm saying AI should do the exam itself. Having AI administer any kind of health care in any kind of way definitely needs professional human oversight. At least for now.

  2. doctor handwriting ocr with an 95+ rate? by Joe_Dragon · · Score: 2

    doctor handwriting ocr with an 95+ rate?

    1. Re:doctor handwriting ocr with an 95+ rate? by gweihir · · Score: 1

      Don't think that is possible. This is based on electronic records.

      --
      Most ACs are not even worth the keystrokes to insult them. Be generically insulted by this and ignored otherwise.
  3. virtual doctor says "You get leprosy good bye" by Joe_Dragon · · Score: 1

    virtual doctor says "You get leprosy good bye"
    https://www.youtube.com/watch?...

  4. Re:virtual doctor says "You got leprosy good bye" by Joe_Dragon · · Score: 1

    Re:virtual doctor says "You got leprosy good bye"

  5. Researchers should work on something else by hcs_$reboot · · Score: 2

    an AI that given a bunch of symptoms, blood analysis, weight loss / gain, ... can tell you a narrow list of diseases you might have ; that would surely beat the best human specialists.

    --
    Slashdot, fix the reply notifications... You won't get away with it...
  6. It's hilarious by Dunbal · · Score: 1

    It really is. Instead of dedicating their effort to improve humanity and put lawyers out of business, software engineers are throwing major efforts towards putting doctors out of business. Which just goes to show that they can't think further than the last curly brace in their programs. Once all the doctors are out of business, just exactly who you they think become the next target for all the starving lawyers out there left without doctors to sue?

    --
    Seven puppies were harmed during the making of this post.
    1. Re:It's hilarious by Dunbal · · Score: 1

      Who do you think understands law better.

      I can find you any number of layers that will argue either case.

      --
      Seven puppies were harmed during the making of this post.
    2. Re:It's hilarious by dgatwood · · Score: 1

      Often in the same legal proceeding.

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

  7. Background by jythie · · Score: 3, Informative

    So a little bit of context... this is actually a fairly active area of research and has been for decades. I know people who have been using AI techniques to try to predict readmissions probabilities since the 90s, and some of them have gone on to develop these into commercial products that hospitals use today... so the story here really is not the use case but instead the incremental improvement of this particular corner of AI. I am actually just getting off a project that was trying to apply another area within AI to the same basic problem, though since we were using agent based modeling we probably will not get much attention.

    And this stuff is honestly pretty useful. It helps earmark which patients might need a bit of extra monitoring or guidance, or which ones might benefit from having a nurse check in on them at home. It means figuring out where to proactively spend limited human resources in order to decrease the chances someone is going to end up right back in your ER. Good stuff.