How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="rombodawg/Rombos-LLM-V2.5-Qwen-7b")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("rombodawg/Rombos-LLM-V2.5-Qwen-7b")
model = AutoModelForCausalLM.from_pretrained("rombodawg/Rombos-LLM-V2.5-Qwen-7b", device_map="auto")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Rombos-LLM-V2.5-Qwen-7b

image/jpeg

Rombos-LLM-V2.5-Qwen-7b is a continues finetuned version of Qwen2.5-7B. I noticed recently that the Qwen team did not learn from my methods of continuous finetuning, the great benefits, and no downsides of it. So I took it upon myself to merge the instruct model with the base model myself using the Ties merge method

This version of the model shows higher performance than the original instruct and base models.

Quants:

GGUF: https://huggingface.co/bartowski/Replete-LLM-V2.5-Qwen-7b-GGUF

Benchmarks: (Coming soon)

Downloads last month
18
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with rombodawg/Rombos-LLM-V2.5-Qwen-7b.

Model tree for rombodawg/Rombos-LLM-V2.5-Qwen-7b

Base model

Qwen/Qwen2.5-7B
Finetuned
(2985)
this model
Finetunes
1 model
Merges
13 models
Quantizations
6 models

Space using rombodawg/Rombos-LLM-V2.5-Qwen-7b 1

Collection including rombodawg/Rombos-LLM-V2.5-Qwen-7b