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

tokenizer = AutoTokenizer.from_pretrained("agentlans/Llama3-vodka")
model = AutoModelForCausalLM.from_pretrained("agentlans/Llama3-vodka", device_map="auto")
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

Llama3-vodka

  • Input: text only
  • Output: text only

This model is like vodka. It aims to be pure, potent, and versatile.

  • Pure: shouldn't greatly affect Llama 3 Instruct's capabilities and writing style except for uncensoring
  • Potent: it's a merge of abliterated models - it should stay uncensored after merging and finetuning
  • Versatile: basically Llama 3 Instruct except uncensored - drink it straight, mix it, finetune it, and make cocktails

Please enjoy responsibly.

Safety and risks

  • Excessive consumption is bad for your health
  • The model can produce harmful, offensive, or inappropriate content if prompted to do so
  • The model has weakened safeguards and a lack of moral and ethical judgements
  • The user takes responsibility for all outputs produced by the model
  • It is recommended to use the model in controlled environments where its risks can be safely managed

Models used:

The above models were merged onto NousResearch/Meta-Llama-3-8B-Instruct using the "task arithmetic" merge method. The model merges and LoRA extractions were done using mergekit.

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

Model tree for agentlans/Llama3-vodka

Merges
1 model
Quantizations
1 model