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

tokenizer = AutoTokenizer.from_pretrained("ockerman0/AnubisLemonade-70B-v1")
model = AutoModelForCausalLM.from_pretrained("ockerman0/AnubisLemonade-70B-v1")
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

AnubisLemonade-70B-v1

This is a merge of pre-trained language models created using mergekit.

Merge Details

An experimental merge between Drummer's Anubis v1.1 and sophosympatheia's StrawberryLemonade v1.2 with the goal of finding a nice balance between each model's qualities.

Feedback is highly encouraged!

Recommended samplers are a Temperature of 1 and Min-P of 0.025, though feel free to experiment otherwise.

Merge Method

This model was merged using the NuSLERP merge method.

Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: /workspace/models/TheDrummer_Anubis-70B-v1.1
    parameters:
      weight: 0.65
  - model: /workspace/models/sophosympatheia_Strawberrylemonade-70B-v1.2
    parameters:
      weight: 0.35
merge_method: nuslerp
dtype: bfloat16
Downloads last month
10
Safetensors
Model size
71B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with ockerman0/AnubisLemonade-70B-v1.

Model tree for ockerman0/AnubisLemonade-70B-v1

Quantizations
3 models