Text Generation
Transformers
English
llama
code
llama2
text-generation-inference
Inference Endpoints
vshenoy commited on
Commit
d2f361b
1 Parent(s): ab7defc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -1,23 +1,23 @@
1
  ![image of llama engineer](https://i.imgur.com/JlhW0ri.png)
2
 
3
- ## Llama-Engineer-Evol-7B
4
 
5
  This is a version of Meta's chat instruction-tuned Llama 2 further fine-tuned on over 80,000 coding samples.
6
 
7
- The dataset is a combination of [Evol-Instruct-Code-80k-v1](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1) from [nikrosh](https://huggingface.co/nickrosh), a replication of the Evol-Instruct-Code as described in the WizardCoder Paper, and [Teknium](https://huggingface.co/teknium)'s [GPTeacher](https://github.com/teknium1/GPTeacher/blob/main/Codegen/codegen-instruct.json). Special thanks to these folks for putting these datasets together.
8
 
9
 
10
- ### Prompt Format
11
- The reccomended model usage is a variant of the standard Llama 2 format:
12
  ```
13
  [INST] <<SYS>>
14
- You are a helpful programming assistant. Always answer as helpfully as possible. Be direct in your response and get to the answer right away. Responses should be short.
15
  <</SYS>>
16
  {your prompt}[/INST]
17
  ```
18
 
19
 
20
- ### Next Steps
21
  - Prune the dataset and possibly fine-tune for longer.
22
  - Run benchmarks.
23
  - Provide GGML and GPTQ.
 
1
  ![image of llama engineer](https://i.imgur.com/JlhW0ri.png)
2
 
3
+ # Llama-Engineer-Evol-7B
4
 
5
  This is a version of Meta's chat instruction-tuned Llama 2 further fine-tuned on over 80,000 coding samples.
6
 
7
+ The dataset is a combination of [Evol-Instruct-Code-80k-v1](https://huggingface.co/datasets/nickrosh/Evol-Instruct-Code-80k-v1) from [nikrosh](https://huggingface.co/nickrosh), a replication of the Evol-Instruct-Code as described in the [WizardCoder](https://arxiv.org/pdf/2306.08568.pdf) paper, and [Teknium](https://huggingface.co/teknium)'s [GPTeacher](https://github.com/teknium1/GPTeacher/blob/main/Codegen/codegen-instruct.json). Special thanks to these folks for putting these datasets together.
8
 
9
 
10
+ ## Prompt Format
11
+ The reccomended model prompt is a variant of the standard Llama 2 format:
12
  ```
13
  [INST] <<SYS>>
14
+ You are a programming assistant. Always answer as helpfully as possible. Be direct in your response and get to the answer right away. Responses should be short.
15
  <</SYS>>
16
  {your prompt}[/INST]
17
  ```
18
 
19
 
20
+ ## Next Steps
21
  - Prune the dataset and possibly fine-tune for longer.
22
  - Run benchmarks.
23
  - Provide GGML and GPTQ.