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="Arijit-09/RoadXpert_AI-v1")
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("Arijit-09/RoadXpert_AI-v1")
model = AutoModelForMultimodalLM.from_pretrained("Arijit-09/RoadXpert_AI-v1")
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

Logo

RoadXpert-AI-V1-109B MoE

Blog Post

The Cogito v2 LLMs are instruction tuned generative models. All models are released under an open license for commercial use.

  • Cogito v2 models are hybrid reasoning models. Each model can answer directly (standard LLM), or self-reflect before answering (like reasoning models).
  • The LLMs are trained using Iterated Distillation and Amplification (IDA) - an scalable and efficient alignment strategy for superintelligence using iterative self-improvement.
  • The models have been optimized for coding, STEM, instruction following and general helpfulness, and have significantly higher multilingual, coding and tool calling capabilities than size equivalent counterparts.
    • In both standard and reasoning modes, Cogito v2-preview models outperform their size equivalent counterparts on common industry benchmarks.
  • This model is trained in over 30 languages and supports long contexts (upto 10M tokens).

Evaluations

Here is the model performance on some standard industry benchmarks:

Logo

For detailed evaluations, please refer to the Blog Post.

Usage

Here is a snippet below for usage with Transformers:


License

This repository and the model weights are licensed under the Llama 4 Community License Agreement (Llama models' default license agreement). All fine-tuning, dataset curation, and optimization have been performed by Arijit Rakshit (2025) and others.

Contact

If you would like to reach out to our team, send an email to contact@deepcogito.com.

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

Model tree for Arijit-09/RoadXpert_AI-v1

Finetuned
(20)
this model
Quantizations
2 models