Simple Linear Regression — Estimating Reaction Velocity from Substrate Concentration¶
A first machine learning notebook, framed in the language of enzyme
kinetics. We will treat substrate concentration [S] as the input and
initial reaction velocity v₀ as the quantity to predict. The
definitions, formulas, and code stay the same for every learner; only
this story changes.
The story¶
You ran an enzyme assay at a range of substrate concentrations and
recorded the initial velocity in each well. From those past assay
points you have a list of ([S], v₀) pairs.
Your job in this notebook: learn a simple rule that turns a fresh
[S] into a predicted v₀, the same way a calibration line lets you
read concentration off an absorbance reading.
Glossary — your field ↔ ML¶
Mental bridge between enzyme kinetics and the ML vocabulary used below.
In this notebook, x is substrate concentration [S] (in mM) and
y is initial reaction velocity v₀ (in µM/s). Everything else is
just renamed enzymology.
| Your field | ML term | Short bridge |
|---|---|---|
[S], the controlled variable in your assay |
feature | The input the model reads. |
v₀, the measured velocity |
target | The quantity to predict. |
| Calibration wells used to fit a standard curve | training data | Points the model adjusts on. |
| Held-out replicates kept for QC | test data | Points the model never sees during fitting. |
| Splitting wells into "fit" and "QC" sets | train/test split | Protocol for honest evaluation. |
| The Michaelis–Menten functional form | model | The rule whose constants you tune. |
Vmax, Km from curve_fit |
parameters / weights | The numbers learning adjusts. |
| The blank / y-intercept offset | bias | The constant term of the prediction. |
A v₀ predicted for a fresh [S] |
prediction | Model output for new inputs. |
| (measured − fitted) at each well | residual | Per-point error after fitting. |
Sum of squared residuals minimised by curve_fit |
loss | Single number measuring total wrongness. |
| Mean of those squared residuals | mean squared error / MSE | Most common regression loss. |
| ∂(SSR)/∂(parameter) | gradient | Direction of steepest cost increase. |
Levenberg–Marquardt step inside curve_fit |
gradient descent | Tiny parameter updates that follow the gradient downhill. |
| Step size in your iterative fit | learning rate | How bold each update is. |
| One full pass through your wells | epoch | One sweep through training data. |
| A Hill curve hugging your noise | overfitting | Model fits noise, generalises poorly. |
| A linear fit on a clearly sigmoidal response | underfitting | Model too simple to catch the pattern. |
import numpy as np
import matplotlib.pyplot as plt
rng = np.random.default_rng(42)
1. Setting the scene¶
Each observation here is one well: an (x, y) pair where x is
[S] and y is v₀. The glossary above gives the unit mapping in
full. The next cell defines the ML vocabulary.
Core vocabulary¶
- feature — the input variable, here
x. - target — the quantity we want to predict, here
y. - A dataset is a collection of
(feature, target)pairs. - training data — the subset used to fit the model.
- test data — the subset held back to evaluate the model honestly.
- train/test split — the act of partitioning the dataset into training data and test data.
In your field¶
Here the feature x is substrate concentration [S] (mM) and
the target y is initial reaction velocity v₀ (µM/s). Your
training data is the calibration wells you used to fit the
standard curve; the test data is the QC replicates you keep
aside to check that the fit is honest. Splitting the plate into
"fit" and "QC" wells is a train/test split.
# Synthetic ground truth: y = 0.25 * x + 1.0 + small noise
true_slope = 0.25
true_intercept = 1.0
x_data = rng.uniform(10, 200, size=80)
noise = rng.normal(0, 3.0, size=x_data.shape)
y_data = true_slope * x_data + true_intercept + noise
What pattern do you see?¶
The cloud of points slopes upward — higher [S], higher v₀ — much
like the initial (low-substrate) limb of a Michaelis–Menten curve,
where the response is approximately linear. Our goal is to draw the
best straight line through this cloud so that for a new substrate
concentration we can read off a velocity estimate.
Go deeper with an LLM (optional — skip if you already know this)¶
Paste any prompt below into ChatGPT / Claude / Mistral, explore, then come back.
Prompt 1 — feature vs target in your assay
In machine learning, what is the difference between a "feature" and a
"target"? Apply the distinction to a Michaelis–Menten experiment where
I measure v₀ at several substrate concentrations. Which is the
feature, which is the target, and what would Vmax/Km be? Keep the
answer to ~5 minutes of reading so I can return to my notebook.
Prompt 2 — why hold out test data
Why do machine learning workflows split data into "training data" and
"test data" before fitting? Compare with reserving a few wells of a
calibration plate to QC the standard curve. Give one realistic
situation where skipping the train/test split would make me fool
myself. Keep the answer to ~5 minutes of reading so I can return to
my notebook.
2. The model — linear regression¶
A linear regression model is the rule
$$ \hat{y} = w \cdot x + b $$
where $x$ is the feature, $\hat{y}$ is the prediction, and $w$ and $b$ are numbers the model learns. They are called the model's parameters (or weights, with $b$ specifically called the bias). A small set of parameters that fits a lot of data — that is the whole idea of regression.
In your field¶
The slope w carries the units of v₀ per unit [S] (the linear
limb of Michaelis–Menten); the bias b is the y-intercept —
typically your blank or background velocity. The prediction
$\hat{y} = w \cdot x + b$ is the same shape as a Beer–Lambert
standard curve where you read concentration off a slope and an
intercept.
Worked example¶
With w = 0.24 and b = 1.1, for [S] = 100 mM the predicted
velocity is 0.24 · 100 + 1.1 = 25.1 µM/s. The shape is identical to
reading concentration from a Beer–Lambert standard curve: a slope, an
intercept, and a number you read off the line.
from sklearn.linear_model import LinearRegression
X = x_data.reshape(-1, 1) # sklearn expects a 2-D feature matrix
y = y_data
model = LinearRegression().fit(X, y)
learned_slope = float(model.coef_[0])
learned_intercept = float(model.intercept_)
learned_slope, learned_intercept
(0.25734906301152605, -0.15046939018604277)
The two numbers above are the learned parameters. Compare them
with the ground-truth slope (0.25) and intercept (1.0) — the
model has recovered the underlying rule from noisy data, the same way
a clean Michaelis–Menten fit recovers Vmax and Km from noisy v₀
measurements.
3. How good is the fit? — the loss¶
For each training point we compute the residual, the gap between the true target and the prediction:
$$ r_i = y_i - \hat{y}_i $$
Squaring and averaging gives the mean squared error (MSE), the most common loss for regression:
$$ \text{MSE} = \frac{1}{N} \sum_{i=1}^{N} (y_i - \hat{y}_i)^2 $$
A smaller loss means a better fit. "Training a model" is the search for parameters that minimise the loss.
In your field¶
A residual is (measured v₀ − fitted v₀) for one well. The
MSE is the average squared residual — the same quantity (up to
a constant) that scipy.optimize.curve_fit minimises when you fit
a Michaelis–Menten model with least_squares. A smaller loss
means a tighter standard curve.
y_pred = model.predict(X)
residuals = y - y_pred
mse = float(np.mean(residuals ** 2))
print(f"MSE = {mse:.3f}")
MSE = 7.687
Go deeper with an LLM (optional — skip if you already know this)¶
Prompt 1 — what loss really is
Explain what "loss" means in machine learning, focusing on MSE for
regression. Tie it to the sum of squared residuals that
scipy.optimize.curve_fit minimises when I fit a Michaelis–Menten
equation. Are the two ideas the same? Where do they differ? Keep the
answer to ~5 minutes of reading so I can return to my notebook.
Prompt 2 — residuals as a diagnostic
What can residuals tell me beyond the MSE itself? Use a dose–response
example where residuals fan out at high concentration. Keep the
answer to ~5 minutes of reading so I can return to my notebook.
4. Gradient descent — learning by tiny steps¶
sklearn solved for the best w, b in one shot using linear algebra.
For larger models we cannot do that, so we use gradient descent.
The gradient of the loss with respect to a parameter tells us which direction makes the loss grow. We step in the opposite direction. We repeat for many epochs (one epoch = one full pass over the training data), each time moving the parameters a small amount controlled by the learning rate.
In your field¶
Gradient descent is what curve_fit does inside its
Levenberg–Marquardt solver — nudge Vmax, nudge Km, look at how
SSR changed, repeat. The learning rate is the step size: too
small and the fit takes forever to converge; too large and you
overshoot and start oscillating around the minimum.
# From-scratch gradient descent for the same problem.
w, b = 0.0, 0.0 # start anywhere
learning_rate = 1e-6 # small steps so the descent is visible
epochs = 8000
history = []
for epoch in range(epochs):
y_hat = w * x_data + b
error = y_hat - y_data # shape (N,)
grad_w = 2 * np.mean(error * x_data)
grad_b = 2 * np.mean(error)
w -= learning_rate * grad_w
b -= learning_rate * grad_b
history.append(np.mean(error ** 2))
print(f"learned w = {w:.3f}, b = {b:.3f}")
print(f"final MSE = {history[-1]:.3f}")
learned w = 0.256, b = 0.001 final MSE = 7.692
# Loss falling — like χ² shrinking across iterations of curve_fit.
# Log-scale on the y-axis spreads the descent across the whole plot,
# so we can see the slow grind that follows the initial big drop.
plt.figure(figsize=(6, 4))
plt.semilogy(history)
plt.xlabel("epoch")
plt.ylabel("MSE (loss, log scale)")
plt.title("Loss curve during gradient descent")
plt.grid(True, which="both", alpha=0.3)
plt.show()
Why this matters¶
Every modern deep-learning model is trained with some flavour of
gradient descent. The learning rate controls how bold each
step is: too small and training crawls; too large and it overshoots.
The Levenberg–Marquardt step inside curve_fit is a close cousin —
a guided walk down the loss surface, one parameter update at a time.
Go deeper with an LLM (optional — skip if you already know this)¶
Prompt 1 — gradient descent intuition
Explain gradient descent to me as a biochemist. Walk through one
iteration on a simple loss surface — what is the gradient, why we
step in its negative direction, what the learning rate controls —
using an analogy to titrating a putative Km value to minimise SSR.
Keep the answer to ~5 minutes of reading so I can return to my
notebook.
Prompt 2 — when learning rate goes wrong
What happens to gradient descent if the learning rate is too small,
or too large? Show me a small numerical example with a quadratic
loss and relate it to step-size choices in iterative curve fitters.
Keep the answer to ~5 minutes of reading so I can return to my
notebook.
5. Honest evaluation — train/test split¶
A model that memorises the training data is not useful. To check whether it has truly learned the pattern, we hide some data during training and only look at it at the end. That hidden portion is the test data.
- Underfitting: the model is too simple to capture the pattern; loss is high on both training data and test data.
- Overfitting: the model has memorised noise; training loss is low but test loss is high.
In your field¶
Overfitting here would be a Hill curve that hugs every noisy well perfectly but mis-predicts a fresh assay run. Underfitting is fitting a straight line to a clearly sigmoidal dose–response. Holding back test data is the same instinct as reserving a few QC wells before fitting your standard curve.
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.25, random_state=0
)
m = LinearRegression().fit(X_train, y_train)
train_mse = float(np.mean((y_train - m.predict(X_train)) ** 2))
test_mse = float(np.mean((y_test - m.predict(X_test)) ** 2))
print(f"train MSE = {train_mse:.3f}")
print(f" test MSE = {test_mse:.3f}")
train MSE = 7.941 test MSE = 7.144
Try this yourself¶
- Re-run the data-generation cell with a larger
noisestandard deviation — think noisier instrument or shorter integration time. What happens to the MSE? To the recovered slope? - Set the learning rate to
1e-3— equivalent to taking giant steps in your iterative fit. Does training still converge? Why or why not? - Reduce the dataset to the first 10 points, as if your calibration plate had only ten standards. Compare train MSE and test MSE — do you see overfitting?
Recap — vocabulary you now own¶
feature, target, training data, test data, train/test split, model, parameters, weights, bias, prediction, residual, loss, mean squared error, MSE, gradient, gradient descent, learning rate, epoch, overfitting, underfitting.
Up next: a small neural network that predicts something a straight line cannot — binding affinity from molecular descriptors.