zoukankan      html  css  js  c++  java
  • alexNet--deep learning--alexNet的11行代码

    % Copyright 2016 The MathWorks, Inc.

    clear

    camera = webcam(  2  ); % Connect to the camera
    nnet = alexnet ;  % Load the neural net
    nnet.Layers
    return;

    while true  
        picture = camera.snapshot;              % Take a picture   
        picture = imresize(picture,[227,227]);  % Resize the picture

        label = classify(nnet, picture);        % Classify the picture
          
        image(picture);     % Show the picture
        title(char(label)); % Show the label
        drawnow;  
    end

     webcam_object_classification

    ans =

      25x1 Layer array with layers:

         1   'data'     Image Input                   227x227x3 images with 'zerocenter' normalization
         2   'conv1'    Convolution                   96 11x11x3 convolutions with stride [4  4] and padding [0  0]
         3   'relu1'    ReLU                          ReLU
         4   'norm1'    Cross Channel Normalization   cross channel normalization with 5 channels per element
         5   'pool1'    Max Pooling                   3x3 max pooling with stride [2  2] and padding [0  0]
         6   'conv2'    Convolution                   256 5x5x48 convolutions with stride [1  1] and padding [2  2]
         7   'relu2'    ReLU                          ReLU
         8   'norm2'    Cross Channel Normalization   cross channel normalization with 5 channels per element
         9   'pool2'    Max Pooling                   3x3 max pooling with stride [2  2] and padding [0  0]
        10   'conv3'    Convolution                   384 3x3x256 convolutions with stride [1  1] and padding [1  1]
        11   'relu3'    ReLU                          ReLU
        12   'conv4'    Convolution                   384 3x3x192 convolutions with stride [1  1] and padding [1  1]
        13   'relu4'    ReLU                          ReLU
        14   'conv5'    Convolution                   256 3x3x192 convolutions with stride [1  1] and padding [1  1]
        15   'relu5'    ReLU                          ReLU
        16   'pool5'    Max Pooling                   3x3 max pooling with stride [2  2] and padding [0  0]
        17   'fc6'      Fully Connected               4096 fully connected layer
        18   'relu6'    ReLU                          ReLU
        19   'drop6'    Dropout                       50% dropout
        20   'fc7'      Fully Connected               4096 fully connected layer
        21   'relu7'    ReLU                          ReLU
        22   'drop7'    Dropout                       50% dropout
        23   'fc8'      Fully Connected               1000 fully connected layer
        24   'prob'     Softmax                       softmax
        25   'output'   Classification Output         cross-entropy with 'tench', 'goldfish', and 998 other classes
    >>

  • 相关阅读:
    python从字符串内取两个符号之间的内容
    C# 判读取得字符编码格式
    jquery:字符串(string)转json
    SQL Server 2008 SQL2012 SQL2014 收缩日志 清空删除大日志文件
    WEB 倒计时
    成功配置TOMCAT的LOG4J日志系统,格式:HTML+每天以YYYY-MM-DD.LOG命名的日志文件
    IE Error: '__doPostBack' is undefined 问题解决
    分享:JAVA和C# 3DES加密解密
    好用的linux工具
    python多线程的概念(转载)
  • 原文地址:https://www.cnblogs.com/leoking01/p/7001473.html
Copyright © 2011-2022 走看看