Text Generation
Transformers
TensorBoard
Safetensors
olmo3
dpo
trl
conversational
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="ConicCat/Role-mo-V2-7B")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("ConicCat/Role-mo-V2-7B")
model = AutoModelForCausalLM.from_pretrained("ConicCat/Role-mo-V2-7B")
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

Model Card for ConicCat/Role-mo-V2-7B

This model is a fine-tuned version of allenai/Olmo-3.1-32B-Instruct using humanline dpo to improve writing, roleplay, and chat capabilities.

Sampler Settings

  • Chatml template
  • I recommend .7 temp and (optionally) 1.05 rep pen.

Datasets

  • nvidia/HelpSteer3 to maintain general capabilites and improve chat performance.
  • ConicCat/Lamp-P-Prompted for improved prose and slop reduction.
  • A C2 based human prompt / synthetic response roleplay preference dataset.

Changelog

  • V0 > V1: Changed preference data construction to improve margins between the chosen and rejected responses.
  • V1 > V2: More optimal hyperparameters; lowering lr and increasing bsz allows for stable training with lower beta.
Downloads last month
14
Safetensors
Model size
7B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for ConicCat/Role-mo-V2-7B

Finetuned
(283)
this model
Quantizations
2 models

Datasets used to train ConicCat/Role-mo-V2-7B

Collection including ConicCat/Role-mo-V2-7B