PromptForge
AI Glossary

Models & architecture

Mixture of experts (MoE)

Also known as: moe, sparse model

Definition

Mixture of experts is an architecture where only a subset of the model activates per token. A router selects a few specialised sub-networks, so a very large model runs at the cost of a much smaller one.

In a dense model every parameter participates in every token. In an MoE model, layers contain many "expert" sub-networks and a learned router activates only a handful for each token.

The result is a favourable trade: total parameter count can be very large while active parameters per token stay modest. A model with 400 billion total parameters might activate only 30 billion per token, giving the knowledge capacity of the former at closer to the inference cost of the latter.

The catch is memory. All experts must be loaded even though few are used per token, so MoE models are cheap to run but expensive to host — which matters most for self-hosting decisions.

Related terms

Put this into practice

Understanding the term is step one. Our free courses and tools let you actually use it.

Glossary

Open-weights model

An open-weights model has publicly downloadable parameters, letting anyone run it on their own hardware. Llama, Mistral, Qwen and DeepSeek are prominent examples.

Glossary

Fine-tuning

Fine-tuning continues training a pre-trained model on your own examples to specialise its behaviour. It is the right tool for teaching consistent style, format or classification behaviour — not for adding knowledge.

Glossary

LoRA

LoRA (Low-Rank Adaptation) is a fine-tuning method that trains small adapter matrices instead of updating all model weights. It cuts the compute and storage cost of fine-tuning by orders of magnitude.

Prompt

Competitor Positioning Snapshot

Competitive research with citations. Use this before a positioning workshop, a pricing review, or writing comparison copy — the table format makes it easy to spot where a rival is genuinely stronger versus where they are just louder. Always run it on a search-grounded model like Perplexity so every claim carries a source and a date you can verify.

Article

GPT vs Claude vs Gemini: An Honest Comparison

A practical comparison of the three leading AI models across writing, coding, reasoning, long documents and cost — including which one to reach for on which task, and where each genuinely falls short.

Prompt

Structuring Image Prompts

Good image prompts (for DALL·E, Stable Diffusion / Hugging Face models, Midjourney-style tools) generally follow: Subject -> Setting -> Style/medium -> Lighting/mood -> Composition/technical details..