Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/willcrichton/autoplan


https://github.com/willcrichton/autoplan

Last synced: 6 days ago
JSON representation

Awesome Lists containing this project

README

        

# Autoplan

Autoplan is a Python library for using machine learning to classify programs into categories. We built Autoplan as a part of our work for the SIGCSE'21 paper [Automating Program Structure Classification](https://dl.acm.org/doi/10.1145/3408877.3432358).

To see how to use Autoplan, check out our demo Jupyter notebook: https://github.com/willcrichton/autoplan/blob/master/notebooks/autoplan_demo.ipynb

If you are interested in using Autoplan, feel free to contact the authors at [email protected] and [email protected].

## Installation

Right now, we only support installation from source, so follow the instructions below.

### From source

```
git clone https://github.com/willcrichton/autoplan
cd autoplan
pip3 install -e .
```

Several examples and modules use optional dependencies that are not automatically installed. If you want to run every possible autoplan example, run this command:

```
pip3 install hyperopt nltk javalang
```

## Citation

If you use Autoplan in your own research, please make sure to cite us accordingly:

```bibtex
@inproceedings{crichton2021automating,
title={Automating Program Structure Classification},
author={Crichton, Will and Sampaio, Georgia Gabriela and Hanrahan, Pat},
booktitle={Proceedings of the 52nd ACM Technical Symposium on Computer Science Education},
pages={1177--1183},
year={2021}
}
```