├── README.md ├── data.py ├── doubleunet_pytorch.py ├── files └── README.md ├── img ├── 100.png ├── 5.png ├── 6.png ├── DoubleU-Net.png ├── README.md ├── gastro.png ├── gastro1.png ├── nuclie.png └── skin.png ├── metrics.py ├── model.py ├── predict.py ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/data.py -------------------------------------------------------------------------------- /doubleunet_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/doubleunet_pytorch.py -------------------------------------------------------------------------------- /files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/files/README.md -------------------------------------------------------------------------------- /img/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/img/100.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/img/6.png -------------------------------------------------------------------------------- /img/DoubleU-Net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/img/DoubleU-Net.png -------------------------------------------------------------------------------- /img/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /img/gastro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/img/gastro.png -------------------------------------------------------------------------------- /img/gastro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/img/gastro1.png -------------------------------------------------------------------------------- /img/nuclie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/img/nuclie.png -------------------------------------------------------------------------------- /img/skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/img/skin.png -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/metrics.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/model.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/predict.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebeshJha/2020-CBMS-DoubleU-Net/HEAD/utils.py --------------------------------------------------------------------------------