机器学习
冯岳松
这个作者很懒,什么都没留下…
展开
-
OMP + K-SVD算法实现图像去噪
OMP算法实现图像去噪,使用YaleB32数据集。使用前自行下载数据集并存放在: ./picture/DataSet/加上噪声的图像存放在: ./picture/LossPic/使用OMP算法去噪之后的图像: ./picture/RecPic/import numpy as npimport matplotlib.pyplot as pltfrom sklearn import linear_modelimport randomimport cv2import osfrom scipy原创 2021-03-15 15:02:17 · 1727 阅读 · 2 评论 -
Concept Whitening(for Interpretable Image Recognition)
和BatchNorm相比有很多优点,并且可以直接替换BatchNorm。有更好的interpretability(可解释性),可以可视化得解释神经网络层的含义。(这是最突出的特点)concepts in the latent space are purer than standard CNNs.不会降低网络的accuracy(准确率)。accuracy is on par with standard CNNs.可以使用在已经训练好的模型上,只需要增加一步就可以得出结果,十分方便。https://原创 2021-01-12 12:41:53 · 920 阅读 · 1 评论