WHAT WILL BE THE FEATURE LAYER ? IF I USE DIFFERENT NETWORKS LIKE mobilenetv2, DENSENET201, VGG16?
Ältere Kommentare anzeigen
preprocessedTrainingData = transform(trainingData, @(data)preprocessData(data,inputSize));
numAnchors = 3;
anchorBoxes = estimateAnchorBoxes(preprocessedTrainingData,numAnchors)
featureExtractionNetwork = mobilenetv2/;
featureLayer = '';
numClasses = 1;
lgraph = fasterRCNNLayers(inputSize,numClasses,anchorBoxes,featureExtractionNetwork,featureLayer);
augmentedTrainingData = transform(trainingData,@augmentData);
I WANT TO USE DIFFERENT NETWORKS FOR FASTER R CNN MODEL AS ITS BACKBONE. SO WHAT WILL BE THE FEATURE LAYERS FOR EACH NETWORK LIKE VVG16, DENSENET201, MOBILENET-V2, INCEPTION, SQUEEZENET, ETC.. / CAN I KNOW FOR WHICH NETWORK WAHT CAN BE USED?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!