File size: 889 Bytes
9098590 dc6ac57 9098590 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
---
language:
- English
- Bash
thumbnail: "Neural Program Synthesis for Bash"
tags:
- code-representation-learning
- program-synthesis
datasets:
- nlc2cmd
metrics:
- metric1
- metric2
---
# BashGPT-Neo
## What is it ?
BashGPT-Neo is a [Neural Program Synthesis](https://www.microsoft.com/en-us/research/project/neural-program-synthesis/) Model for Bash Commands and Shell Scripts. Trained on the data provided by [NLC2CMD](https://nlc2cmd.us-east.mybluemix.net/). It is fine-tuned version of GPTNeo-125M by EleutherAI.
## Usage
```py
from transformers import AutoTokenizer, AutoModelWithLMHead
tokenizer = AutoTokenizer.from_pretrained("reshinthadith/BashGPTNeo")
model = AutoModelWithLMHead.from_pretrained("reshinthadith/BashGPTNeo")
```
## Core Contributors 👥
- [Reshinth Adithyan](https://github.com/reshinthadithyan)
- [Aditya Thuruvas](https://github.com/dhuruvasaditya) |