
可视化
可视化
城俊BLOG
从此好好码代码。。
展开
-
cv2画多边形报错Overload resolution failed:> - Can‘t parse ‘pts‘. Sequence item with index 0 has a wrong t
报错:cv2.error: OpenCV(4.5.4-dev) :-1: error: (-5:Bad argument) in function 'polylines'> Overload resolution failed:> - Can't parse 'pts'. Sequence item with index 0 has a wrong type> - Can't parse 'pts'. Sequence item with index 0 has a wrong原创 2022-04-18 13:58:36 · 11774 阅读 · 0 评论 -
tensorboard可视化报错DecodeError: Error parsing message
Traceback (most recent call last): File "/home/user1/miniconda3/envs/hardsample/lib/python2.7/threading.py", line 801, in __bootstrap_inner self.run() File "/home/user1/miniconda3/envs/hardsample/lib/python2.7/threading.py", line 754, in run se原创 2021-03-29 17:18:46 · 954 阅读 · 0 评论 -
mxnet可视化模型中间层feature map输出
注:model输入 112x112保存的图片可能是白色的(这个还没有修复),但是在pycharm中运行时可以通过scientific tool窗口看到#构造辅助函数做预处理, 注意mxnet中为通道在前格式即BCHW, 输入时要对通道维度调整,#其预训练模型采用减均值除方差的标准化预处理(均值标准差使用imagenet数据集的[0.485, 0.456, 0.406], [0.229, 0.224, 0.225])#mxnet使用专有数据类型nd.arrayimport cv2from翻译 2021-01-30 20:53:30 · 447 阅读 · 0 评论 -
pytorch网络结构可视化graphviz.backend.ExecutableNotFound: failed to execute [‘dot‘, ‘-Tpdf‘, ‘-O‘, ‘
报错:Traceback (most recent call last): File "/data/user1/pkgs/conda/envs/drc/lib/python3.7/site-packages/graphviz/backend.py", line 129, in render subprocess.check_call(args, stderr=stderr, **POPEN_KWARGS) File "/data/user1/pkgs/conda/envs/drc/lib/原创 2020-08-12 15:14:51 · 1502 阅读 · 0 评论 -
UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figur
画图出不来UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.解决:import matplotlib.pyplot as pltplt.switch_backend('TkAgg')okie@https://stackoverflow.com/questions/56656777/userwarning-matplotlib-is-curre翻译 2020-08-07 11:37:53 · 3576 阅读 · 0 评论 -
多标签学习(multi-label learning)扫盲,混淆矩阵
1,MLL 没有单独的直观的二维混淆矩阵,sklearn的实现是多少label就有多少混淆矩阵,每个label一个2x2的混淆矩阵。(每个label的值是0/1)from sklearn.metrics import multilabel_confusion_matriximport numpy as npclasses = ['green', 'black', 'red', 'blue']targetSrc = [[0,1,1,1], [0,0,1,0], [1,0,0,1], [1,1,1,0原创 2020-07-21 17:24:21 · 4145 阅读 · 11 评论 -
DL 数据可视化
https://www.kesci.com/home/project/5e12ae702823a10036b2fff7翻译 2020-07-23 14:04:31 · 276 阅读 · 0 评论 -
DL模型可视化
model = Alexnet2fc() x = torch.rand(8, 3, 112, 112) y = model(x) # need TensorFlow 2.2 or higher # method 1 # from keras.utils import plot_model # plot_model(model, to_file='model.png') # method 2 # from IPython.di...原创 2020-07-22 16:07:27 · 421 阅读 · 0 评论 -
python plt 设置双坐标轴彩色刻度,双图例,标签旋转
代码:import matplotlib.pyplot as pltimport numpy as npnp.random.seed(4)fig = plt.figure()ax1 = fig.add_subplot(111)x = [1,2,3,4,5]y1 = np.random.rand(5)y2 = np.random.rand(5)plot1 = ax1.plot(range(0, len(x)), y1, '-*', color='r', label='train')ax2原创 2020-06-05 17:42:43 · 10363 阅读 · 0 评论 -
linux ubuntu打开eps文件
$ xdg-open log.epshttps://unix.stackexchange.com/questions/111668/what-is-the-command-to-display-eps-files翻译 2020-06-04 13:57:45 · 2789 阅读 · 0 评论 -
ValueError: Unknown mat file type, version 0, 0, KeyError: Unable to open object (object data doe
from scipy import iomat_file = r'/home/data/1.mat'io.loadmat(mat_file)报错:Traceback (most recent call last): File "/home/user1/test.py", line 78, in <module> show_mat(mat) File "/...原创 2020-05-03 12:36:43 · 14655 阅读 · 17 评论 -
Python print终端控制台彩色输出文字,更换颜色
红色:绿色:前景、背景色:加粗(效果不明显):翻译 2020-04-14 17:06:42 · 1265 阅读 · 0 评论 -
python画图3d柱状图,3d直方图 ax.bar3d
根据三维数据,画一个柱状图网上的很多代码,都有点含混不清,而且百度又不好用,无奈自己动手试了一个import numpy as npimport matplotlib.pyplot as pltfrom mpl_toolkits.mplot3d import Axes3D# 绘图设置fig = plt.figure()ax = fig.gca(projection='3d')...原创 2020-02-12 11:48:40 · 23988 阅读 · 1 评论