Open NathanMolinier opened 1 year ago
Since the addition of new images (representing different field of view of the spine) performances of the hourglass have dropped significantly (mainly due to the addition of new classes ~25 discs) leading to an increasing number of false positive detections.
This problem was partially solved here but still numerous false positive detection are still occurring.
Split the loss function into two main components:
To improve the performances and help the model to generalize, a new data augmentation function random_crop
was added to randomly vary the discs that are present in the image.
The task still is too difficult for the model, the number of different classes is maybe to important.
Finding and identifying all the 25 discs classes seems to be to difficult for one model, therefore, I will try to train 2 models:
These models will be train with and without the random cropping to evaluate their ability to generalize.
...
based on https://www.sciencedirect.com/science/article/pii/S1361841521003030
Retry with the 25 classes but this time with a fixed size sliding window.
The use of the Binary Cross Entropy will also be investigated to avoid having multiple classes for the same disc.
...
Description
This issue is meant to discuss about strategies to improve the performances of the hourglass network.