Language Models are Super Mario: Absorbing Abilities from Homologous Models as a Free Lunch
Paper • 2311.03099 • Published • 33
llm.create_chat_completion(
messages = [
{
"role": "user",
"content": "What is the capital of France?"
}
]
)This is quantized version of Luni/StarDust-12b-v2 created using llama.cpp
Just like with v1:
Both Mistral and ChatML should work though I had better results with ChatML: ChatML Example:
"""<|im_start|>user
Hi there!<|im_end|>
<|im_start|>assistant
Nice to meet you!<|im_end|>
<|im_start|>user
Can I ask a question?<|im_end|>
<|im_start|>assistant
"""
This model was merged using the DARE TIES merge method using Sao10K/MN-12B-Lyra-v3 as a base.
The following models were included in the merge:
Special thanks to the SillyTilly and myself for helping me find the energy to finish this.
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
Base model
mistralai/Mistral-Nemo-Base-2407
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/StarDust-12b-v2-GGUF", filename="", )