By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
ScienceabodeScienceabode
  • Home
  • News & Perspective
    News & PerspectiveShow More
    Microorganism that causes rare but severe eye infections detected in NSW coastal areas
    By Admin
    Scientists identify common cause of gastro in young children and adults over 50 years old
    By admin
    AI reveals hidden traits about our planet’s flora to help save species
    By admin
    Eye drops slow nearsightedness progression in kids, study finds
    By admin
    Using AI to create better, more potent medicines
    By admin
  • Latest News
    Latest NewsShow More
    Researchers develop new robot medics for places doctors are unable to be
    By Admin
    Even thinking about marriage gets young people to straighten up
    By admin
    Study: People tend to locate the self in the brain or the heart – and it affects their judgments and decisions
    By admin
    UCLA patient is first to receive successful heart transplant after using experimental 50cc Total Artificial Heart
    By admin
    Via Dying Cells, UVA Finds Potential Way to Control Cholesterol Levels
    By admin
  • Health
    Health
    The World Health Organization defines health as “a state of complete physical, mental, and social well-being and not merely the absence of disease or infirmity.”…
    Show More
    Top News
    Researchers design machine learning models to better predict adolescent suicide and self-harm risk
    September 11, 2023
    Scientists identify evolutionary gateway helping pneumonia bacteria become resistant to antibiotics   
    October 3, 2023
    New research indicates some people may be physically unable to use police breathalysers
    October 3, 2023
    Latest News
    How do therapy dogs help domestic abuse survivors receiving support services?
    May 10, 2025
    New chronic pain therapy retrains the brain to process emotions
    May 10, 2025
    Mind Blank? Here’s What Your Brain Is Really Doing During Those Empty Moments
    May 7, 2025
    A Common Diabetes Drug Might Be the Secret to Relieving Knee Pain Without Surgery!
    April 28, 2025
  • Environment
    EnvironmentShow More
    Arsenic exposure linked to faster onset of diabetes in south Texas population 
    By Admin
    Antarctica vulnerable to invasive species hitching rides on plastic and organic debris
    By Admin
    New substrate material for flexible electronics could help combat e-waste
    By Admin
    Bacteria ‘nanowires’ could help scientists develop green electronics
    By Admin
    Replacing plastics with alternatives is worse for greenhouse gas emissions in most cases, study finds
    By Admin
  • Infomation
    • Pricavy Policy
    • Terms of Service
  • Jobs
  • Application Submission
Notification Show More
Aa
ScienceabodeScienceabode
Aa
  • Home
  • Health
  • Anatomy
  • Jobs Portal
  • Application Submission
  • Categories
    • Health
    • Anatomy
    • Food & Diet
    • Beauty Lab
    • News & Perspective
    • Environment
  • More Foxiz
    • Blog Index
    • Sitemap
Follow US
Scienceabode > Blog > Technology > MIT researchers use large language models to flag problems in complex systems
Technology

MIT researchers use large language models to flag problems in complex systems

Admin
Last updated: 2024/08/22 at 6:19 PM
By Admin
Share
8 Min Read
SHARE

Identifying one faulty turbine in a wind farm, which can involve looking at hundreds of signals and millions of data points, is akin to finding a needle in a haystack.

Engineers often streamline this complex problem using deep-learning models that can detect anomalies in measurements taken repeatedly over time by each turbine, known as time-series data.

But with hundreds of wind turbines recording dozens of signals each hour, training a deep-learning model to analyze time-series data is costly and cumbersome. This is compounded by the fact that the model may need to be retrained after deployment, and wind farm operators may lack the necessary machine-learning expertise.

In a new study, MIT researchers found that large language models (LLMs) hold the potential to be more efficient anomaly detectors for time-series data. Importantly, these pretrained models can be deployed right out of the box.

- Advertisement -
MedBanner_Skyscraper_160x600_03/2018

The researchers developed a framework, called SigLLM, which includes a component that converts time-series data into text-based inputs an LLM can process. A user can feed these prepared data to the model and ask it to start identifying anomalies. The LLM can also be used to forecast future time-series data points as part of an anomaly detection pipeline.

While LLMs could not beat state-of-the-art deep learning models at anomaly detection, they did perform as well as some other AI approaches. If researchers can improve the performance of LLMs, this framework could help technicians flag potential problems in equipment like heavy machinery or satellites before they occur, without the need to train an expensive deep-learning model.

“Since this is just the first iteration, we didn’t expect to get there from the first go, but these results show that there’s an opportunity here to leverage LLMs for complex anomaly detection tasks,” says Sarah Alnegheimish, an electrical engineering and computer science (EECS) graduate student and lead author of a paper on SigLLM.

Her co-authors include Linh Nguyen, an EECS graduate student; Laure Berti-Equille, a research director at the French National Research Institute for Sustainable Development; and senior author Kalyan Veeramachaneni, a principal research scientist in the Laboratory for Information and Decision Systems. The research will be presented at the IEEE Conference on Data Science and Advanced Analytics.

