Spaces:
Runtime error
Runtime error
Kajise Org
commited on
Commit
•
96cf2e5
1
Parent(s):
91d5f3f
Fix ident
Browse files
app.py
CHANGED
@@ -10,11 +10,9 @@ from huggingface_hub import hf_hub_download
|
|
10 |
hf_hub_download(repo_id="LLukas22/gpt4all-lora-quantized-ggjt", filename="ggjt-model.bin", local_dir=".")
|
11 |
llm = Llama(model_path="./ggjt-model.bin")
|
12 |
|
13 |
-
ins = '''
|
14 |
{}
|
15 |
-
|
16 |
-
also take this data and absorb your knowledge, you dont need use now what dont make sense, there will be noise, focus on what is repeated and adds knowledge
|
17 |
-
|
18 |
'''
|
19 |
|
20 |
import requests
|
@@ -130,12 +128,9 @@ with gr.Blocks(theme=custom_theme, analytics_enabled=False, css=css) as demo:
|
|
130 |
""" ## GPT4ALL
|
131 |
|
132 |
7b quantized 4bit (q4_0)
|
133 |
-
with internet access (well, it works. sorta)
|
134 |
|
135 |
Type in the box below and click the button to generate answers to your most pressing questions!
|
136 |
-
|
137 |
-
"""
|
138 |
-
)
|
139 |
|
140 |
with gr.Row():
|
141 |
with gr.Column(scale=3):
|
|
|
10 |
hf_hub_download(repo_id="LLukas22/gpt4all-lora-quantized-ggjt", filename="ggjt-model.bin", local_dir=".")
|
11 |
llm = Llama(model_path="./ggjt-model.bin")
|
12 |
|
13 |
+
ins = '''### Instruction:
|
14 |
{}
|
15 |
+
### Response:
|
|
|
|
|
16 |
'''
|
17 |
|
18 |
import requests
|
|
|
128 |
""" ## GPT4ALL
|
129 |
|
130 |
7b quantized 4bit (q4_0)
|
|
|
131 |
|
132 |
Type in the box below and click the button to generate answers to your most pressing questions!
|
133 |
+
""")
|
|
|
|
|
134 |
|
135 |
with gr.Row():
|
136 |
with gr.Column(scale=3):
|