Monster commited on
Commit
724c3c9
·
1 Parent(s): f6bba37
Files changed (1) hide show
  1. app.py +2 -11
app.py CHANGED
@@ -7,7 +7,7 @@ from gradio.themes.utils import colors, fonts, sizes
7
  from llama_cpp import Llama
8
  from huggingface_hub import hf_hub_download
9
 
10
- hf_hub_download(repo_id="Pi3141/alpaca-lora-7B-ggml", filename="ggml-model-q4_1.bin", local_dir=".")
11
  llm = Llama(model_path="./ggml-model-q4_1.bin", n_threads=2)
12
 
13
 
@@ -28,15 +28,6 @@ theme = gr.themes.Monochrome(
28
 
29
 
30
 
31
-
32
- # def generate(instruction):
33
- # response = llm(ins.format(instruction))
34
- # response = response['choices'][0]['text']
35
- # result = ""
36
- # for word in response.split(" "):
37
- # result += word + " "
38
- # yield result
39
-
40
  def generate(instruction):
41
  result = ""
42
  for x in llm(ins.format(instruction), stop=['### Instruction:', '### End'], stream=True):
@@ -114,7 +105,7 @@ with gr.Blocks(theme=seafoam, analytics_enabled=False, css=css) as demo:
114
  gr.Markdown(
115
  """ ## Alpaca-LoRa
116
 
117
- is a 7B-parameter LLaMA model finetuned to follow instructions. It is trained on the Stanford Alpaca dataset and makes use of the Huggingface LLaMA implementation.
118
 
119
  Type in the box below and click the button to generate answers to your most pressing questions!
120
 
 
7
  from llama_cpp import Llama
8
  from huggingface_hub import hf_hub_download
9
 
10
+ hf_hub_download(repo_id="Pi3141/alpaca-lora-13B-ggml", filename="ggml-model-q4_1.bin", local_dir=".")
11
  llm = Llama(model_path="./ggml-model-q4_1.bin", n_threads=2)
12
 
13
 
 
28
 
29
 
30
 
 
 
 
 
 
 
 
 
 
31
  def generate(instruction):
32
  result = ""
33
  for x in llm(ins.format(instruction), stop=['### Instruction:', '### End'], stream=True):
 
105
  gr.Markdown(
106
  """ ## Alpaca-LoRa
107
 
108
+ is a 13B-parameter LLaMA model finetuned to follow instructions. It is trained on the Stanford Alpaca dataset and makes use of the Huggingface LLaMA implementation.
109
 
110
  Type in the box below and click the button to generate answers to your most pressing questions!
111