• About
  • Advertise
  • Privacy & Policy
  • Contact
HK Businesswire
  • Home
  • News
    • All
    • Business
    • Politics
    • PR Newswire
    • Science
    • World

    Dawson’s Creek star James Van Der Beek dies at 48

    Trump tells Netanyahu Iran talks must continue

    Trump tells Netanyahu Iran talks must continue

    Redefining Automotive Painting: Samurai Paint Completed Asia’s Biggest Aerosol Spraying Challenge

    Redefining Automotive Painting: Samurai Paint Completed Asia’s Biggest Aerosol Spraying Challenge

    ADB grants PH fintech leader GCash with $30-M credit facility to expand loan access to MSMEs, women entrepreneurs, especially in high poverty areas

    ADB grants PH fintech leader GCash with $30-M credit facility to expand loan access to MSMEs, women entrepreneurs, especially in high poverty areas

    Nato launches ‘Arctic Sentry’ unified security mission

    Bondi accused of hiding names of Epstein associates

    Bondi accused of hiding names of Epstein associates

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • PR Newswire
  • Business
  • World
  • Entertainment
  • Sports
  • Tech
    • All
    • Apps
    • Gadget
    • Mobile
    • Startup

    Hong Kong CEOs Show Strong Long-Term Optimism but Near-Term Caution, PwC Survey Finds

    PwC Releases 2026 Global Crypto Tax Report Highlighting Regulatory Convergence

    Keeta and ICBC Asia Sign Strategic Partnership to Build Integrated Business Service Ecosystem

    Google Tightens AI Access for Hong Kong Workspace Users as Gemini Faces Regional Blocks

    PwC Survey Finds Hong Kong Workforce Embracing AI Amid Job Security Concerns

    Ant Health Launches One-Stop ‘Healthy Bay Area’ Service for Cross-Border Medical Appointments

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
  • Feature
No Result
View All Result
  • Home
  • News
    • All
    • Business
    • Politics
    • PR Newswire
    • Science
    • World

    Dawson’s Creek star James Van Der Beek dies at 48

    Trump tells Netanyahu Iran talks must continue

    Trump tells Netanyahu Iran talks must continue

    Redefining Automotive Painting: Samurai Paint Completed Asia’s Biggest Aerosol Spraying Challenge

    Redefining Automotive Painting: Samurai Paint Completed Asia’s Biggest Aerosol Spraying Challenge

    ADB grants PH fintech leader GCash with $30-M credit facility to expand loan access to MSMEs, women entrepreneurs, especially in high poverty areas

    ADB grants PH fintech leader GCash with $30-M credit facility to expand loan access to MSMEs, women entrepreneurs, especially in high poverty areas

    Nato launches ‘Arctic Sentry’ unified security mission

    Bondi accused of hiding names of Epstein associates

    Bondi accused of hiding names of Epstein associates

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • PR Newswire
  • Business
  • World
  • Entertainment
  • Sports
  • Tech
    • All
    • Apps
    • Gadget
    • Mobile
    • Startup

    Hong Kong CEOs Show Strong Long-Term Optimism but Near-Term Caution, PwC Survey Finds

    PwC Releases 2026 Global Crypto Tax Report Highlighting Regulatory Convergence

    Keeta and ICBC Asia Sign Strategic Partnership to Build Integrated Business Service Ecosystem

    Google Tightens AI Access for Hong Kong Workspace Users as Gemini Faces Regional Blocks

    PwC Survey Finds Hong Kong Workforce Embracing AI Amid Job Security Concerns

    Ant Health Launches One-Stop ‘Healthy Bay Area’ Service for Cross-Border Medical Appointments

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
  • Feature
No Result
View All Result
HK Businesswire
No Result
View All Result
Home News Science

Making AI-generated code more accurate in any language

David Lee by David Lee
18 April 2025
in Science
0
0
SHARES
5
VIEWS
Share on FacebookShare on Twitter

