Deep Learning Toolbox Importer for Caffe Models

Software support package for importing pretrained Caffe Models
다운로드 수: 2.9K
업데이트 날짜: 2024/3/20

This software support package provides functions for importing pretrained models as well as layers of Convolutional Neural Networks (CNNs) from Caffe (http://caffe.berkeleyvision.org/). Pretrained models are imported as a SeriesNetwork or a Directed Acyclic Graph (DAG) network object.

Opening the caffeimporter.mlpkginstall file from your operating system or from within MATLAB will initiate the installation process for the release you have.
This mlpkginstall file is functional for R2017a and beyond.

Usage Example (importCaffeNetwork):
% Specify files to import
protofile = 'digitsnet.prototxt';
datafile = 'digits_iter_10000.caffemodel';
% Import network
net = importCaffeNetwork(protofile,datafile)
Usage Example (importCaffeLayers):
% Specify file to import
protofile = 'digitsnet.prototxt';
% Import network layers
layers = importCaffeLayers('digitsnet.prototxt')

For more information on importing Caffe networks, please visit our documentation at https://www.mathworks.com/help/deeplearning/ref/importcaffenetwork.html

For more information on importing layers from Caffe, please visit our documentation at
https://www.mathworks.com/help/deeplearning/ref/importcaffelayers.html

To get a list of all the pretrained models supported by MATLAB, please visit https://www.mathworks.com/solutions/deep-learning/models.html

MATLAB 릴리스 호환 정보
개발 환경: R2017a
R2017a에서 R2024a까지의 릴리스와 호환
플랫폼 호환성
Windows macOS (Apple Silicon) macOS (Intel) Linux
카테고리
Help CenterMATLAB Answers에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!