What Are LLMs?
Natural Language Processing
Natural Language Processing (NLP) is a branch of Artificial Intelligence that serves as the foundational technology that enables Large Language Models to understand and generate human language. Natural language is inherently ambiguous and contextual.
Consider the sentence
“I saw the man with the telescope”.
This could mean:
- you used a telescope to see the man,
- or you saw a man carrying a telescope.
At its core, NLP transforms words, phrases, and sentences into numerical representations called embeddings — high-dimensional vectors that capture semantic meaning and relationships between linguistic elements. Words with similar meanings end up close together in this space. This mathematical representation of language allows to perform some complex reasoning about text by manipulating these vectors through neural network operations.

The Large Language Model Revolution
Large Language Models represented a paradigm shift in learning language patterns from the Internet, books, and other vast text sources. Built on transformer architecture, LLMs focus on relevant parts of the input when processing words (tokens) or phrases, enabling understanding of long-range dependencies that earlier models missed. While you don’t need to understand the mathematics, the key insight is that LLMs work by finding patterns and relationships between concepts.
Let’s assume that we have this sentence:
The Jean Golding Institute is a central hub for data science and data-intensive research at the University of Bristol. We connect a multidisciplinary community of experts across the University and beyond.
Our chatbot will break the sentence in tokens of one or less words and assign each a numeric identifier. Then each of these tokens will have a mapping in the embedding space of our LLM model.

What makes LLMs “large” is their training scale, the exposure to hundreds of billions of words from diverse sources allows them to internalize grammar, vocabulary, world knowledge, and reasoning patterns. The training process is elegantly simple: given the sentence “Photosynthesis converts light energy into…”, the model has learned that “chemical energy” or “glucose” are far more likely completions than “jazz music.”
What Can LLMs Do?
LLMs are useful for a wide range of tasks relevant to your biology studies:
| Task | Example |
|---|---|
| Summarisation | “Summarise the key findings of this paper on CRISPR-Cas9” |
| Explanation | “Explain the lac operon to a first-year student” |
| Writing assistance | “Help me improve the clarity of my lab report introduction” |
| Brainstorming | “What are possible confounding variables in my experiment?” |
| Code help | “Help me write an R script to plot my species abundance data” |
AI should enhance your thinking, not replace it:
✅ “Help me identify gaps in my argument about natural selection”
✅ “Suggest ways to improve the structure of this paragraph I wrote”
✅ “What statistical test should I consider for this dataset, and why?”
❌ Asking AI to write your essay and submitting it as your own work
Read more about the University guidance on Generative AI in Education.
Limitations You Must Know
Hallucinations
LLMs can generate text that is plausible-sounding but factually wrong. This is called hallucination. A model might confidently cite a paper that does not exist, state an incorrect enzyme name, or invent a study result. In biology, where precision matters, this is a serious risk.
Bias
LLMs are trained on text written by humans — which reflects human biases. Scientific literature, for instance, has historically over-represented research from Western, high-income countries. An LLM may therefore reflect these blind spots in what it treats as “typical” or “normal.”
Subtle Errors
Beyond outright hallucinations, LLMs can make errors that are hard to spot without domain knowledge — misattributing a mechanism to the wrong organism, confusing similar gene names, or describing an outdated consensus.