資源簡介
MATLAB 工具包 DEEP LEARNING TOOLBOX (一)
Deep Learning Toolbox 提供了一個用于通過算法、預訓練模型和應用程序來設計和實現深度神經網絡的框架。我們可以使用卷積神經網絡(ConvNet、CNN)和長短期記憶 (LSTM) 網絡對圖像、時序和文本數據執行分類和回歸。
Deep Learning Toolbox 提供了一個用于通過算法、預訓練模型和應用程序來設計和實現深度神經網絡的框架。我們可以使用卷積神經網絡(ConvNet、CNN)和長短期記憶 (LSTM) 網絡對圖像、時序和文本數據執行分類和回歸。
代碼片段和文件信息
classdef?GoogLeNetPackageInfo?se
????%Googlenet?support?package?support?for?MATLAB?Compiler.
????
????%???Copyright?2017-2018?The?MathWorks?Inc.
????
????methods
????????function?obj?=?GoogLeNetPackageInfo()
????????????obj.baseProduct?=?‘Deep?Learning?Toolbox‘;
????????????obj.displayName?=?‘Deep?Learning?Toolbox?Model?for?GoogLeNet?Network‘;
????????????obj.name????????=?‘Deep?Learning?Toolbox?Model?for?GoogLeNet?Network‘;
????????????
????????????sproot?=?matlabshared.supportpkg.getSupportPackageRoot();
????????????
????????????%?Define?all?the?data?that?should?be?deployed?from?the?support
????????????%?package.?This?includes?the?actual?language?data?which?will
????????????%?be?archived?in?the?CTF.
????????????obj.mandatoryIncludeList?=?{...
????????????????fullfile(sproot?‘toolbox‘‘nnet‘‘supportpackages‘‘googlenet‘‘+nnet‘)?...
????????????????fullfile(sproot?‘toolbox‘‘nnet‘‘supportpackages‘‘googlenet‘‘license_addendum.txt‘)?...
????????????????fullfile(sproot?‘toolbox‘‘nnet‘‘supportpackages‘‘googlenet‘‘data‘‘googlenet.mat‘)?};
????????????
????????????%?Specify?that?the?googlenet.mat?data?file?should?only?be
????????????%?suggested?in?the?deploy?app?if?the?googlenet.m?file?is?used?in
????????????%?the?application?code.?Otherwise?there?is?no?need?to?mention
????????????%?it.
????????????obj.conditionalIncludeMap?=?containers.Map;
????????????obj.conditionalIncludeMap(fullfile(toolboxdir(‘nnet‘)?‘cnn‘?‘googlenet.m‘))?=?{};
????????????
????????end
????end
end
評論
共有 條評論