Add plot_confusion_matrix

This commit is contained in:
2021-06-29 14:13:07 -04:00
parent 33e9734991
commit db3e191983
2 changed files with 201 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.43",
version="1.44",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",
@@ -14,6 +14,6 @@ setup(
install_requires=[
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
"u-msgpack-python", "psycopg2-binary", "fake-useragent", "bs4", "lxml", "nltk", "numpy",
"matplotlib"
"matplotlib", "scikit-learn"
]
)