paper-with-me

Papers

NNGPT: Rethinking AutoML with Large Language Models

2025-11-25 · Roman Kochnev, Waleed Khalid, Tolgay Atinc Uzun, Xi Zhang, Yashkumar Sanjaybhai Dhameliya, Furui Qin, Chandini Vysyaraju, Raghuvir Duvvuri, Avi Goyal, Dmitry Ignatov, Radu Timofte arxiv

Building self-improving AI systems remains a fundamental challenge in the AI domain. We present NNGPT, an open-source framework that turns a large language model (LLM) into a self-improving AutoML engine for neural network development, primarily for computer vision. Unlike previous frameworks, NNGPT extends the dataset of neural networks by generating new models, enabling continuous fine-tuning of LLMs based on closed-loop system of generation, assessment, and self-improvement. It integrates within one unified workflow five synergistic LLM-based pipelines: zero-shot architecture synthesis, hyperparameter optimization (HPO), code-aware accuracy/early-stop prediction, retrieval-augmented synthesis of scope-closed PyTorch blocks (NN-RAG), and reinforcement learning. Built on the LEMUR dataset as an audited corpus with reproducible metrics, NNGPT emits from a single prompt and validates network architecture, preprocessing code, and hyperparameters, executes them end-to-end, and learns from result. The PyTorch adapter makes NNGPT framework-agnostic, enabling strong performance: NN-RAG achieves 73% executability on 1,289 targets, 3-shot prompting boosts accuracy on common datasets, and hash-based deduplication saves hundreds of runs. One-shot prediction matches search-based AutoML, reducing the need for numerous trials. HPO on LEMUR achieves RMSE 0.60, outperforming Optuna (0.64), while the code-aware predictor reaches RMSE 0.14 with Pearson r=0.78. The system has already generated over 5K validated models, proving NNGPT as an autonomous AutoML engine. Upon acceptance, the code, prompts, and checkpoints will be released for public access to enable reproducibility and facilitate community usage.

📄 PDF Abstract BibTeX arXiv:2511.20333

Code (0)

등록된 구현이 없습니다.

Tasks

Hyperparameter OptimizationReinforcement Learning

Similar Papers 제목 키워드 기반

Towards Robust Training in NNGPT AutoML Pipeline: A Loss-Optimizer Pairing Selection Study

2026-06-18 · Anton Abramochkin, Radu Timofte, Dmitry Ignatov arxiv

The choice of loss function and optimizer is an important decision, that shapes further model training. Yet automated architecture search pipelines (AutoML) benefits significantly more from the optimal pairing selection …

Image Classification

From Code to Prediction: Fine-Tuning LLMs for Neural Network Performance Classification in NNGPT

2026-05-05 · Mahmoud Hanouneh, Radu Timofte, Dmitry Ignatov arxiv

Automated Machine Learning (AutoML) frameworks increasingly leverage Large Language Models (LLMs) for tasks such as hyperparameter optimization and neural architecture code generation. However, current LLM-based approach…

Hyperparameter OptimizationImage ClassificationCode Generation

UniAutoML: A Human-Centered Framework for Unified Discriminative and Generative AutoML with Large Language Models

2024-10-09 · Jiayi Guo, Zan Chen, Yingrui Ji, Liyun Zhang 외

Automated Machine Learning (AutoML) has simplified complex ML processes such as data pre-processing, model selection, and hyper-parameter searching. However, traditional AutoML frameworks focus solely on discriminative t…

AutoMLModel Selection

AutoML in the Age of Large Language Models: Current Challenges, Future Opportunities and Risks

2023-06-13 · Alexander Tornede, Difan Deng, Theresa Eimer, Joseph Giovanelli 외

The fields of both Natural Language Processing (NLP) and Automated Machine Learning (AutoML) have achieved remarkable results over the past years. In NLP, especially Large Language Models (LLMs) have experienced a rapid …

AutoML

AutoML-Agent: A Multi-Agent LLM Framework for Full-Pipeline AutoML

2024-10-03 · Patara Trirat, Wonyong Jeong, Sung Ju Hwang

Automated machine learning (AutoML) accelerates AI development by automating tasks in the development pipeline, such as optimal model search and hyperparameter tuning. Existing AutoML systems often require technical expe…

AutoMLCode GenerationRetrieval