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

pipe = pipeline("text-generation", model="mymaia/Magiq-3")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForMultimodalLM

tokenizer = AutoTokenizer.from_pretrained("mymaia/Magiq-3")
model = AutoModelForMultimodalLM.from_pretrained("mymaia/Magiq-3")
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
Magiq 3 Logo

Model Card for Magiq 3

Magiq 3 as a Mixture of Experts (MoE)

The MoE architecture of Magiq 3 combines the specialized capabilities of MAGIQ Core-0, MAGIQ Translator-0, and MAGIQ Logic-0 into a cohesive, intelligent framework.

This structure enables MAIA to offer unparalleled assistance, characterized by deep understanding, linguistic flexibility, and logical reasoning. Magiq3's MoE design not only optimizes performance across different tasks but also ensures that MAIA's interactions are as human-like and natural as possible, catering to a wide range of user needs and preferences.

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

Model tree for mymaia/Magiq-3

Finetuned
(1092)
this model
Quantizations
3 models