
云图分类
所思即所得
潜龙勿用 见龙在田 终日乾乾 或跃在渊 飞龙在天 亢龙有悔
展开
-
选择模型训练
def densenet121_model(img_rows, img_cols, color_type=1, nb_dense_block=4, growth_rate=48, nb_filter=64, reduction=0.5, dropout_rate=0.0, weight_decay=1e-4, num_classes=None): ''' DenseNet 121...原创 2019-05-06 15:21:03 · 475 阅读 · 0 评论 -
云图数据采集
三通道拼接形成可视化原创 2019-04-30 22:54:18 · 1163 阅读 · 1 评论 -
制作云图数据集
import pickleimport numpy as npimport random#读取采集的背景数据,数据形式为Nonex28x28x4others = np.load('/home/xm/桌面/make_dataset/others.npy')index_1 = random.sample(list(range(others.shape[0])),others.shape[0...原创 2019-04-30 23:29:46 · 1046 阅读 · 0 评论 -
制作大图效果
模型预测import pickleimport cv2import numpy as npf = open('/home/xm/桌面/论文精华/sample_data_498_558.txt','rb')data = pickle.load(f)pred = model.predict(data)将分类结果以像素点的形式拼接B = []for i in range(le...原创 2019-05-06 15:57:38 · 213 阅读 · 0 评论 -
SE_densenet+efficient memory
SE_densenet参考http://www.zhouyuangan.cn/2018/11/se_densenet-modify-densenet-with-champion-network-of-the-2017-classification-task-named-squeeze-and-excitation-network/import mathimport torchimport...原创 2019-05-07 00:18:28 · 1654 阅读 · 0 评论