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

tokenizer = AutoTokenizer.from_pretrained("PotatoOff/Michel-13B")
model = AutoModelForCausalLM.from_pretrained("PotatoOff/Michel-13B")
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

Michel - 13B

A Uncensored fine tune model general tasks focused of NousHermes-Llama2-13B.
With the help of my team.

Quants

Michel Exl2 Quant
Michel GGUF Quant

Useful

  • Uses Llama2 prompt template.
  • Next one will be more interesting :}

I had good results with this parameters:

  • temperature: 0.8
  • top_p: 0.75
  • min_p: 0
  • top_k: 0
  • repetition_penalty: 1.05

General Usecase Test

BenchMarks on OpenLLM Leaderboard

More details: Michel-13B OpenLLM BenchMarks
image/png

Thank you h2m for the compute

Have Fun :)

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

Model tree for PotatoOff/Michel-13B

Quantizations
1 model

Collection including PotatoOff/Michel-13B