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="Mogith/Llama-4-Scout-17B-16E-Instruct-Q8_0")
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("Mogith/Llama-4-Scout-17B-16E-Instruct-Q8_0")
model = AutoModelForMultimodalLM.from_pretrained("Mogith/Llama-4-Scout-17B-16E-Instruct-Q8_0", device_map="auto")
Quick Links
README.md exists but content is empty.
Downloads last month
126
GGUF
Model size
108B params
Architecture
llama4
Hardware compatibility
Log In to add your hardware

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for Mogith/Llama-4-Scout-17B-16E-Instruct-Q8_0