Chain-of-Thought CoT
A prompting technique that encourages AI to "think step by step" before answering. Instead of jumping straight to a conclusion, the model reasons through intermediate steps — significantly improving accuracy on math problems, logic puzzles, and complex questions.
Classification
A supervised learning task where the model assigns input data to predefined categories. Binary classification: spam vs. not spam. Multi-class: identify a handwritten digit (0–9). Real examples: sentiment analysis, image labeling, disease diagnosis.
CNN CNN
Convolutional Neural Network. A deep learning architecture designed for grid-like data (images, video). CNNs apply filters that detect edges, textures, and shapes across the image — then combine detections into higher-level features. Foundation of most computer vision systems.
Computer Vision CV
An AI field enabling computers to understand visual data — images, video, live camera feeds. Key tasks include object detection, face recognition, image segmentation, and optical character recognition (OCR). Powers self-driving cars, medical imaging, and security systems.
Context Window
The maximum number of tokens (words/characters) a model can "see" in a single prompt or conversation. Larger context windows allow models to reference earlier parts of long documents or conversations. GPT-4 Turbo supports ~128k tokens; Claude supports up to 200k.
Clustering
An unsupervised learning technique that groups similar data points together without predefined labels. K-means is a classic algorithm. Use cases: customer segmentation, anomaly detection, document grouping, and gene expression analysis.