What method call do I use to invoke a prediction based on a trained model?

I’ve been going through a (canned video) neural network course that uses Flux and it instructs me how to load the training and test data (from the bundled MNIST data) and how to use the Flux Chain command to create all of the various layers and how to train the model. How do I now USE that model to predict? I search for the keyword “predict” related to Flux and don’t find that anywhere?

The model is callable. Just call it with your data model(x). There are lots of examples doing this at Basics · Flux.

Or even better at Overview · Flux, where a model is named predict.