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="maxcurrent/NeuralMonarchCoderPearlBeagle-T3Q-Mistral-Orca-Math-DPO-7b")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("maxcurrent/NeuralMonarchCoderPearlBeagle-T3Q-Mistral-Orca-Math-DPO-7b")
model = AutoModelForCausalLM.from_pretrained("maxcurrent/NeuralMonarchCoderPearlBeagle-T3Q-Mistral-Orca-Math-DPO-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

NeuralMonarchCoderPearlBeagle-T3Q-Mistral-Orca-Math-DPO-7b

This is a merge of multiple models brought together using the awesome VortexMerge kit.

Let's see what we've got in this merge:

๐Ÿงฉ Configuration

models:
  - model: mlabonne/NeuralBeagle14-7B
    # no parameters necessary for base model
  - model: chihoonlee10/T3Q-Mistral-Orca-Math-DPO
    parameters:
      density: 0.5
      weight: 0.5
  - model: eldogbbhed/NeuralMonarchCoderPearlBeagle
    parameters:
      density: 0.5
      weight: 0.3
merge_method: ties
base_model: mlabonne/NeuralBeagle14-7B
parameters:
  normalize: true
  int8_mask: true
dtype: float16
Downloads last month
6
Safetensors
Model size
7B params
Tensor type
F16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for maxcurrent/NeuralMonarchCoderPearlBeagle-T3Q-Mistral-Orca-Math-DPO-7b

Quantizations
1 model