├── .gitignore ├── Example.ipynb ├── LICENSE ├── README.md ├── SkinLesionOverlap.png └── loss.py /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/* 2 | __pycache__/* -------------------------------------------------------------------------------- /Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakumarabhishek/MCC-Loss/HEAD/Example.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakumarabhishek/MCC-Loss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakumarabhishek/MCC-Loss/HEAD/README.md -------------------------------------------------------------------------------- /SkinLesionOverlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakumarabhishek/MCC-Loss/HEAD/SkinLesionOverlap.png -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakumarabhishek/MCC-Loss/HEAD/loss.py --------------------------------------------------------------------------------