Filter löschen
Filter löschen

Error in createLgra​phUsingCon​nections

6 Ansichten (letzte 30 Tage)
Muhammad
Muhammad am 21 Mai 2023
Beantwortet: Muhammad am 6 Jul. 2023
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.

Akzeptierte Antwort

Muhammad
Muhammad am 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.

Weitere Antworten (1)

Yomna Genina
Yomna Genina am 22 Mai 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.

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by