ms7

Full Transformers safetensors model based on mistralai/Mistral-7B-Instruct-v0.3.

Notes

  • This is a Mistral-family model, not a Cerberus-uncensored category label.
  • annihilate_merge_metadata.json records the local annihilation/export path.
  • This repo is a full model export, not a PEFT/LoRA adapter.
  • The model uses the standard Mistral chat template and built-in Transformers MistralForCausalLM loader.

Quick Load

from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "tjcrims0n/ms7"
tokenizer = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(repo, device_map="auto")

messages = [{"role": "user", "content": "Hello."}]
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True).to(model.device)
outputs = model.generate(inputs, max_new_tokens=80, eos_token_id=tokenizer.eos_token_id, pad_token_id=tokenizer.eos_token_id)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Smoke Test Notes

A local smoke test confirmed the repo loads with the built-in Mistral loader and produces coherent text. The arithmetic quirk 17 * 23 -> 381 also reproduces on the untouched cached base model, so it is not evidence of a broken annihilation export.

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

Model tree for tjcrims0n/ms7

Finetuned
(508)
this model
Quantizations
1 model