Aratako/Ministral-3-3B-Instruct-2512-TextOnly

🤗 Hugging Face sourceapache-2.03.4B params3.8 GBsafetensors✓ 2 checksumsupdated today
Submit in one command

Run it next to your model folder. It makes the torrent, checks your files against Hugging Face, and submits it. You just start seeding and paste your key from your account. It only reads your files and never changes them. Read the script first if you like.

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo Aratako/Ministral-3-3B-Instruct-2512-TextOnly ./model-folder
Needs a seeder →

Ministral-3-3B-Instruct-2512-TextOnly

This model is the text-only component extracted from the Vision-Language Model mistralai/Ministral-3-3B-Instruct-2512.

Usage

You can load this model using AutoModelForCausalLM as shown below:

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "Aratako/Ministral-3-3B-Instruct-2512-TextOnly"

tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    device_map="cuda",
)

messages = [
    {
        "role": "user",
        "content": "Tell me a joke about computers.",
    },
]

input_ids = tokenizer.apply_chat_template(messages, return_tensors="pt").to("cuda")

output = model.generate(
    input_ids, max_new_tokens=512, pad_token_id=tokenizer.eos_token_id
)

decoded_output = tokenizer.decode(
    output[0][len(input_ids[0]) :], skip_special_tokens=True
)
print(decoded_output)

Original Model Information

This is a weight extraction of the original VLM. For detailed benchmarks, licensing details, and architectural information, please refer to the original model card: mistralai/Ministral-3-3B-Instruct-2512