Email or username:

Password:

Forgot your password?
Simon Willison

Llama 3.2 is out, and it's a much more substantial release than the 3.1 to 3.2 version bump might indicate

Four new models, including Meta's first two vision models (11B and 90B) and two new text-only small models (1B and 3B)

My notes so far: simonwillison.net/2024/Sep/25/

4 comments
Simon Willison

You can try out the vision models on lmarena.ai/ by navigating to "Direct Chat" and then selecting those models from the dropdown menu

Stuart Maxwell

@simon That's impressive - I struggled to work out what the photo was. Had to zoom right in before I realised they were in water.

Simon Willison

I've been trying out the tiny Llama 3.2 1B model (a 1.3GB download - I used Ollama and ran "ollama run llama3.2:1b" to install it) and it is WILDLY impressive for a model of that size.

files-to-prompt **/*.py -c | llm -m llama3.2:1b --system 'describe this code'

I ran this against my entire github.com/simonw/djp codebase and the result I got was incomplete but still surprisingly useful gist.github.com/simonw/64c5f5b

Adam Johnson :django: :python:

@simon

Nice. The 1b model didn't understand some coding tasks I gave it, but I did find it fun to play a game with. It's so fast and fluid.

$ ollama run llama3.2:1b
>>> You are a fantasy Ogre. Respond with appropriate grunting and minimal language complexity. Adventurer says: "Who goes there?"
Grrraaah... Hsss... Ugggh. Grrr... *pounds chest*

>>> Adventurer says: "Stay back foul beast"
Rrrrraaagh! Hsssssss... GrrrRRRAAAAHHH!!! *growls and advances, snarling*

@simon

Nice. The 1b model didn't understand some coding tasks I gave it, but I did find it fun to play a game with. It's so fast and fluid.

$ ollama run llama3.2:1b
>>> You are a fantasy Ogre. Respond with appropriate grunting and minimal language complexity. Adventurer says: "Who goes there?"
Grrraaah... Hsss... Ugggh. Grrr... *pounds chest*

Go Up