Undefined function or variable 'replaceLayer'.

layers = [
imageInputLayer([28 28 1],'Name','input')
convolution2dLayer(5,20,'Name','conv_1')
reluLayer('Name','relu_1')
additionLayer(2,'Name','add')
fullyConnectedLayer(10,'Name','fc')
softmaxLayer('Name','softmax')
classificationLayer('Name','classoutput')];
lgraph = layerGraph(layers);
lgraph = connectLayers(lgraph,'input','add/in2');
>> larray = [batchNormalizationLayer('Name','BN1')
leakyReluLayer('Name','leakyRelu_1','Scale',.02)];
newlgraph = replaceLayer(lgraph,'relu_1',larray);
Undefined function or variable 'replaceLayer'.
Why in some computers works and in other it does not works and they are the same version with the same toolboxes??

댓글 수: 6

Adam Danz
Adam Danz 2019년 11월 14일
편집: Adam Danz 2020년 2월 21일
replaceLayer() is from the Deep Learning Toolbox and was released in r2018b although there is mention of it in the r2018a release notes. Run ver() to print a list of available toolboxes and confirm that you have this toolbox. replaceLayer is a class method of layerGraph class.
Adam Danz
Adam Danz 2020년 2월 20일
Ahmed's answer moved here as a comment.
Same here it dose not work with me ?????+++++++
is it same error. As mentioned by Adam try checking the ver and availability of the toolbox
Also, did you try rehashing the toolbox?
if not
use the
rehash toolbox
The 'replaceLayer' function is not a standalone m function. It is a class method of 'layerGraph' class.
Since it is a class method, it is defined in the class file for 'layerGraph' and can be used only with particular layers.
For more information, please refer the 'Objective Functions' of 'layerGraph' at the documentation link mentioned below:
>> training
Undefined function or variable 'replaceLayer'.
Error in training (line 22)
Layer_Graph = replaceLayer(Layer_Graph, Feature_Learner.Name, New_Feature_Learner);
how can solve this problem??
Add following lines:
Layer_Graph = layerGraph(Layer_Graph);
Layer_Graph = replaceLayer(Layer_Graph, Feature_Learner.Name, New_Feature_Learner);

댓글을 달려면 로그인하십시오.

답변 (1개)

Sneha Kurhade
Sneha Kurhade 2020년 10월 14일

2 개 추천

The 'replaceLayer' function is not a standalone m function. It is a class method of 'layerGraph' class.
Since it is a class method, it is defined in the class file for 'layerGraph' and can be used only with particular layers.
For more information, please refer the 'Objective Functions' of 'layerGraph' at the documentation link mentioned below:

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

제품

릴리스

R2019b

질문:

2019년 11월 14일

댓글:

2022년 4월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by