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

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

IQ Test

image/png

A new model built on Undi's Unholy and my own intelligence dataset. The goal is to increase Llama 3's benchmarks and intelligence level while still retaining the uncensored nature that users crave.

This is just the first test, with many more to come.

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

Model tree for ChaoticNeutrals/IQ_Test_l3_8B

Finetuned
(1)
this model
Finetunes
1 model
Quantizations
5 models

Spaces using ChaoticNeutrals/IQ_Test_l3_8B 9