Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/k-dizzled/ml4se-program-repair


https://github.com/k-dizzled/ml4se-program-repair

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Program Repair Project

Utilizing Large Language Models to preair a dataset and use it to train a model to repair code. This particular `ts` package generates solutions for coding problems from the `livecodebench` dataset via some small model, then, stress tests solutions using data provided in the dataset and in case of incorrect behavior -- tries to fix solutions using the execution feedback and a bigger model. Via this procedure a dataset is created.

Authors: *Nikita Khramov*, *Andrei Kozyrev* and *Ivan Kabashnyi*

ML4SE, Constructor University, Bremen, Autumn 2024

## Prerequisites

Setup the npm version via `nvm`:
```bash
nvm use
```

Install dependencies:
```bash
npm install
```

## Development

Run the entry point:
```bash
npm run serve
```

Run tests:
```bash
npm test
```