Chris STC
commited on
Commit
·
86a0c79
1
Parent(s):
618ed03
Update app.py
Browse files
app.py
CHANGED
@@ -4,39 +4,35 @@ os.system('CMAKE_ARGS="-DLLAMA_OPENBLAS=on" FORCE_CMAKE=1 pip install llama-cpp-
|
|
4 |
import wget
|
5 |
from llama_cpp import Llama
|
6 |
import random
|
|
|
7 |
url = 'https://huggingface.co/TheBloke/WizardLM-7B-uncensored-GGML/resolve/main/WizardLM-7B-uncensored.ggmlv3.q2_K.bin'
|
8 |
filename = wget.download(url)
|
9 |
llm2 = Llama(model_path=filename, seed=random.randint(1, 2**31))
|
10 |
-
|
11 |
-
theme = gr.themes.Soft(
|
12 |
-
primary_hue=gr.themes.Color("#ededed", "#fee2e2", "#fecaca", "#fca5a5", "#f87171", "#ef4444", "#dc2626", "#b91c1c", "#991b1b", "#7f1d1d", "#6c1e1e"),
|
13 |
-
neutral_hue="red",
|
14 |
-
)
|
15 |
title = """<h1 align="center">Chat with awesome WizardLM 7b model!</h1><br>"""
|
16 |
-
with gr.Blocks(theme=
|
17 |
gr.HTML(title)
|
18 |
-
gr.HTML("This model is awesome for its size! It is only 20th the size of Chatgpt but is around 90% as good as Chatgpt. However, please don't rely on WizardLM to provide 100% true information as it might be wrong sometimes.
|
19 |
chatbot = gr.Chatbot()
|
20 |
msg = gr.Textbox()
|
21 |
clear = gr.ClearButton([msg, chatbot])
|
22 |
-
|
|
|
|
|
|
|
23 |
|
24 |
def user(user_message, history):
|
25 |
return gr.update(value="", interactive=True), history + [[user_message, None]]
|
26 |
|
27 |
def bot(history):
|
28 |
-
#instruction = history[-1][1] or ""
|
29 |
user_message = history[-1][0]
|
30 |
-
#token1 = llm.tokenize(b"### Instruction: ")
|
31 |
-
#token2 = llm.tokenize(instruction.encode())
|
32 |
-
#token3 = llm2.tokenize(b"USER: ")
|
33 |
tokens3 = llm2.tokenize(user_message.encode())
|
34 |
token4 = llm2.tokenize(b"\n\n### Response:")
|
35 |
tokens = tokens3 + token4
|
36 |
history[-1][1] = ""
|
37 |
count = 0
|
38 |
output = ""
|
39 |
-
for token in llm2.generate(tokens, top_k=
|
40 |
text = llm2.detokenize([token])
|
41 |
output += text.decode()
|
42 |
count += 1
|
|
|
4 |
import wget
|
5 |
from llama_cpp import Llama
|
6 |
import random
|
7 |
+
|
8 |
url = 'https://huggingface.co/TheBloke/WizardLM-7B-uncensored-GGML/resolve/main/WizardLM-7B-uncensored.ggmlv3.q2_K.bin'
|
9 |
filename = wget.download(url)
|
10 |
llm2 = Llama(model_path=filename, seed=random.randint(1, 2**31))
|
11 |
+
|
|
|
|
|
|
|
|
|
12 |
title = """<h1 align="center">Chat with awesome WizardLM 7b model!</h1><br>"""
|
13 |
+
with gr.Blocks(theme=gradio.themes.clean) as demo: # Using default Gradio chat theme.
|
14 |
gr.HTML(title)
|
15 |
+
gr.HTML("This model is awesome for its size! It is only 20th the size of Chatgpt but is around 90% as good as Chatgpt. However, please don't rely on WizardLM to provide 100% true information as it might be wrong sometimes.")
|
16 |
chatbot = gr.Chatbot()
|
17 |
msg = gr.Textbox()
|
18 |
clear = gr.ClearButton([msg, chatbot])
|
19 |
+
temperature = gr.Slider(minimum=0.1, maximum=1.0, default=0.72, step=0.01, label="Temperature")
|
20 |
+
top_p = gr.Slider(minimum=0.1, maximum=1.0, default=0.73, step=0.01, label="Top-p")
|
21 |
+
top_k = gr.Slider(minimum=1, maximum=100, default=50, step=1, label="Top-k")
|
22 |
+
repeat_penalty = gr.Slider(minimum=0.1, maximum=2.0, default=1.1, step=0.1, label="Repeat Penalty")
|
23 |
|
24 |
def user(user_message, history):
|
25 |
return gr.update(value="", interactive=True), history + [[user_message, None]]
|
26 |
|
27 |
def bot(history):
|
|
|
28 |
user_message = history[-1][0]
|
|
|
|
|
|
|
29 |
tokens3 = llm2.tokenize(user_message.encode())
|
30 |
token4 = llm2.tokenize(b"\n\n### Response:")
|
31 |
tokens = tokens3 + token4
|
32 |
history[-1][1] = ""
|
33 |
count = 0
|
34 |
output = ""
|
35 |
+
for token in llm2.generate(tokens, top_k=top_k.value, top_p=top_p.value, temp=temperature.value, repeat_penalty=repeat_penalty.value):
|
36 |
text = llm2.detokenize([token])
|
37 |
output += text.decode()
|
38 |
count += 1
|