2019年7月22日

经典损失函数:交叉熵(附tensorflow)

摘要: 每次都是看了就忘,看了就忘,从今天开始,细节开始,推一遍交叉熵。 我的第一篇CSDN,献给你们(有错欢迎指出啊)。 一.什么是交叉熵 交叉熵是一个信息论中的概念,它原来是用来估算平均编码长度的。给定两个概率分布p和q,通过q来表示p的交叉熵为: 注意,交叉熵刻画的是两个概率分布之间的距离,或可以说它 阅读全文

posted @ 2019-07-22 15:48 Hebye 阅读(512) 评论(0) 推荐(0) 编辑

tensorboard使用

摘要: 仅用作记录 localhost:6006 阅读全文

posted @ 2019-07-22 12:14 Hebye 阅读(218) 评论(0) 推荐(0) 编辑

2019年7月21日

Windows下 tensorboard出现ValueError:Invalid format string

摘要: windows下 Tensorboard出现的错误界面 错误界面.PNG 原因是Tensorboard下的manager.py文件中的第50行格式错误 修复方法: 1.找出manager.py所在路径: 虚拟环境(这里我都安装到D盘了,默认的是C盘):D:\AppAI\anaconda3\envs\ 阅读全文

posted @ 2019-07-21 16:57 Hebye 阅读(787) 评论(0) 推荐(0) 编辑

2019年7月19日

新建全色或者resize(毫无价值,只是做记录)

摘要: import glob import os,sys import shutil import numpy as np import cv2 import matplotlib.pyplot as plt # fileDir = 'F:/project/Breast/InBreast/INBreast/outimgpatch/allnocalcification/' fileDir = 'F:/p... 阅读全文

posted @ 2019-07-19 22:55 Hebye 阅读(179) 评论(0) 推荐(0) 编辑

创建一个任意大小的全色矩阵 python

摘要: img = np.zeros((112,112,3))#cv2.imread('F:/project/Breast/InBreast/INBreast/outimgpatch/allnocalcification/20586908_1.png') for i in range(112): for j in range(112): for k i... 阅读全文

posted @ 2019-07-19 16:29 Hebye 阅读(1142) 评论(0) 推荐(0) 编辑

转移图片位置

摘要: import glob import os,sys import shutil fileDir = 'F:/project/Breast/InBreast/INBreast/outimgpatch/calcification/' fileDir1 = 'F:/project/Breast/InBreast/INBreast/outimgpatch/nocalcification/' ... 阅读全文

posted @ 2019-07-19 15:37 Hebye 阅读(217) 评论(0) 推荐(0) 编辑

2019年7月17日

getpatch

摘要: import time import os import math import sys import os,os.path,shutil import numpy as np import cv2 img_in_path = 'F:/project/Breast/InBreast/INBreast/removeother/' # img_in_path = 'F:/project/Breas... 阅读全文

posted @ 2019-07-17 11:40 Hebye 阅读(294) 评论(0) 推荐(0) 编辑

整合

摘要: import glob import os,sys import shutil fileDir = 'F:/project/Breast/InBreast/INBreast/outimgpatch/calcification/' fileDir1 = 'F:/project/Breast/InBreast/INBreast/outimgpatch/nocalcification/' ... 阅读全文

posted @ 2019-07-17 11:39 Hebye 阅读(159) 评论(0) 推荐(0) 编辑

批量文件B中选出部分文件(与A文件夹数量相同),放到C中

摘要: import glob import os,sys import shutil fileDir = 'F:/project/Breast/InBreast/INBreast/outimgpatch/no/' #源图片文件夹路径 numDir = 'F:/project/Breast/InBreast/INBreast/outimgpatch/calcification/' tarDi... 阅读全文

posted @ 2019-07-17 00:10 Hebye 阅读(325) 评论(0) 推荐(0) 编辑

2019年7月15日

改名移动批量文件 shutil.copy

摘要: import glob import os import shutil filePath = 'F:/project/Breast/InBreast/INBreast/imgout/' newFilePath = 'F:/project/Breast/InBreast/INBreast/imgout1/' filename = os.listdir(filePath) for i in f... 阅读全文

posted @ 2019-07-15 20:08 Hebye 阅读(497) 评论(0) 推荐(0) 编辑

导航