Programmers can now use large language models (LLMs) to generate computer code more quickly. However, this only makes programmers’ lives easier if that code follows the rules of the programming language and doesn’t cause a computer to crash.Some methods exist for ensuring LLMs conform to the rules of whatever language they are generating text in, but many of these methods either distort the model’s intended meaning or are too time-consuming to be feasible for complex tasks.A new approach developed by researchers at MIT and elsewhere automatically guides an LLM to generate text that adheres to the rules of the relevant language, such as a particular programming language, and is also error-free. Their method allows an LLM to allocate efforts toward outputs that are most likely to be valid and accurate, while discarding unpromising outputs early in the process. This probabilistic approach boosts computational efficiency.Due to these efficiency gains, the researchers’ architecture enabled small LLMs to outperform much larger models in generating accurate, properly structured outputs for several real-world use cases, including molecular biology and robotics.In the long run, this new architecture could help nonexperts control AI-generated content. For instance, it could allow businesspeople to write complex queries in SQL, a language for database manipulation, using only natural language prompts.“This work has implications beyond research. It could improve programming assistants, AI-powered data analysis, and scientific discovery tools by ensuring that AI-generated outputs remain both useful and correct,” says João Loula, an MIT graduate student and co-lead author of a paper on this framework.Loula is joined on the paper by co-lead authors Benjamin LeBrun, a research assistant at the Mila-Quebec Artificial Intelligence Institute, and Li Du, a graduate student at John Hopkins University; co-senior authors Vikash Mansinghka ’05, MEng ’09, PhD ’09, a principal research scientist and leader of the Probabilistic Computing Project in the MIT Department of Brain and Cognitive Sciences; Alexander K. Lew SM ’20, an assistant professor at Yale University; Tim Vieira, a postdoc at ETH Zurich; and Timothy J. O’Donnell, an associate professor at McGill University and a Canada CIFAR AI Chair at Mila, who led the international team; as well as several others. The research will be presented at the International Conference on Learning Representations.Enforcing structure and meaningOne common approach for controlling the structured text generated by LLMs involves checking an entire output, like a block of computer code, to make sure it is valid and will run error-free. If not, the user must start again, racking up computational resources.On the other hand, a programmer could stop to check the output along the way. While this can ensure the code adheres to the programming language and is structurally valid, incrementally correcting the code may cause it to drift from the meaning the user intended, hurting its accuracy in the long run.“It is much easier to enforce structure than meaning. We can quickly check whether something is in the right programming language, but to check its meaning you have to execute the code. Our work is also about dealing with these different types of information,” Loula says.The researchers’ approach involves engineering knowledge into the LLM to steer it toward the most promising outputs. These outputs are more likely to follow the structural constraints defined by a user, and to have the meaning the user intends.“We are not trying to train an LLM to do this. Instead, we are engineering some knowledge that an expert would have and combining it with the LLM’s knowledge, which offers a very different approach to scaling than you see in deep learning,” Mansinghka adds.They accomplish this using a technique called sequential Monte Carlo, which enables parallel generation from an LLM to compete with each other. The model dynamically allocates resources to different threads of parallel computation based on how promising their output appears.Each output is given a weight that represents how likely it is to be structurally valid and semantically accurate. At each step in the computation, the model focuses on those with higher weights and throws out the rest.In a sense, it is like the LLM has an expert looking over its shoulder to ensure it makes the right choices at each step, while keeping it focused on the overall goal. The user specifies their desired structure and meaning, as well as how to check the output, then the researchers’ architecture guides the LLM to do the rest.“We’ve worked out the hard math so that, for any kinds of constraints you’d like to incorporate, you are going to get the proper weights. In the end, you get the right answer,” Loula says.Boosting small modelsTo test their approach, they applied the framework to LLMs tasked with generating four types of outputs: Python code, SQL database queries, molecular structures, and plans for a robot to follow.When compared to existing approaches, the researchers’ method performed more accurately while requiring less computation.In Python code generation, for instance, the researchers’ architecture enabled a small, open-source model to outperform a specialized, commercial closed-source model that is more than double its size.“We are very excited that we can allow these small models to punch way above their weight,” Loula says.Moving forward, the researchers want to use their technique to control larger chunks of generated text, rather than working one small piece at a time. They also want to combine their method with learning, so that as they control the outputs a model generates, it learns to be more accurate.In the long run, this project could have broader applications for non-technical users. For instance, it could be combined with systems for automated data modeling, and querying generative models of databases.The approach could also enable machine-assisted data analysis systems, where the user can converse with software that accurately models the meaning of the data and the questions asked by the user, adds Mansinghka.“One of the fundamental questions of linguistics is how the meaning of words, phrases, and sentences can be grounded in models of the world, accounting for uncertainty and vagueness in meaning and reference. LLMs, predicting likely token sequences, don’t address this problem. Our paper shows that, in narrow symbolic domains, it is technically possible to map from words to distributions on grounded meanings. It’s a small step towards deeper questions in cognitive science, linguistics, and artificial intelligence needed to understand how machines can communicate about the world like we do,” says O’Donnell.This research is funded, in part, by the Canada CIFAR AI Chairs Program, and by the Siegel Family Foundation via gift to the MIT Siegel Family Quest for Intelligence. 

Tags: Science
David Lee

David Lee

Read More

Accelerating science with AI and simulations

Accelerating science with AI and simulations

12 February 2026
Physicists Make Electrons Flow Like Water

Physicists Make Electrons Flow Like Water

11 February 2026
  • Trending
  • Comments
  • Latest

Fusion Bank Partners with MyBooster to Launch Cross-Boundary E-Commerce Loan

6 February 2026
CM event series kicks off

CM event series kicks off

7 February 2026

Hong Kong CEOs Show Strong Long-Term Optimism but Near-Term Caution, PwC Survey Finds

6 February 2026

Hong Kong Student Criticised for Using Outsourced AI Project to Win STEM Awards

16 June 2025
French figure skating duo bag emotional gold in Milan

French figure skating duo bag emotional gold in Milan

12 February 2026
City close on Arsenal as Liverpool boost Europe bid

City close on Arsenal as Liverpool boost Europe bid

12 February 2026

Dawson’s Creek star James Van Der Beek dies at 48

12 February 2026
Trump tells Netanyahu Iran talks must continue

Trump tells Netanyahu Iran talks must continue

12 February 2026

Recent News

French figure skating duo bag emotional gold in Milan

French figure skating duo bag emotional gold in Milan

12 February 2026
City close on Arsenal as Liverpool boost Europe bid

City close on Arsenal as Liverpool boost Europe bid

12 February 2026

Dawson’s Creek star James Van Der Beek dies at 48

12 February 2026
Trump tells Netanyahu Iran talks must continue

Trump tells Netanyahu Iran talks must continue

12 February 2026
HK Businesswire

Stay ahead with the latest insights on Hong Kong’s economy, finance, and investments. From market trends to policy updates, we bring you in-depth analysis and expert opinions.

📩 Subscribe to our newsletter for exclusive updates.
📍 Follow us on social media for real-time news.
📧 Contact us: info@hongkong-invest.com

Follow Us

  • About
  • Advertise
  • Privacy & Policy
  • Contact

© 2025 by HKBusinesswire.com

No Result
View All Result

© 2025 by HKBusinesswire.com