Skip to main content
Back to Tags

Machine Learning

25 items tagged with "machine-learning"

Filter by type:

Glossaries11

Glossary

Large Language Model (LLM)

A large language model is a neural network trained on vast text corpora to predict the next token, enabling it to generate and understand natural language across many tasks.

Glossary

Token

A token is the basic unit of text an LLM processes, typically a word fragment, whole word, or character, produced by a tokenizer and mapped to a numeric ID.

Glossary

Tokenization

Tokenization is the process of splitting raw text into tokens that a model can map to numeric IDs, usually using a subword algorithm such as byte-pair encoding.

Glossary

Embedding

An embedding is a dense numeric vector that represents the meaning of text, an image, or other data so that similar items sit close together in vector space.

Glossary

Fine-Tuning

Fine-tuning is the process of further training a pretrained model on a smaller, task-specific dataset to specialize its behavior, style, or domain knowledge.

Glossary

Inference

Inference is the process of running a trained model on new inputs to produce outputs, as opposed to the training phase that creates the model.

Glossary

Training

Training is the process of adjusting a model's parameters from data so it learns to perform a task, typically by minimizing a loss function with gradient descent.

Glossary

Transformer

A transformer is a neural network architecture built around self-attention that processes sequences in parallel, forming the basis of modern large language models.

Glossary

Attention Mechanism

An attention mechanism lets a model weigh the relevance of different parts of its input when producing each output, focusing on the most pertinent tokens.

Glossary

Quantization

Quantization reduces the numeric precision of a model's weights and activations, shrinking memory use and speeding inference with limited accuracy loss.

Glossary

Foundation Model

A foundation model is a large model pretrained on broad data at scale that can be adapted, through fine-tuning or prompting, to a wide range of downstream tasks.