added codeqwen inference code
Browse files- app.py +42 -59
- requirements.txt +20 -1
app.py
CHANGED
|
@@ -1,64 +1,47 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
messages.append({"role": "user", "content": val[0]})
|
| 23 |
-
if val[1]:
|
| 24 |
-
messages.append({"role": "assistant", "content": val[1]})
|
| 25 |
-
|
| 26 |
-
messages.append({"role": "user", "content": message})
|
| 27 |
-
|
| 28 |
-
response = ""
|
| 29 |
-
|
| 30 |
-
for message in client.chat_completion(
|
| 31 |
-
messages,
|
| 32 |
-
max_tokens=max_tokens,
|
| 33 |
-
stream=True,
|
| 34 |
temperature=temperature,
|
| 35 |
top_p=top_p,
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
"""
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
step=0.05,
|
| 57 |
-
label="Top-p (nucleus sampling)",
|
| 58 |
-
),
|
| 59 |
-
],
|
| 60 |
)
|
| 61 |
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
demo.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
import transformers
|
| 3 |
+
|
| 4 |
+
# Load the model and tokenizer
|
| 5 |
+
model_name = "Qwen/CodeQwen1.5-7B-Chat"
|
| 6 |
+
tokenizer = transformers.AutoTokenizer.from_pretrained(model_name)
|
| 7 |
+
model = transformers.AutoModelForCausalLM.from_pretrained(model_name, device_map="auto", torch_dtype="auto")
|
| 8 |
+
max_new_tokens:int=2048
|
| 9 |
+
do_sample:bool=True
|
| 10 |
+
num_beams:int=1
|
| 11 |
+
temperature:float=0.5
|
| 12 |
+
top_p:float=0.95
|
| 13 |
+
top_k:float=40
|
| 14 |
+
repetition_penalty:float=1.1
|
| 15 |
+
pipe = transformers.pipeline(
|
| 16 |
+
"text-generation",
|
| 17 |
+
model=model,
|
| 18 |
+
tokenizer=tokenizer,
|
| 19 |
+
max_new_tokens=max_new_tokens,
|
| 20 |
+
do_sample=do_sample,
|
| 21 |
+
num_beams=num_beams,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
temperature=temperature,
|
| 23 |
top_p=top_p,
|
| 24 |
+
top_k=top_k,
|
| 25 |
+
repetition_penalty=repetition_penalty,
|
| 26 |
+
)
|
| 27 |
+
|
| 28 |
+
def generate_response(input_text):
|
| 29 |
+
messages = [
|
| 30 |
+
{
|
| 31 |
+
"role": "system", "content": "You are a helpful coding chatbot. You will answer the user's questions to the best of your ability.",
|
| 32 |
+
"role": "user", "content": input_text,
|
| 33 |
+
},
|
| 34 |
+
]
|
| 35 |
+
return pipe(messages)[0]['generated_text'][-1]['content'].replace("\\n", "\n")
|
| 36 |
+
|
| 37 |
+
# Define the Gradio interface
|
| 38 |
+
iface = gr.Interface(
|
| 39 |
+
fn=generate_response,
|
| 40 |
+
inputs="text",
|
| 41 |
+
outputs="text",
|
| 42 |
+
title="Artigenz Coder - 6.7B Model",
|
| 43 |
+
description="A code-generation model from Artigenz. Enter a prompt to get code suggestions or completions."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
)
|
| 45 |
|
| 46 |
+
# Launch the interface
|
| 47 |
+
iface.launch()
|
|
|
requirements.txt
CHANGED
|
@@ -1 +1,20 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
certifi==2024.8.30
|
| 2 |
+
charset-normalizer==3.4.0
|
| 3 |
+
filelock==3.16.1
|
| 4 |
+
fsspec==2024.10.0
|
| 5 |
+
huggingface-hub==0.25.2
|
| 6 |
+
idna==3.10
|
| 7 |
+
numpy==2.1.3
|
| 8 |
+
packaging==24.1
|
| 9 |
+
PyYAML==6.0.2
|
| 10 |
+
regex==2024.11.6
|
| 11 |
+
requests==2.32.3
|
| 12 |
+
safetensors==0.4.5
|
| 13 |
+
tokenizers==0.20.3
|
| 14 |
+
tqdm==4.67.0
|
| 15 |
+
transformers==4.46.2
|
| 16 |
+
typing_extensions==4.12.2
|
| 17 |
+
urllib3==2.2.3
|
| 18 |
+
--find-links https://download.pytorch.org/whl/torch_stable.html
|
| 19 |
+
torch
|
| 20 |
+
accelerate>=0.26.0
|