Spaces:
Runtime error
Runtime error
reshinth.adith
commited on
Commit
·
fd42bf7
1
Parent(s):
c6afb36
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,7 +7,21 @@ sdk: streamlit
|
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
| 9 |
---
|
|
|
|
| 10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
# Configuration
|
| 12 |
|
| 13 |
`title`: _string_
|
|
|
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
| 9 |
---
|
| 10 |
+
# BashGPT-Neo
|
| 11 |
|
| 12 |
+
## What is it ?
|
| 13 |
+
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.
|
| 14 |
+
|
| 15 |
+
## Usage
|
| 16 |
+
```py
|
| 17 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 18 |
+
tokenizer = AutoTokenizer.from_pretrained("reshinthadith/BashGPTNeo")
|
| 19 |
+
model = AutoModelForCausalLM.from_pretrained("reshinthadith/BashGPTNeo")
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
## Core Contributors 👥
|
| 23 |
+
- [Reshinth Adithyan](https://github.com/reshinthadithyan)
|
| 24 |
+
- [Aditya Thuruvas](https://github.com/dhuruvasaditya)
|
| 25 |
# Configuration
|
| 26 |
|
| 27 |
`title`: _string_
|