An off-the-shelf solution

Large language models are autoregressive, which means they can understand that the newest values in sequential data depend on previous values. For instance, models like GPT-4 can predict the next word in a sentence using the words that precede it.

Since time-series data are sequential, the researchers thought the autoregressive nature of LLMs might make them well-suited for detecting anomalies in this type of data.

However, they wanted to develop a technique that avoids fine-tuning, a process in which engineers retrain a general-purpose LLM on a small amount of task-specific data to make it an expert at one task. Instead, the researchers deploy an LLM off the shelf, with no additional training steps.

But before they could deploy it, they had to convert time-series data into text-based inputs the language model could handle.

They accomplished this through a sequence of transformations that capture the most important parts of the time series while representing data with the fewest number of tokens. Tokens are the basic inputs for an LLM, and more tokens require more computation.

“If you don’t handle these steps very carefully, you might end up chopping off some part of your data that does matter, losing that information,” Alnegheimish says.

Once they had figured out how to transform time-series data, the researchers developed two anomaly detection approaches.

Approaches for anomaly detection

For the first, which they call Prompter, they feed the prepared data into the model and prompt it to locate anomalous values.

“We had to iterate a number of times to figure out the right prompts for one specific time series. It is not easy to understand how these LLMs ingest and process the data,” Alnegheimish adds.

For the second approach, called Detector, they use the LLM as a forecaster to predict the next value from a time series. The researchers compare the predicted value to the actual value. A large discrepancy suggests that the real value is likely an anomaly.

With Detector, the LLM would be part of an anomaly detection pipeline, while Prompter would complete the task on its own. In practice, Detector performed better than Prompter, which generated many false positives.

“I think, with the Prompter approach, we were asking the LLM to jump through too many hoops. We were giving it a harder problem to solve,” says Veeramachaneni.

When they compared both approaches to current techniques, Detector outperformed transformer-based AI models on seven of the 11 datasets they evaluated, even though the LLM required no training or fine-tuning.

In the future, an LLM may also be able to provide plain language explanations with its predictions, so an operator could be better able to understand why an LLM identified a certain data point as anomalous.

However, state-of-the-art deep learning models outperformed LLMs by a wide margin, showing that there is still work to do before an LLM could be used for anomaly detection.

“What will it take to get to the point where it is doing as well as these state-of-the-art models? That is the million-dollar question staring at us right now. An LLM-based anomaly detector needs to be a game-changer for us to justify this sort of effort,” Veeramachaneni says.

Moving forward, the researchers want to see if finetuning can improve performance, though that would require additional time, cost, and expertise for training.

Their LLM approaches also take between 30 minutes and two hours to produce results, so increasing the speed is a key area of future work. The researchers also want to probe LLMs to understand how they perform anomaly detection, in the hopes of finding a way to boost their performance.

“When it comes to complex tasks like anomaly detection in time series, LLMs really are a contender. Maybe other complex tasks can be addressed with LLMs, as well?” says Alnegheimish.

This research was supported by SES S.A., Iberdrola and ScottishPower Renewables, and Hyundai Motor Company.

Source: Massachusetts Institute of Technology.

Published on August 22, 2024

TAGGED: large language models, LLM
Admin August 22, 2024 August 22, 2024
Share This Article
Facebook Twitter Copy Link Print

Fast Four Quiz: Precision Medicine in Cancer

How much do you know about precision medicine in cancer? Test your knowledge with this quick quiz.
Get Started
Even in Winter, Life Persists in Arctic Seas

(USCGC Healy breaking through the Bering Sea waves. Credit: Chantelle Rose/NSF)   Despite…

A Biodiversity Discovery That Was Waiting in the Wings–Wasp Wings, That Is

Wing size differences between two Nasonia wasp species are the result of…

Entertainement

Coming soon

Your one-stop resource for medical news and education.

Your one-stop resource for medical news and education.
Sign Up for Free

You Might Also Like

HealthTechnology

Sensor technology uses nature’s blueprint and machinery to monitor metabolism in body

By Admin
HealthTechnology

Counter-Strike players faster at decision-making, study shows

By Admin

Mapping Protein Interactions to Fight Lung Cancer: Coskun Pioneering New Field of Research

By Admin
Technology

MIT engineers design tiny batteries for powering cell-sized robots

By Admin
Facebook Twitter Youtube Instagram
Company
  • Privacy Policy
  • Editorial Policy
  • Accessibility Statement
  • Contact US
  • Feedback
  • Advertisement
More Info
  • Newsletter
  • Beauty Lab
  • News & Perspective
  • Food & Diet
  • Health
  • Environment
  • Anatomy

Sign Up For Free

Subscribe to our newsletter and don't miss out on our programs, webinars and trainings.

Copyright © 2023 ScienceAbode. All Rights Reserved. Designed and Developed by Spirelab Solutions (Pvt) Ltd

Welcome Back!

Sign in to your account

Lost your password?