You have features; now learn from them. The Bench gives three classes of feature clouds and a softmax classifier with its weights stuck at zero -- the gradient is already computed for you, but nothing updates. Take the gradient-descent step so the classifier learns, and watch it label a held-out test set it never trained on. This is TinyML: a kilobyte of weights, trained in place, exactly what a $16 Grove Vision or a reCamera does on-device.
Predict firstBefore any training, the classifier's weights are all zero. What accuracy will it get on 3 classes?
Untrained, it can only guess -- about 1 in 3. The gradient step is what turns guessing into ~100%.