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="DoppelReflEx/Mimicore-GreenSnake-22B")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("DoppelReflEx/Mimicore-GreenSnake-22B")
model = AutoModelForCausalLM.from_pretrained("DoppelReflEx/Mimicore-GreenSnake-22B")
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

What is this?

Another 22B model. Decent, I think? I tested with Q4_K_S, so can't tell the real performance of it. The choice is your! Enjoy!

Template: Mistral, specific is Mistral V3, don't use V3-Tekken. If you occurs of model start talking for you, you should use ChatML.

Merge Detail

### Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: knifeayumu/Cydonia-v1.2-Magnum-v4-22B
  - model: Steelskull/MSM-MS-Cydrion-22B
merge_method: slerp
base_model: knifeayumu/Cydonia-v1.2-Magnum-v4-22B
parameters:
  t: [0.1, 0.2, 0.4, 0.6, 0.6, 0.4, 0.2, 0.1]
dtype: bfloat16
tokenizer_source: base

Downloads last month
2
Safetensors
Model size
22B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for DoppelReflEx/Mimicore-GreenSnake-22B

Collection including DoppelReflEx/Mimicore-GreenSnake-22B