AI360Xpert

Learn AI & ML the Easy way

Concepts · Definitions · Insights · Interview Prep

Concepts

View all

Transformers, LLMs, RAG, Agents, and the generative AI stack

Data engineering, pipelines, and data-centric AI

Math

Coming soon

Linear algebra, calculus, probability for ML

Definitions

View all

Accuracy

The share of predictions a model gets right, usually written as a percentage. It's the simplest way to summarize how well a classifier is doing.

Analogy: It's a report-card percentage — 90% accuracy means 9 out of 10 calls were correct.

Related: loss, softmax

Activation Function

The little non-linear function each neuron applies to its input, letting a network learn curved, complex patterns instead of just straight lines. Without it, stacking layers would be pointless.

Analogy: The bend in the wire — without a kink, ten straight segments are still just one straight line.

Related: neural-network, softmax, gradient

Read the full concept

Attention

A mechanism that lets a model weigh which parts of the input matter most for each piece it's processing. Instead of treating every word equally, it focuses on the ones that are actually relevant.

Analogy: Like reading with a highlighter — you weight the important words and skim the rest.

Related: softmax, embedding

Read the full concept

Batch Size

The number of training examples a model looks at before it updates its weights once. Bigger batches give steadier updates but need more memory; smaller batches update more often and add helpful noise.

Analogy: It's how many flashcards you review before pausing to update your notes.

Related: epoch, gradient, loss

Context Window

The maximum amount of text — measured in tokens — a language model can consider at once, covering both your prompt and its reply. Go past it and the earliest tokens fall out of view.

Analogy: It's the model's desk space — only so much paper fits on top at one time.

Related: token, prompt, attention

Read the full concept

Cross-Validation

A way to test a model by splitting the data into several folds, training on most and testing on the rest, then rotating so every fold gets a turn as the test set. You get a sturdier estimate than a single split.

Analogy: Grading with several different pop quizzes instead of betting everything on one big exam.

Related: overfitting, underfitting, accuracy

Ready to dive in?

Explore our full library of concepts, definitions, and tutorials. Let's build something amazing.