How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("image-text-to-text", model="JallyAI/Nomi-2-Mini")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
pipe(text=messages)
# Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM

processor = AutoProcessor.from_pretrained("JallyAI/Nomi-2-Mini")
model = AutoModelForMultimodalLM.from_pretrained("JallyAI/Nomi-2-Mini", device_map="auto")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Nomi 2.0 Mini

Introduction

Introducing Nomi 2 Mini, it was fine tuned on the same data as Nomi 2 and has a very short and efficient reasoning thanks to the RASV reasoning style. Nomi 2 Mini has only 2B parameters, half the parameters of the normal Nomi 2.

If you want to know more about Nomi 2 or RASV, checkout the Nomi 2 model card https://huggingface.com/JallyAI/Nomi-2

🌟 Key Features & Improvements

  • Architecture: Qwen-3.5-2B (requires just ~1.5 GB VRAM).
  • Multilingual Support: Can understand and generate text English and many other languages.
  • Efficiency: Get 100+ tokens/s on consumer hardware, like an RTX 4060. You can use Nomi 2 Mini with an context window of almost 200k tokens

🧠 Training Details

  • Base Model: Qwen/Qwen3.5-2B
  • Fine-tuning: SFT (Supervised Fine-Tuning).
  • Training Tool: Unsloth (for 4-bit optimized training).

😎 Cool License

Feel free to use or improve Nomi! Benchmark results are always welcome.


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

Model tree for JallyAI/Nomi-2-Mini

Finetuned
Qwen/Qwen3.5-2B
Finetuned
(322)
this model
Quantizations
2 models

Collection including JallyAI/Nomi-2-Mini