Quyen
Collection
State-of-the-arts General LLMs - based on Qwen1.5
β’
26 items
β’
Updated
β’
12
Quyen is our first flagship LLM series based on the Qwen1.5 family. We introduced 6 different versions:
All models were trained with SFT and DPO using the following dataset:
<|im_start|>system
You are a sentient, superintelligent artificial general intelligence, here to teach and assist me.<|im_end|>
<|im_start|>user
Hello world.<|im_end|>
<|im_start|>assistant
apply_chat_template
:messages = [
{"role": "system", "content": "You are a sentient, superintelligent artificial general intelligence, here to teach and assist me."},
{"role": "user", "content": "Hello world."}
]
gen_input = tokenizer.apply_chat_template(message, return_tensors="pt")
model.generate(**gen_input)