HomeModelsLlama-4-Scout-17B
M

Meta/Llama-4-Scout-17B

Meta multimodal model - text, images, video. Scout variant optimized for instruction following.

text-generationmultimodalvision17B params
1.2M downloads 5,400 likes Updated 1 week ago

Quick Start

# Install transformers
pip install transformers

# Load the model
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("Meta/Llama-4-Scout-17B")
tokenizer = AutoTokenizer.from_pretrained("Meta/Llama-4-Scout-17B")

# Generate
inputs = tokenizer("Hello, I am", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs[0]))

Promote your model on Zoools

Featured models get priority placement in search, trending sections, and recommendations across Zoools.

View Promotion Plans

Related Models