AshtonIsNotHere commited on
Commit
fe4ee9e
·
1 Parent(s): 544d0c8

Fix: Update stop words and generation func name in app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -5
app.py CHANGED
@@ -3,19 +3,23 @@ from llama_cpp import Llama
3
 
4
  model = Llama(model_path="CodeLlama_7B_nlp_pp_q8_0.gguf")
5
 
 
 
 
 
6
  def generate(input_text):
7
- output = model(input_text, max_tokens=128, stop=["\n"], echo=True)
8
  return output['choices'][0]['text']
9
 
10
- input_text = gr.inputs.Textbox(lines= 10, label="Enter your input text")
11
- output_text = gr.outputs.Textbox(label="Output text")
12
 
13
  description = "Code generation for NLP++ with CodeLlama"
14
 
15
  examples = [
16
  '# Find concept named parent under root and print "num" val for each child attribute\n',
17
  'L("iter") = getconcept(findroot(), L("parent_con"));\n',
18
- "# Match node _noun when preceded by _noun"
19
  ]
20
 
21
- gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="CodeLlama for NLP++", description=description, examples=examples).launch()
 
3
 
4
  model = Llama(model_path="CodeLlama_7B_nlp_pp_q8_0.gguf")
5
 
6
+ # These phrases/tokens indicate the start of a pass. For demonstration purposes, it's
7
+ # safe to assume that these should not be encountered in the output and represent a hallucination.
8
+ stop = ["@NODES", "@CODE", "@DECL"]
9
+
10
  def generate(input_text):
11
+ output = model(input_text, max_tokens=128, stop=stop, echo=True)
12
  return output['choices'][0]['text']
13
 
14
+ input_text = gr.inputs.Textbox(lines= 10, label="Enter your code to autocomplete")
15
+ output_text = gr.outputs.Textbox(label="Output code")
16
 
17
  description = "Code generation for NLP++ with CodeLlama"
18
 
19
  examples = [
20
  '# Find concept named parent under root and print "num" val for each child attribute\n',
21
  'L("iter") = getconcept(findroot(), L("parent_con"));\n',
22
+ '# Match node _noun when preceded by _noun\n'
23
  ]
24
 
25
+ gr.Interface(fn=generate, inputs=input_text, outputs=output_text, title="CodeLlama for NLP++", description=description, examples=examples).launch()