owkin / FLamby

Cross-silo Federated Learning playground in Python. Discover 7 real-world federated datasets to test your new FL strategies and try to beat the leaderboard.
https://owkin.github.io/FLamby/
MIT License
199 stars 23 forks source link

Improving performance on LIDC-IDRI #41

Open BorisMuzellec opened 2 years ago

BorisMuzellec commented 2 years ago

The current V-Net implementation achieves a DICE score of ~30 after 100 epochs. This seems fairly low, even though it is hard to assess due to the apparent lack of comparable works. Any suggestions on how to improve this are welcome. Here are a few that I've thought about:

BorisMuzellec commented 2 years ago

Update: I get a DICE of 41% with patch_size = (128, 128, 128), n_patches = 2 and batch_size = 1 but it's quite computationally intensive.

Saipraneet commented 2 years ago

This repository here might be useful: https://github.com/jaeho3690/LIDC-IDRI-Segmentation/
They seem to get ~50% dice with UNet and some additional augmentations (see notebook)