import MLDatasets
using Images, Makie, CairoMakie
using Distances
using Ripserer, PersistenceDiagrams
using StatsBase: mean
import Plots;
using DataFrames, FreqTables, PrettyTables
using Flux, ProgressMeter
11 Classifying hand-written digits
“Thank God for giving you a glimpse of heaven, but do not imagine yourself a bird because you can flap your wings.”
— Alfred de Musset, in “The confession of a child of the century”
In this tutorial, we will try to classify hand-written digits using the tools seen in previous chapters.
11.1 Loading packages
11.2 The dataset
MNIST is a dataset consisting of 70.000 hand-written digits. Each digit is a 28x28 grayscale image, that is: a 28x28 matrix of values from 0 to 1. To get this dataset, run
= 10_000
n_train = MLDatasets.MNIST(split=:train)[:];
mnist_digits, mnist_labels = mnist_digits[:, :, 1:n_train]
mnist_digits = mnist_labels[1:n_train]; mnist_labels
If the console asks you to download some data, just press y
.
Notice that we only get the first n_train
images so this notebook doesn’t take too much time to run. You can increase n_train
to 60000 if you like to live dangerously and have enough RAM memory.
Next, we transpose the digits and save them in a vector
= [mnist_digits[:, :, i]' |> Matrix for i ∈ 1:size(mnist_digits)[3]]; figs
The first digit, for example, is the following matrix:
1] figs[
28×28 Matrix{Float32}:
0.0 0.0 0.0 0.0 0.0 0.0 … 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 … 0.498039 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.25098 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 … 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
⋮ ⋮ ⋱ ⋮
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 … 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.215686 0.67451 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.533333 0.992157 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 … 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
We can see a mosaic with the first 10^2 digits
= 10
n = [fig .|> Gray for fig in figs[1:n^2]]
figs_plot mosaicview(figs_plot, nrow = n, rowmajor = true)
11.3 Preparing for war
What topological tools can be useful to distinguish between different digits?
Persistence homology with Vietoris-Rips filtration won’t be of much help: all digits are connected, so the 0-persistence is useless; for the 1-dimensional persistence,
- 1, 3, 5, 7 do not contain holes;
- 2 and 4 sometimes contain one hole (depending on the way you write it);
- 0, 6, 9 contain one hole each;
- 8 contains two holes.
What if we starting chopping the digits with sublevels of some functions? The excentricity function is able to highlight edges. Doing a sublevel filtration with the excentricity function will permit us to separate digits by the amount of edges they have. So 1 and 3 and 7, for example, will have different persistence diagrams.
11.3.1 From square matrices to points in the plane
In order to calculate the excentricity, we need to convert the “image digits” (28x28 matrices) to points in \(\mathbb{R}^2\) (matrices with 2 columns, one for each dimension, which we will call pointclouds). A simple function can do that:
function img_to_points(img, threshold = 0.3)
= findall(x -> x >= threshold, img)
ids = getindex.(ids, [1 2])
pts end;
Notice that we had to define a threshold: coordinates with values less than the threshold are not considered.
Let’s also define a function to plot a digit:
function plot_digit(fig, values = :black)
= img_to_points(fig)
pt = Figure();
f = Makie.Axis(f[1, 1], autolimitaspect = 1, yreversed = true)
ax scatter!(ax, pt[:, 2], pt[:, 1]; markersize = 40, marker = :rect, color = values)
if values isa Vector{<:Real}
Colorbar(f[1, 2])
end
fend;
We can see that it works as expected
= figs[3]
fig heatmap(fig)
but the image is flipped. This is easily fixed:
heatmap(fig |> rotr90)
11.3.2 Excentricity
Getting into details: the excentricity of a metric space \((X, d)\) is a measure of how far a point is from the “center”. It is defined as follows for each \(x \in X\):
\[ e(x) = \sum_{y \in X} \frac{d(x, y)}{N} \]
where \(N\) is the amount of points of \(X\).
Define a function that takes a digit in \(\mathbb{R}^2\) and return the excentricity as an 28x28 image
function excentricity(fig)
= img_to_points(fig)
pt = pairwise(Euclidean(), pt')
dists = [mean(c) for c ∈ eachcol(dists)]
excentricity = zeros(28, 28)
exc_matrix
for (row, (i, j)) ∈ enumerate(eachrow(pt))
= excentricity[row]
exc_matrix[i, j] end
return exc_matrix
end;
We store all the excentricities in the excs
vector
= excentricity.(figs); excs
and plot a digit with it’s corresponding excentricity
= 5
i = figs[i]
fig = excs[i]
exc heatmap(exc |> rotr90)
Looks good! Time to chop it.
11.3.3 Persistence images
Now we calculate all the persistence diagrams using sublevel filtration. This can take some seconds. Julia is incredibly fast, but does not perform miracles (yet!).
= map(excs) do ex
pds = maximum(ex)
m = m .- ex
ex ripserer(Cubical(ex), cutoff = 0.5)
end;
We check the first one
= pds[i]
pd |> barcode pd
Compare it with the corresponding heatmap above. There are 3 main edges (and one really small one). It seems ok!
We can see the “step-by-step” creation of these connected components in the following mosaic.
= range(minimum(exc), maximum(exc), length = 25) |> reverse
r = map(r) do v
figs_filtration replace(x -> x ≤ v ? 0 : 1, exc) .|> Gray
end
mosaicview(figs_filtration..., rowmajor = true, nrow = 5, npad = 20)
Now we create the persistence images of all these barcodes in dimension 0 and 1. We pass the entire collection of barcodes to the PersistenceImage
function, and it will ensure that all of them are comparable (ie. are on the same grid).
= pds .|> first
pds_0 = pds .|> last
pds_1 = PersistenceImage(pds_0; sigma = 1, size = 8)
imgs_0 = PersistenceImage(pds_1; sigma = 1, size = 8); imgs_1
The persistence images look ok too:
plot(
Plots.barcode(pds[i])
plot(pds[i]; persistence = true)
, Plots.heatmap(imgs_0(pds[i][1]); aspect_ratio=1)
, Plots.heatmap(imgs_1(pds[i][2]); aspect_ratio=1)
, Plots.= (2, 2)
, layout )
Top left: the barcode of a digit with respect to sublevels using the excentricity function. Top right: the corresponding persistence diagram. Bottom: 0 and 1 dimensional persistence images. They create a pixelated view of the persistence diagram, using a gaussian blur.
11.4 Fitting a model
In order to use these persistence images in a machine learning model, we first need to vectorize them, ie, transform them into a vector. Machine learning models love vectors! The easist way is to just concatenate the persistence images as follows:
function concatenate_pds(imgs_0, pds_0, imgs_1, pds_1)
= [
persims vec(imgs_0(pds_0[i])); vec(imgs_1(pds_1[i])) ] for i in 1:length(pds)
[
]
= reduce(hcat, persims)'
X
Xend
= concatenate_pds(imgs_0, pds_0, imgs_1, pds_1)
X = mnist_labels .|> string; y
We can see that X
is a matrix with 10000 rows (the amount of digits) and 128 columns (the persistence images concatenated).
It was also important to convert the mnist_labels
to strings, because we want to classify the digits (and not do a regression on them).
We now have a vector for each image. What can we do? We need a model that takes a large vector of numbers and try to predict the digit. Neural networks are excellent in finding non-linear relations on vectors. Let’s try one!
Create the layers
function nn_model(X)
= Chain(
model Dense(size(X)[2] => 64)
Dense(64 => 10)
,
)end
= nn_model(X) model
Chain( Dense(128 => 64), # 8_256 parameters Dense(64 => 10), # 650 parameters ) # Total: 4 arrays, 8_906 parameters, 35.039 KiB.
the loader
= Flux.onehotbatch(y, 0:9 .|> string)
target = Flux.DataLoader((X' .|> Float32, target), batchsize=32, shuffle=true); loader
the optimiser
= Flux.setup(Flux.Adam(0.01), model); optim
and train it
@showprogress for epoch in 1:100
train!(model, loader, optim) do m, x, y
Flux.= m(x)
y_hat logitcrossentropy(y_hat, y)
Flux.end
end;
The predictions can be made with
= model(X' .|> Float32)
pred_y = Flux.onecold(pred_y, 0:9 .|> string); pred_y
And the accuracy
= sum(pred_y .== y) / length(y)
accuracy = round(accuracy * 100, digits = 2)
accuracy println("The accuracy on the train set was $accuracy %!")
The accuracy on the train set was 70.3 %!
Not bad, taking into account that we only used the excentricity sublevel filtration.
The confusion matrix is the following:
= freqtable(y, pred_y) tbl
10×10 Named Matrix{Int64}
Dim1 ╲ Dim2 │ 0 1 2 3 4 5 6 7 8 9
────────────┼───────────────────────────────────────────────────────────
0 │ 917 0 19 6 2 18 19 2 12 6
1 │ 0 1086 5 2 4 8 0 22 0 0
2 │ 20 26 523 34 124 50 20 78 82 34
3 │ 7 57 43 622 21 122 13 127 16 4
4 │ 0 2 64 4 773 11 2 109 8 7
5 │ 8 64 46 181 9 384 17 131 5 18
6 │ 15 4 10 4 6 5 739 70 10 151
7 │ 2 51 29 17 140 25 56 748 2 0
8 │ 13 5 72 8 25 0 6 7 776 32
9 │ 12 1 21 9 16 10 330 104 13 462
Calculating the proportion of prediction for each digit, we get
round2(x) = round(100*x, digits = 1)
function prop_table(y1, y2)
= freqtable(y1, y2)
tbl = prop(tbl, margins = 1) .|> round2
tbl_prop
tbl_propend
= prop_table(y, pred_y) tbl_p
10×10 Named Matrix{Float64}
Dim1 ╲ Dim2 │ 0 1 2 3 4 5 6 7 8 9
────────────┼───────────────────────────────────────────────────────────
0 │ 91.6 0.0 1.9 0.6 0.2 1.8 1.9 0.2 1.2 0.6
1 │ 0.0 96.4 0.4 0.2 0.4 0.7 0.0 2.0 0.0 0.0
2 │ 2.0 2.6 52.8 3.4 12.5 5.0 2.0 7.9 8.3 3.4
3 │ 0.7 5.5 4.2 60.3 2.0 11.8 1.3 12.3 1.6 0.4
4 │ 0.0 0.2 6.5 0.4 78.9 1.1 0.2 11.1 0.8 0.7
5 │ 0.9 7.4 5.3 21.0 1.0 44.5 2.0 15.2 0.6 2.1
6 │ 1.5 0.4 1.0 0.4 0.6 0.5 72.9 6.9 1.0 14.9
7 │ 0.2 4.8 2.7 1.6 13.1 2.3 5.2 69.9 0.2 0.0
8 │ 1.4 0.5 7.6 0.8 2.6 0.0 0.6 0.7 82.2 3.4
9 │ 1.2 0.1 2.1 0.9 1.6 1.0 33.7 10.6 1.3 47.2
We see that the biggest errors are the following:
function top_errors(tbl_p)
= DataFrame(
df = Integer[]
Digit = Integer[]
, Prediction = Float64[]
, Percentage
)
for i = eachindex(IndexCartesian(), tbl_p)
push!(df, (i[1]-1, i[2]-1, tbl_p[i]))
end
filter!(row -> row.Digit != row.Prediction, df)
sort!(df, :Percentage, rev = true)
1:10, :]
df[end
= top_errors(tbl_p)
df_errors |> pretty_table df_errors
┌─────────┬────────────┬────────────┐
│ Digit │ Prediction │ Percentage │
│ Integer │ Integer │ Float64 │
├─────────┼────────────┼────────────┤
│ 9 │ 6 │ 33.7 │
│ 5 │ 3 │ 21.0 │
│ 5 │ 7 │ 15.2 │
│ 6 │ 9 │ 14.9 │
│ 7 │ 4 │ 13.1 │
│ 2 │ 4 │ 12.5 │
│ 3 │ 7 │ 12.3 │
│ 3 │ 5 │ 11.8 │
│ 4 │ 7 │ 11.1 │
│ 9 │ 7 │ 10.6 │
└─────────┴────────────┴────────────┘
11.4.1 The perils of isometric spaces
How to separate “6” and “9”? They are isometric! For some people, “2” and “5” are also isometric (just mirror on the x-axis). Functions that only “see” the metric (like the excentricity) will never be able to separate these digits. In digits, the position of the features is important, so let’s add more slicing filtrations to our arsenal.
To avoid writing all the above code-blocks again, we encapsulate the whole process into a function
function whole_process(
mnist_digits, mnist_labels, f= nothing, imgs_1 = nothing
; imgs_0 = 1, sigma = 1, size_persistence_image = 8
, dim_max
)= [mnist_digits[:, :, i]' |> Matrix for i ∈ 1:size(mnist_digits)[3]]
figs
= f.(figs);
excs
= map(excs) do ex
pds = maximum(ex)
m = m .- ex
ex ripserer(Cubical(ex), cutoff = 0.5, dim_max = dim_max)
end;
= pds .|> first
pds_0 = pds .|> last
pds_1
isnothing(imgs_0)
if = PersistenceImage(pds_0; sigma = sigma, size = size_persistence_image)
imgs_0 end
isnothing(imgs_1)
if = PersistenceImage(pds_1; sigma = sigma, size = size_persistence_image)
imgs_1 end
= [
persims vec(imgs_0(pds_0[i])); vec(imgs_1(pds_1[i])) ] for i in eachindex(pds)
[
]
= reduce(hcat, persims)'
X = mnist_labels .|> string
y
return X, y, pds_0, pds_1, imgs_0, imgs_1end;
We now create the sideways filtrations: from the side and from above.
set_value(x, threshold = 0.5, value = 0) = x ≥ threshold ? value : 0
function filtration_sideways(fig; axis = 1, invert = false)
= copy(fig)
fig2 if axis == 2 fig2 = fig2' |> Matrix end
for i ∈ 1:28
if invert k = 29 - i else k = i end
:] .= set_value.(fig2[i, :], 0.5, k)
fig2[i, end
fig2
end;
and calculate all 4 persistence diagrams. Warning: this can take a few seconds if you are using 60000 digits!
= [
fs -> filtration_sideways(x, axis = 1, invert = false)
x -> filtration_sideways(x, axis = 2, invert = false)
,x -> filtration_sideways(x, axis = 1, invert = true)
,x -> filtration_sideways(x, axis = 2, invert = true)
,x
]
= @showprogress map(fs) do f
ret whole_process(
mnist_digits, mnist_labels, f= 8
,size_persistence_image
)end;
We concatenate all the vectors
= ret .|> first
X_list = hcat(X, X_list...); X_all
and try again with a new model:
= nn_model(X_all)
model
= Flux.onehotbatch(y, 0:9 .|> string)
target = Flux.DataLoader((X_all' .|> Float32, target), batchsize=64, shuffle=true);
loader
= Flux.setup(Flux.Adam(0.01), model)
optim
@showprogress for epoch in 1:50
train!(model, loader, optim) do m, x, y
Flux.= m(x)
y_hat logitcrossentropy(y_hat, y)
Flux.end
end;
Now we have
= model(X_all' .|> Float32)
pred_y = Flux.onecold(pred_y, 0:9 .|> string)
pred_y
= sum(pred_y .== y) / length(y)
accuracy = round(accuracy * 100, digits = 2)
accuracy println("The accuracy on the train set was $accuracy %!")
The accuracy on the train set was 95.1 %!
which is certainly an improvement!
The proportional confusion matrix is
prop_table(y, pred_y)
10×10 Named Matrix{Float64}
Dim1 ╲ Dim2 │ 0 1 2 3 4 5 6 7 8 9
────────────┼───────────────────────────────────────────────────────────
0 │ 99.3 0.0 0.1 0.1 0.0 0.0 0.3 0.0 0.2 0.0
1 │ 0.0 97.5 0.5 0.5 0.2 0.3 0.0 0.9 0.1 0.0
2 │ 0.3 0.5 85.4 2.9 0.1 6.9 1.6 1.9 0.4 0.0
3 │ 0.3 0.3 0.7 95.4 0.0 1.3 0.1 1.7 0.2 0.0
4 │ 0.1 0.0 0.0 0.0 98.9 0.0 0.4 0.3 0.1 0.2
5 │ 0.2 0.7 2.4 2.3 0.1 91.9 2.1 0.1 0.0 0.1
6 │ 0.0 0.2 0.1 0.0 0.1 0.0 99.6 0.0 0.0 0.0
7 │ 0.5 2.3 1.4 3.0 0.7 0.4 0.2 91.4 0.0 0.2
8 │ 0.1 0.1 0.5 0.0 1.3 0.1 0.8 0.0 96.8 0.2
9 │ 0.5 0.1 0.1 0.3 1.5 0.5 1.1 0.5 1.0 94.3
11.5 Learning from your mistakes
Let’s explore a bit where the model is making mistakes. Collect all the errors
= findall(pred_y .!= y); errors
and plot the first 3
= errors[1]
i println("The model predicted a $(pred_y[i]) but it was a $(y[i])")
plot_digit(figs[i])
The model predicted a 2 but it was a 1
= errors[2]
i println("The model predicted a $(pred_y[i]) but it was a $(y[i])")
plot_digit(figs[i])
The model predicted a 5 but it was a 2
= errors[3]
i println("The model predicted a $(pred_y[i]) but it was a $(y[i])")
plot_digit(figs[i])
The model predicted a 5 but it was a 2
We can make a mosaic with the first 100 errors
= 10
n = [figs[i] .|> Gray for i in errors[1:n^2]]
figs_plot mosaicview(figs_plot, nrow = n, rowmajor = true)
Many of these digits are really ugly! This makes them hard to classify with our sublevel filtrations. Some other functions could be explored.
11.6 Getting new data
Now we want to see if our model really learned something, or if it just repeated what he saw in the training data. To check data, we need to get new data and calculate the accuracy of the same model on this new data.
= 5_000
n_test = MLDatasets.MNIST(split=:test)[:];
new_mnist_digits, new_mnist_labels = new_mnist_digits[:, :, 1:n_test]
new_mnist_digits = new_mnist_labels[1:n_test]; new_mnist_labels
and obtaning X
and y
to feed the model
= [
fs -> excentricity(x)
x -> filtration_sideways(x, axis = 1, invert = false)
,x -> filtration_sideways(x, axis = 2, invert = false)
,x -> filtration_sideways(x, axis = 1, invert = true)
,x -> filtration_sideways(x, axis = 2, invert = true)
,x
]
= @showprogress map(fs) do f
ret whole_process(
new_mnist_digits, new_mnist_labels, f= 8
,size_persistence_image
)end;
Define our new X
and y
= ret .|> first
new_X = hcat(new_X...)
new_X = ret[1][2]
new_y
= model(new_X' .|> Float32)
new_pred_y = Flux.onecold(new_pred_y, 0:9 .|> string); new_pred_y
and calculate the accuracy:
= sum(new_pred_y .== new_y) / length(new_y)
accuracy = round(accuracy * 100, digits = 2)
accuracy println("The accuracy on the test data was $accuracy %!")
The accuracy on the test data was 87.1 %!
A bit less than the training set, but not so bad.
Let’s check the confusion matrix
= prop_table(new_y, new_pred_y) tbl
10×10 Named Matrix{Float64}
Dim1 ╲ Dim2 │ 0 1 2 3 4 5 6 7 8 9
────────────┼───────────────────────────────────────────────────────────
0 │ 95.7 0.0 0.9 0.2 0.9 0.2 0.9 0.0 1.1 0.2
1 │ 0.5 95.4 1.1 0.4 0.9 0.5 0.2 1.1 0.0 0.0
2 │ 1.1 0.4 78.5 3.8 1.1 9.8 2.1 1.7 1.5 0.0
3 │ 0.0 1.0 5.8 85.0 0.0 3.8 0.2 3.4 0.8 0.0
4 │ 0.0 0.2 1.2 0.2 95.0 0.8 0.4 0.4 0.8 1.0
5 │ 0.4 0.9 14.9 4.2 2.2 73.5 0.9 1.1 1.5 0.4
6 │ 1.5 0.2 1.5 0.2 1.5 1.3 91.8 0.0 1.7 0.2
7 │ 0.2 3.1 3.7 4.7 6.6 1.4 0.2 79.3 0.0 0.8
8 │ 1.0 0.0 4.7 0.2 0.8 0.6 0.0 0.0 91.4 1.2
9 │ 0.2 0.2 1.0 0.2 5.8 0.4 0.6 2.1 4.6 85.0
11.7 Closing remarks
Even though we used heavy machinery from topology, at the end our persistence images were vectors that indicated the birth and death of edges. Apart from that, the only machine learning algorithm we used was a simple dense neural network to fit these vectors to the correct labels in a non-linear way. State-of-art machine learning models on the MNIST dataset usually can get more than 99% of accuracy, but they use some complicated neural networks with many layers, and the output prediction are hard to explain. These methods, however, are not excludent of each other: we can use the persistence images (and any other vectorized output from TDA) together with other algorithms.
A curious exercise to the reader is to check if a neural network with two parallel inputs - one for the digits images, followed by convolutional layers - other for the vector of persistence images, followed by dense layers can achieve a better result than the convolutional alone.