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

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

Model merge, I tested with Q4_K_S, so maybe that not final result. Overall, decent model, not too good or too bad. Still good for play RP, ERP if you have 16-24GB VRAM.

Recommend CHATML, Mistral V3 instruct. Or you can find what is the best for you. Have fun!

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
   parameters:
     density: 0.9
     weight: 1
 - model: Steelskull/MSM-MS-Cydrion-22B
   parameters:
     density: 0.6
     weight: 0.8
merge_method: dare_ties
base_model: TheDrummer/Cydonia-22B-v1.3
tokenizer_source: base

Downloads last month
1
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-WhiteSnake-22B

Collection including DoppelReflEx/Mimicore-WhiteSnake-22B