Clear Filters
Clear Filters

Error in createLgra​phUsingCon​nections

6 views (last 30 days)
I am trying to implement Deep Learning model with my dataset and doing tranfer learning. When I run the given code below:
NumberOfClasses = 2;
nn = inceptionv3;
imageSize = nn.Layers(1, 1).InputSize;
lgraph = layerGraph(nn);
lgraph = replaceLayer(lgraph, 'predictions', fullyConnectedLayer(NumberOfClasses, 'Name', 'FC2'));
lgraph = replaceLayer(lgraph, 'ClassificationLayer_predictions', classificationLayer('Name', 'Output'));
layers = lgraph.Layers;
connections = lgraph.Connections;
obj.NN = createLgraphUsingConnections(layers, connections);
'createLgraphUsingConnections' is used in Train Deep Learning Network to Classify New Images.
I get error: 'createLgraphUsingConnections' is used in Train Deep Learning Network to Classify New Images.
How I can fix this issue?
Note: I am using MATLAB R2022a version.

Accepted Answer

Muhammad
Muhammad on 6 Jul 2023
% lgraph = createLgraphUsingConnections(layers,connections) creates a layer
% graph with the layers in the layer array |layers| connected by the
% connections in |connections|.
function lgraph = createLgraphUsingConnections(layers,connections)
lgraph = layerGraph();
for i = 1:numel(layers)
lgraph = addLayers(lgraph,layers(i));
end
for c = 1:size(connections,1)
lgraph = connectLayers(lgraph,connections.Source{c},connections.Destination{c});
end
end
I found this code @ Link.

More Answers (1)

Yomna Genina
Yomna Genina on 22 May 2023
createLgraphUsingConnections is a helper function used by the example. You can access this function by opening the example files in MATLAB:
openExample('nnet/TransferLearningUsingGoogLeNetExample')
Make sure the function is on the MATLAB path before calling it.

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!