Spaces:
Runtime error
Runtime error
File size: 5,926 Bytes
4584177 33312f1 4584177 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
from peft import PeftModel
import transformers
import gradio as gr
from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer, BloomForCausalLM, GenerationConfig
from transformers.models.opt.modeling_opt import OPTDecoderLayer
from flask import Flask, jsonify, request
app = Flask(__name__)
BASE_MODEL = 'bigscience/bloomz-7b1-mt'
LORA_WEIGHTS = "BLOOM_VI_test"
model = AutoModelForCausalLM.from_pretrained(
BASE_MODEL,
torch_dtype=torch.float16,
device_map={"":0},
)
tokenizer = AutoTokenizer.from_pretrained(BASE_MODEL)
model.eval()
model = PeftModel.from_pretrained(model, LORA_WEIGHTS, torch_dtype=torch.float16)
model.half()
model = model.merge_and_unload()
#model.save_pretrained("BLOOM_VI_test")
#model.push_to_hub("xieyang233/BLOOM_VI")
history = []
def evaluate(
inputs,
temperature=0.1,
top_p=0.75,
top_k=40,
num_beams=4,
max_new_tokens=256,
**kwargs,
):
instruction = ""
for pair in history:
his_inputs = pair.get("inputs")
his_outputs = pair.get("outputs")
instruction += "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n#Instruction: {}\n#Response: {}\n".format(his_inputs, his_outputs)
instruction += "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n#Instruction: {}\n#Response:".format(inputs)
encodings = tokenizer(instruction, max_length=512, return_tensors="pt", truncation=True).to("cuda")
generation_config = GenerationConfig(
temperature=temperature,
top_p=top_p,
top_k=top_k,
num_beams=num_beams,
do_sample=True,
**kwargs,
)
outputs = model.generate(input_ids=encodings["input_ids"], generation_config=generation_config, max_new_tokens=max_new_tokens)
preds = tokenizer.decode(outputs[0])
preds = preds.split("#Response:")[-1].strip().replace("</s>", "")
item = {
"inputs": inputs.strip(),
"outputs": preds
}
history.append(item)
return preds
#prompt = generate_prompt(instruction, input)
#inputs = tokenizer(prompt, return_tensors="pt")
#input_ids = inputs["input_ids"].to(device)
'''
generation_config = GenerationConfig(
temperature=temperature,
top_p=top_p,
top_k=top_k,
num_beams=num_beams,
**kwargs,
)
with torch.no_grad():
generation_output = model.generate(
input_ids=input_ids,
generation_config=generation_config,
return_dict_in_generate=True,
output_scores=True,
max_new_tokens=max_new_tokens,
)
s = generation_output.sequences[0]
output = tokenizer.decode(s)
return output.split("#Response:")[1].strip()
'''
@app.route('/api/evalute', methods=['POST'])
def api_evaluate():
data = request.get_json()
print('request data : \n', data)
print()
inputs = data['Input']
response = evaluate(inputs)
return jsonify(result=response)
# Old testing code follows.
'''
#"Tell me about the president of Mexico in 2019."
"Kể cho tôi về Tổng thống Mexico năm 2019.",
#"Tell me about the king of France in 2019."
"Kể cho tôi về vua của Pháp vào năm 2019.",
#"List all Canadian provinces in alphabetical order."
"Danh sách các tỉnh của Canada theo thứ tự bảng chữ cái.",
#"Write a Python program that prints the first 10 Fibonacci numbers."
"Viết một chương trình Python in ra 10 số Fibonacci đầu tiên.",
#"Write a program that prints the numbers from 1 to 100. But for multiples of three print 'Fizz' instead of the number and for the multiples of five print 'Buzz'. For numbers which are multiples of both three and five print 'FizzBuzz'."
"Viết một chương trình in ra các số từ 1 đến 100. Nhưng đối với các số chia hết cho ba, in ra 'Fizz' thay vì số đó và đối với các số chia hết cho năm, in ra 'Buzz'. Đối với các số chia hết cả cho ba và năm, in ra 'FizzBuzz'.",
#"Tell me five words that rhyme with 'shock'."
"Cho tôi biết năm từ có vần điệu với từ 'shock'.",
#"Translate the sentence 'I have no mouth but I must scream' into Spanish."
"Dịch câu 'I have no mouth but I must scream' sang tiếng Tây Ban Nha là",
#"Count up from 1 to 500."
"Đếm từ 1 đến 500."
'''
if __name__ == "__main__":
# testing code for readme
gr.Interface(
fn=evaluate,
inputs=[
gr.components.Textbox(
lines=2, label="Input", placeholder="Tell me about BLOOM-VI."
),
gr.components.Slider(minimum=0, maximum=1, value=0.1, label="Temperature"),
gr.components.Slider(minimum=0, maximum=1, value=0.75, label="Top p"),
gr.components.Slider(minimum=0, maximum=100, step=1, value=40, label="Top k"),
gr.components.Slider(minimum=1, maximum=4, step=1, value=4, label="Beams"),
gr.components.Slider(
minimum=1, maximum=2000, step=1, value=256, label="Max tokens"
),
],
outputs=[
gr.components.Textbox(
lines=5,
label="Output",
)
],
title="🌲 🌲 🌲 BLOOM-VI",
description="BLOOM-VI is a 7b-parameter BLOOM model finetuned on Alpaca translated to Vietnamese.",
).launch(share=True)
'''
for instruction in [
#"Tell me about alpacas."
"Kể cho tôi về lạc đà Alpaca.",
"Đếm từ 1 đến 500.",
"Kể cho tôi về vua của Pháp vào năm 2019.",
"Write a Python program that prints the first 10 Fibonacci numbers."
]:
print("Instruction:", instruction)
print("Response:", evaluate(instruction))
print()
'''
|