|
1 | | -# Weakly supervised segmentation demo using PyMIC |
| 1 | +# Noisy label-based segmentation demo using PyMIC |
2 | 2 |
|
3 | | -In this example, we show scribble-supervised learning methods implemented in PyMIC. |
4 | | -Currently, the following are available in PyMIC: |
| 3 | +In this example, we show noisy label learning methods implemented in PyMIC. |
| 4 | +Currently, the following methods are available in PyMIC: |
5 | 5 | |PyMIC Method|Reference|Remarks| |
6 | 6 | |---|---|---| |
7 | | -|WSLEntropyMinimization|[Grandvalet et al.][em_paper], NeurIPS 2005| Entropy minimization for regularization| |
8 | | -|WSLTotalVariation| [Luo et al.][tv_paper], arXiv 2022| Tobal variation for regularization| |
9 | | -|WSLMumfordShah| [Kim et al.][mumford_paper], TIP 2020| Mumford-Shah loss for regularization| |
10 | | -|WSLGatedCRF| [Lbukhov et al.][gcrf_paper], arXiv 2019| Gated CRF for regularization| |
11 | | -|WSLUSTM| [Liu et al.][ustm_paper], PR 2022| Adapt USTM with transform-consistency| |
12 | | -|WSLDMPLS| [Luo et al.][dmpls_paper], MICCAI 2022| Dynamically mixed pseudo label supervision| |
13 | | - |
14 | | -[em_paper]:https://papers.nips.cc/paper/2004/file/96f2b50b5d3613adf9c27049b2a888c7-Paper.pdf |
15 | | -[tv_paper]:https://arxiv.org/abs/2111.02403 |
16 | | -[mumford_paper]:https://doi.org/10.1109/TIP.2019.2941265 |
17 | | -[gcrf_paper]:http://arxiv.org/abs/1906.04651 |
18 | | -[ustm_paper]:https://doi.org/10.1016/j.patcog.2021.108341 |
19 | | -[dmpls_paper]:https://arxiv.org/abs/2203.02106 |
| 7 | +|GCELoss|[Zhang et al.][gce_paper], NeurIPS 2018| Train with SegmentationAgent| |
| 8 | +|NRDiceLoss| [Wang et al.][nrdice_paper], TMI 2020| Train with SegmentationAgent| |
| 9 | +|MAELoss| [Kim et al.][mae_paper], AAAI 2017| Train with SegmentationAgent| |
| 10 | +|NLLCoTeaching| [Han et al.][cot_paper], NeurIPS 2018| Co-teaching between two networks| |
| 11 | +|NLLCLSLSR| [Zhang et al.][cl_paper], MICCAI 2020| Confident learning with spatial label smoothing| |
| 12 | +|NLLTriNet| [Zhang et al.][trinet_paper], MICCAI 2020| Tri-network combined with sample selection| |
| 13 | +|NLLDAST| [Yang et al.][dast_paper], JBHI 2022| Divergence-aware selective training| |
| 14 | + |
| 15 | +[gce_paper]:https://arxiv.org/abs/1805.07836 |
| 16 | +[nrdice_paper]:https://ieeexplore.ieee.org/document/9109297 |
| 17 | +[mae_paper]:https://arxiv.org/abs/1712.09482v1 |
| 18 | +[cot_paper]:https://arxiv.org/abs/1804.06872 |
| 19 | +[cl_paper]:https://link.springer.com/chapter/10.1007/978-3-030-59710-8_70 |
| 20 | +[trinet_paper]:https://link.springer.com/chapter/10.1007/978-3-030-59719-1_25 |
| 21 | +[dast_paper]:https://ieeexplore.ieee.org/document/9770406 |
20 | 22 |
|
21 | 23 |
|
22 | 24 | ## Data |
|
0 commit comments