Text Generation
Transformers
Safetensors
mistral
unsloth
trl
sft
conversational
text-generation-inference
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("rAIfle/Questionable-MN-bf16")
model = AutoModelForCausalLM.from_pretrained("rAIfle/Questionable-MN-bf16")
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
Questionable-MN
My last attempt (for now) at beating up Nemo. Done in several steps, but basically it's Nemo-Base, plus bigdata-pw/the-x-files, plus a small private set of RP data and a bit of c2 to finish it up. ChatML.
(Realized I forgot to make this one public, heh. Don't have the settings used for training this anymore, sorry. Anyway, it works. Use standard Nemo sampler settings and whatever sysprompt you feel good about, as usual.)
Quants:
- GGUF: Quant-Cartel/Questionable-MN-12B-iMat-GGUF (Cartel love)
- Downloads last month
- 13
Model tree for rAIfle/Questionable-MN-bf16
Base model
mistralai/Mistral-Nemo-Base-2407
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="rAIfle/Questionable-MN-bf16") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)