paper-with-me

Papers

Self-Taught Optimizer (STOP): Recursively Self-Improving Code Generation

2023-10-03 · Eric Zelikman, Eliana Lorch, Lester Mackey, Adam Tauman Kalai

Several recent advances in AI systems solve problems by providing a "scaffolding" program that structures multiple calls to language models (LMs) to generate better outputs. A scaffolding program is written in a programming language such as Python. In this work, we use a language-model-infused scaffolding program to improve itself. We start with a seed "improver" that improves an input program according to a given utility function by querying an LM several times and returning the best solution. We then run this seed improver to improve itself. Across a small set of downstream tasks, the resulting improved improver generates programs with significantly better performance than its seed improver. A variety of self-improvement strategies are proposed by the language model, including beam search, genetic algorithms, and simulated annealing. Since the language models themselves are not altered, this is not full recursive self-improvement. Nonetheless, it demonstrates that a modern language model, GPT-4 in our experiments, is capable of writing code that can call itself to improve itself. We consider concerns around the development of self-improving technologies and evaluate the frequency with which the generated code bypasses a sandbox.

📄 PDF Abstract BibTeX arXiv:2310.02304

Code (1)

microsoft/stop 공식 구현

Tasks

Code GenerationLanguage ModelingLanguage Modelling

Methods 이 논문이 사용한 방법론

Multi-Head Attention 설명 없음
Attention 설명 없음
Dropout Dropout is a regularization technique for neural networks that drops a unit (along with connections) at training time with a specified probability $p$ (a common value is…
Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Label Smoothing Label Smoothing is a regularization technique that introduces noise for the labels. This accounts for the fact that datasets may have mistakes in them, so maximizing the…
Adam 설명 없음
Absolute Position Encodings Absolute Position Encodings are a type of position embeddings for [Transformer-based models] where positional encodings are…

Similar Papers 제목 키워드 기반

Evolving Self-taught Neural Networks: The Baldwin Effect and the Emergence of Intelligence

2019-04-04 · Nam Le

The so-called Baldwin Effect generally says how learning, as a form of ontogenetic adaptation, can influence the process of phylogenetic adaptation, or evolution. This idea has also been taken into computation in which e…

Deep Self-taught Learning for Remote Sensing Image Classification

2017-10-19 · Anika Bettge, Ribana Roscher, Susanne Wenzel

This paper addresses the land cover classification task for remote sensing images by deep self-taught learning. Our self-taught learning approach learns suitable feature representations of the input data using sparse rep…

ClassificationDictionary LearningGeneral Classificationimage-classification+3

Language Models can Self-Improve at State-Value Estimation for Better Search

2025-03-04 · Ethan Mendes, Alan Ritter

Collecting ground truth task completion rewards or human demonstrations for multi-step reasoning tasks is often cost-prohibitive and time-consuming, especially in interactive domains like web tasks. To address this bottl…

Language ModelingLanguage Modelling

Gradient Descent: The Ultimate Optimizer

2019-09-29 · Kartik Chandra, Audrey Xie, Jonathan Ragan-Kelley, Erik Meijer

Working with any gradient-based machine learning algorithm involves the tedious task of tuning the optimizer's hyperparameters, such as its step size. Recent work has shown how the step size can itself be optimized along…

BIG-bench Machine LearningHyperparameter Optimization

Learning Bound for Parameter Transfer Learning

2016-10-27 · NeurIPS 2016 12 · Wataru Kumagai

We consider a transfer-learning problem by using the parameter transfer approach, where a suitable parameter of feature mapping is learned through one task and applied to another objective task. Then, we introduce the no…

Transfer Learning