├── .flake8 ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── Screenshots ├── Conf_matrix_default.png └── Conf_matrix_default_2.png ├── examples ├── arrays_example.py └── df_example.py ├── poetry.lock ├── pretty_confusion_matrix ├── __init__.py └── pretty_confusion_matrix.py └── pyproject.toml /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | dist 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Conf_matrix_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/Screenshots/Conf_matrix_default.png -------------------------------------------------------------------------------- /Screenshots/Conf_matrix_default_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/Screenshots/Conf_matrix_default_2.png -------------------------------------------------------------------------------- /examples/arrays_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/examples/arrays_example.py -------------------------------------------------------------------------------- /examples/df_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/examples/df_example.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/poetry.lock -------------------------------------------------------------------------------- /pretty_confusion_matrix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/pretty_confusion_matrix/__init__.py -------------------------------------------------------------------------------- /pretty_confusion_matrix/pretty_confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/pretty_confusion_matrix/pretty_confusion_matrix.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khuyentran1401/pretty-print-confusion-matrix/HEAD/pyproject.toml --------------------------------------------------------------------------------