Community Profile

photo

progga ilma


Active since 2019

Followers: 0   Following: 0

Statistics

  • Knowledgeable Level 1
  • First Answer
  • Revival Level 1

View badges

Feeds

View by

Answered
MATLAB error: The output size (4) of the last layer doesn't match the number of classes (2). How to match the size for neural network?
replace fullyConnectedLayer (4) with fullyConnectedLayer(numClasses) numClasses = numel(categories(imdsTrain.Labels)); i...

4 years ago | 0

Answered
Multiple face detection and cropping from multiple images
imds = imageDatastore('face', ... 'IncludeSubfolders',true, ... 'LabelSource','foldernames'); idx = randperm(numel(im...

4 years ago | 0

| accepted