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="Danielbrdz/Barcenas-31b-Fable")
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("Danielbrdz/Barcenas-31b-Fable")
model = AutoModelForMultimodalLM.from_pretrained("Danielbrdz/Barcenas-31b-Fable", 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

Barcenas 31b Fable

Basado en Gemma 4 31b it de Google y entranado con el dataset agentic-distill-fable-5-sft

Es mi modelo más grande y potente que he hecho hasta la fecha y entrenado con datos de alta calidad directamente de Claude Fable 5 para uso de agentes

Con está combinación se puede tener un LLM que se puede ejecutar una sola GPU y para uso agéntico de manera local y privado de manera eficiente, claro si tienes los requisitos de hardware


Barcenas 31b Fable

Based on Google's Gemma 4 31b it and trained with the agentic-distill-fable-5-sft dataset.

This is my largest and most powerful model to date, trained with high-quality data directly from Claude Fable 5 for agent use.

With this combination, you can have an LLM that can run on a single GPU and implement agentic use locally and privately, provided you meet the hardware requirements.

Made with ❤️ in Guadalupe, Nuevo Leon, Mexico 🇲🇽

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

Model tree for Danielbrdz/Barcenas-31b-Fable

Finetuned
(239)
this model
Merges
8 models
Quantizations
2 models

Dataset used to train Danielbrdz/Barcenas-31b-Fable