Hi Patrick,
The "lenet-CIFAR-10.wlnet" file has been included in the zip file that you downloaded. Could you please confirm that after you unzipped the download, the notebook "ExploringNNFramework-BuildingToTraining.nb" and the file "lenet-CIFAR-10.wlnet" appear in the same location?
If yes, then
Import[FileNameJoin[{NotebookDirectory[],"lenet-CIFAR-10.wlnet"}]
should be able to load the simple network modeled after Lenet into your session and you can work further with it.
Yes the model is slightly different from the network shown on the slide 4. Here is the code to create it yourself:
lenet =
NetChain[{
ConvolutionLayer[20, 5],
Ramp,
PoolingLayer[2, 2],
ConvolutionLayer[50, 5],
Ramp,
PoolingLayer[2, 2],
FlattenLayer[],
500,
Ramp,
10,
SoftmaxLayer[]
},
"Output" -> NetDecoder[{"Class", classes}],
"Input" -> NetEncoder[{"Image", {32, 32}}]]
You can also find it in the tutorial at https://reference.wolfram.com/language/tutorial/NeuralNetworksComputerVision.html#280210622 within the example demonstrating "CIFAR-10 Object Classification".