img

Blog Details

img
Artificial Intelligence

NLP, LLMs & Generative AI: What Changed, and What Didn't

VMC ECAMPUS ADMIN / 14 Aug, 2026

Natural Language Processing (NLP) is the umbrella field for getting computers to work with human language — parsing it, classifying it, translating it, generating it. Large language models (LLMs) like GPT-class models are the most visible recent chapter of that field, but they didn't replace the fundamentals underneath NLP; they sit on top of them.

The building blocks still worth knowing

  • Tokenization — text has to be broken into units (words, subwords, or characters) before any model can process it. Tokenization choices quietly affect everything downstream, including LLM cost and context limits.
  • Embeddings — representing words or sentences as vectors of numbers, positioned so that similar meanings end up close together in that vector space. This idea underlies search, recommendation, and retrieval-augmented generation (RAG) systems built on top of LLMs today.
  • Classic tasks — sentiment analysis, spam detection, fake-news detection, named entity recognition. These remain genuinely useful, often don't need an LLM at all, and are far cheaper and more predictable to run at scale.

What LLMs actually added

Pre-LLM NLP generally needed a purpose-built model per task. LLMs, trained on enormous amounts of text, can perform many of these tasks reasonably well with just a well-written prompt and no task-specific training — which is genuinely new. What they didn't add is reliability by default: LLMs can state incorrect things with complete confidence ("hallucination"), and they inherit biases and gaps from their training data. Generative AI systems that matter in practice are usually LLMs paired with retrieval, validation, or human review — not an LLM used blind.

A practical way to think about it

Ask what the task actually needs. Classifying support tickets by urgency doesn't need a large generative model — a well-trained classical or lightweight model will be faster, cheaper, and more predictable. Drafting a first-pass response, summarizing a long document, or answering open-ended questions is where generative models earn their cost. Knowing the difference is a real, employable skill in itself.

The NLP, LLMs & Generative AI track in the Academy covers both layers deliberately — the classical NLP tasks that still power a huge share of production systems, and the generative techniques (prompting, retrieval, generation pipelines) that are newer but increasingly expected.

0 comments