Edit model card

DrKlaus-7B

image/webp

DrKlaus-7B is a SFT model made with AutoSloth by macadeliccc

Process

πŸ’» Usage

!pip install -qU transformers

from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline

model = "macadeliccc/DrKlaus-7B"
tokenizer = AutoTokenizer.from_pretrained(model)

# Example prompt
prompt = "Your example prompt here"

# Generate a response
model = AutoModelForCausalLM.from_pretrained(model)
pipeline = pipeline("text-generation", model=model, tokenizer=tokenizer)
outputs = pipeline(prompt, max_length=50, num_return_sequences=1)
print(outputs[0]["generated_text"])
Downloads last month
0
Safetensors
Model size
7.24B params
Tensor type
BF16
Β·