matlab2017调用vgg19,VGG-19 convolutional neural network

Load a pretrained VGG-19 convolutional neural network and examine the layers and classes.

Use vgg19 to load a pretrained VGG-19 network. The output net is a SeriesNetwork object.

net = vgg19

net =

SeriesNetwork with properties:

Layers: [47×1 nnet.cnn.layer.Layer]

View the network architecture using the Layers property. The network has 47 layers. There are 19 layers with learnable weights: 16 convolutional layers, and 3 fully connected layers.

net.Layers

ans =

47x1 Layer array with layers:

1 'input' Image Input 224x224x3 images with 'zerocenter' normalization

2 'conv1_1' Convolution 64 3x3x3 convolutions with stride [1 1] and padding [1 1 1 1]

3 'relu1_1' ReLU ReLU

4 'conv1_2' Convolution 64 3x3x64 convolutions with stride [1 1] and padding [1 1 1 1]

5 'relu1_2' ReLU ReLU

6 'pool1' Max Pooling 2x2 max pooling with stride [2 2] and padding [0 0 0 0]

7 'conv2_1' Convolution 128 3x3x64 convolutions with stride [1 1] and padding [1 1 1 1]

8 'relu2_1' ReLU ReLU

9 'conv2_2' Convolution 128 3x3x128 convolutions with stride [1 1] and padding [1 1 1 1]

10 'relu2_2' ReLU ReLU

11 'pool2' Max Pooling 2x2 max pooling with stride [2 2] and padding [0 0 0 0]

12 'conv3_1' Convolution 256 3x3x128 convolutions with stride [1 1] and padding [1 1 1 1]

13 'relu3_1' ReLU ReLU

14 'conv3_2' Convolution 256 3x3x256 convolutions with stride [1 1] and padding [1 1 1 1]

15 'relu3_2' ReLU ReLU

16 'conv3_3' Convolution 256 3x3x256 convolutions with stride [1 1] and padding [1 1 1 1]

17 'relu3_3' ReLU ReLU

18 'conv3_4' Convolution 256 3x3x256 convolutions with stride [1 1] and padding [1 1 1 1]

19 'relu3_4' ReLU ReLU

20 'pool3' Max Pooling 2x2 max pooling with stride [2 2] and padding [0 0 0 0]

21 'conv4_1' Convolution 512 3x3x256 convolutions with stride [1 1] and padding [1 1 1 1]

22 'relu4_1' ReLU ReLU

23 'conv4_2' Convolution 512 3x3x512 convolutions with stride [1 1] and padding [1 1 1 1]

24 'relu4_2' ReLU ReLU

25 'conv4_3' Convolution 512 3x3x512 convolutions with stride [1 1] and padding [1 1 1 1]

26 'relu4_3' ReLU ReLU

27 'conv4_4' Convolution 512 3x3x512 convolutions with stride [1 1] and padding [1 1 1 1]

28 'relu4_4' ReLU ReLU

29 'pool4' Max Pooling 2x2 max pooling with stride [2 2] and padding [0 0 0 0]

30 'conv5_1' Convolution 512 3x3x512 convolutions with stride [1 1] and padding [1 1 1 1]

31 'relu5_1' ReLU ReLU

32 'conv5_2' Convolution 512 3x3x512 convolutions with stride [1 1] and padding [1 1 1 1]

33 'relu5_2' ReLU ReLU

34 'conv5_3' Convolution 512 3x3x512 convolutions with stride [1 1] and padding [1 1 1 1]

35 'relu5_3' ReLU ReLU

36 'conv5_4' Convolution 512 3x3x512 convolutions with stride [1 1] and padding [1 1 1 1]

37 'relu5_4' ReLU ReLU

38 'pool5' Max Pooling 2x2 max pooling with stride [2 2] and padding [0 0 0 0]

39 'fc6' Fully Connected 4096 fully connected layer

40 'relu6' ReLU ReLU

41 'drop6' Dropout 50% dropout

42 'fc7' Fully Connected 4096 fully connected layer

43 'relu7' ReLU ReLU

44 'drop7' Dropout 50% dropout

45 'fc8' Fully Connected 1000 fully connected layer

46 'prob' Softmax softmax

47 'output' Classification Output crossentropyex with 'tench' and 999 other classes

To view the names of the classes learned by the network, you can view the Classes property of the classification output layer (the final layer). View the first 10 classes by specifying the first 10 elements.

net.Layers(end).Classes(1:10)

ans = 10×1 categorical array

tench

goldfish

great white shark

tiger shark

hammerhead

electric ray

stingray

cock

hen

ostrich

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值