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

tokenizer = AutoTokenizer.from_pretrained("ChaoticNeutrals/Puppy_Purpose_0.69")
model = AutoModelForCausalLM.from_pretrained("ChaoticNeutrals/Puppy_Purpose_0.69")
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

Puppy Purpose 0.69

image/png

Say hello to your puppy princess, she is pawsitively pleased to play with you!

A combination of model merges and lora merges using my signature datasets. I'm not too sure how this one will turn out, I made it for my own usage, but it should serve others well too. This model is compatible with our Chaotic Neutrals Llama3 mmproj files. Good luck and have fun!

Downloads last month
6
Safetensors
Model size
8B params
Tensor type
F16
Β·
Inference Providers NEW
Input a message to start chatting with ChaoticNeutrals/Puppy_Purpose_0.69.

Model tree for ChaoticNeutrals/Puppy_Purpose_0.69

Finetuned
(3)
this model
Merges
2 models
Quantizations
2 models

Spaces using ChaoticNeutrals/Puppy_Purpose_0.69 9