Related to Focal Loss Layer: is it suitable for multi-class classification?
5 views (last 30 days)
Show older comments
Does the focal loss layer (in Computer vision toolbox) support multi-class classification (or suited for binary prolems only)?
0 Comments
Answers (1)
Hrishikesh Borate
on 20 Apr 2021
Hi,
The focalLossLayer from the Computer Vision Toolbox does support multi-class classification problems. The classes can be defined during the creation of focalLossLayer using ‘Classes’ property, as shown below.
classes = ["class1", "class2", "class3", "class4"];
layer = focalLossLayer('Classes',classes,'Name','focallosslayer');
0 Comments
See Also
Categories
Find more on Recognition, Object Detection, and Semantic Segmentation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!