数据可视化
文章平均质量分 53
GuokLiu
享受当下时光,专注做好一件事
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
220602-Logging日志记录
logging记录及保存原创 2022-06-02 14:08:22 · 148 阅读 · 0 评论 -
220531-超参优化HPO二维变量可视化
参考连接 使用 Hyperopt 和 Plotly 可视化超参数优化 Visualizing Hyperparameter Optimization with Hyperopt and Plotly — States Title 源代码 # plotly express不支持轮廓图, # 所以我们将使用'graph_objects'来代替。 # `go.Contour`自动为我们的损失插入“z”值。 fig = go.Figure( data=go.Contour( .原创 2022-05-31 09:06:25 · 763 阅读 · 0 评论 -
200722-Seaborn绘制热力混淆矩阵自定义刻度
from sklearn.metrics import confusion_matrix import matplotlib.pyplot as plt import seaborn as sns import numpy as np sns.set() y_test = np.random.randint(1,8,100) y_pred = np.random.randint(1,8,100) fig = plt.figure() ax = fig.add_subplot(111) conf_ma原创 2020-07-23 05:47:48 · 4046 阅读 · 0 评论
分享