How to Use Open Models

AI Product Engineering
Systems
Which open models are good at what, and the memory math for the hardware they need.
Author

Hamel Husain

Published

July 24, 2026

This note covers Zach Mueller’s session in the AI Product Engineering series.

Zach surveys open model families and shares opinions from daily use:

Before picking a model, estimate whether it fits your hardware with Weights (GB) = Params (B) x N x 0.5, where N is 1 for 4-bit, 2 for 8-bit, 4 for 16-bit, and 8 for 32-bit. EleutherAI’s transformer math post has the precise accounting.

Zach's slide showing the formula Weights (GB) equals Parameters (B) times N times 0.5

For example, a 27B model at 4-bit needs about 13.5 GB, which fits a 16 GB card after you leave room for activations and the KV cache.

Zach cautions against sending private code through third-party routers like OpenRouter, since requests can land on hosts with varying data privacy. He also warns about model routers that switch providers mid-session, which may invalidate caching. If you use a router, measure its effect on latency and cost with evals rather than guessing.

For rented GPUs, Zach prefers a single top-tier node over a multi-node H100 cluster. The H100s cost only 10 to 20 percent less, and multi-node serving adds interconnect bottlenecks.

Watch the full session below.


To find out whether an open model is good enough for your task, see the AI Evals course, a live cohort with hands-on exercises and office hours.