LeNet

class paddle.vision.models. LeNet ( num_classes=10 ) [源代码]

LeNet模型,来自论文 “Gradient-based learning applied to document recognition”

参数

  • num_classes (int,可选) - 最后一个全连接层输出的维度。默认值:10。

代码示例

  1. import paddle
  2. from paddle.vision.models import LeNet
  3. model = LeNet()
  4. x = paddle.rand([1, 1, 28, 28])
  5. out = model(x)
  6. print(out.shape)

使用本API的教程文档