07 2019 档案

摘要:坑 未填 阅读全文
posted @ 2019-07-28 19:51 bH1pJ 阅读(13) 评论(0) 推荐(0) 编辑
摘要:坑 未填 阅读全文
posted @ 2019-07-28 19:51 bH1pJ 阅读(28) 评论(0) 推荐(0) 编辑
摘要:如题,这是目前博主遇到的一个问题, 参数如下 loss不会下降 model.fit_generator(myGene,steps_per_epoch=500,epochs=100,callbacks=[model_checkpoint],shuffle=Tru... 阅读全文
posted @ 2019-07-28 17:55 bH1pJ 阅读(99) 评论(0) 推荐(0) 编辑
摘要:如题,这是目前博主遇到的一个问题, 参数如下 loss不会下降 model.fit_generator(myGene,steps_per_epoch=500,epochs=100,callbacks=[model_checkpoint],shuffle=Tru... 阅读全文
posted @ 2019-07-28 17:55 bH1pJ 阅读(134) 评论(0) 推荐(0) 编辑
摘要:lambda表达式中,冒号前面是参数,可以有多个,用逗号分隔,冒号右边是返回值 总而言之: 是匿名函数的用法,冒号前边是参数,后边是定义表达式 参考 https://blog.csdn.net/SeeTheWorld518/article/detail... 阅读全文
posted @ 2019-07-28 17:41 bH1pJ 阅读(22) 评论(0) 推荐(0) 编辑
摘要:lambda表达式中,冒号前面是参数,可以有多个,用逗号分隔,冒号右边是返回值 总而言之: 是匿名函数的用法,冒号前边是参数,后边是定义表达式 参考 https://blog.csdn.net/SeeTheWorld518/article/detail... 阅读全文
posted @ 2019-07-28 17:41 bH1pJ 阅读(24) 评论(0) 推荐(0) 编辑
摘要:解决方案: 方案1: https://blog.csdn.net/qq_22227123/article/details/79903116 方案2: https://blog.csdn.net/cdw_FstLst/article/detail... 阅读全文
posted @ 2019-07-28 17:40 bH1pJ 阅读(72) 评论(0) 推荐(0) 编辑
摘要:解决方案: 方案1: https://blog.csdn.net/qq_22227123/article/details/79903116 方案2: https://blog.csdn.net/cdw_FstLst/article/detail... 阅读全文
posted @ 2019-07-28 17:40 bH1pJ 阅读(205) 评论(0) 推荐(0) 编辑
摘要:首先Keras中的fit()函数传入的x_train和y_train是被完整的加载进内存的,当然用起来很方便,但是如果我们数据量很大,那么是不可能将所有数据载入内存的,必将导致内存泄漏,这时候我们可以用fit_generator函数来进行训练。 htt... 阅读全文
posted @ 2019-07-27 12:20 bH1pJ 阅读(110) 评论(0) 推荐(0) 编辑
摘要:首先Keras中的fit()函数传入的x_train和y_train是被完整的加载进内存的,当然用起来很方便,但是如果我们数据量很大,那么是不可能将所有数据载入内存的,必将导致内存泄漏,这时候我们可以用fit_generator函数来进行训练。 htt... 阅读全文
posted @ 2019-07-27 12:20 bH1pJ 阅读(64) 评论(0) 推荐(0) 编辑
摘要:第一种解释: batchsize:中文翻译为批大小(批尺寸)。在深度学习中,一般采用SGD训练,即每次训练在训练集中取batchsize个样本训练; iteration:中文翻译为迭代,1个iteration等于使用batchsize个样本训练一次; 一个迭代... 阅读全文
posted @ 2019-07-27 11:43 bH1pJ 阅读(246) 评论(0) 推荐(0) 编辑
摘要:第一种解释: batchsize:中文翻译为批大小(批尺寸)。在深度学习中,一般采用SGD训练,即每次训练在训练集中取batchsize个样本训练; iteration:中文翻译为迭代,1个iteration等于使用batchsize个样本训练一次; 一个迭代... 阅读全文
posted @ 2019-07-27 11:43 bH1pJ 阅读(650) 评论(0) 推荐(0) 编辑
摘要:Adam = Adaptive + Momentum,顾名思义Adam集成了SGD的一阶动量和RMSProp的二阶动量。 参考: https://blog.csdn.net/q295684174/article/details/79130666 ... 阅读全文
posted @ 2019-07-26 20:19 bH1pJ 阅读(244) 评论(0) 推荐(0) 编辑
摘要:Adam = Adaptive + Momentum,顾名思义Adam集成了SGD的一阶动量和RMSProp的二阶动量。 参考: https://blog.csdn.net/q295684174/article/details/79130666 ... 阅读全文
posted @ 2019-07-26 20:19 bH1pJ 阅读(640) 评论(0) 推荐(0) 编辑
摘要:•出现该问题的原因是:选用的loss函数有问题,目前使用的loss函数是binary_corssentropy,这种loss函数将正样本和负样本均拿来计算loss值 •在医学图像分割的例子中,正样本(目标、器官等)非常的少,仅仅占图像面积中极少的一部分,但是负... 阅读全文
posted @ 2019-07-26 13:26 bH1pJ 阅读(664) 评论(0) 推荐(0) 编辑
摘要:•出现该问题的原因是:选用的loss函数有问题,目前使用的loss函数是binary_corssentropy,这种loss函数将正样本和负样本均拿来计算loss值 •在医学图像分割的例子中,正样本(目标、器官等)非常的少,仅仅占图像面积中极少的一部分,但是负... 阅读全文
posted @ 2019-07-26 13:26 bH1pJ 阅读(350) 评论(0) 推荐(0) 编辑
摘要:参考: https://blog.csdn.net/dcrmg/article/details/78128041 https://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/index... 阅读全文
posted @ 2019-07-25 13:14 bH1pJ 阅读(25) 评论(0) 推荐(0) 编辑
摘要:参考: https://blog.csdn.net/dcrmg/article/details/78128041 https://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/index... 阅读全文
posted @ 2019-07-25 13:14 bH1pJ 阅读(20) 评论(0) 推荐(0) 编辑
摘要:总结的问题链: 1.python函数传递的是值?还是变量的引用? 2. Python 中变量与对象之间的关系。 引用:Python 中一切皆为对象,数字是对象,列表是对象,函数也是对象,任何东西都是对象。而变量是对象的一个引用(又称为名字或者标签),对象的... 阅读全文
posted @ 2019-07-25 12:00 bH1pJ 阅读(12) 评论(0) 推荐(0) 编辑
摘要:总结的问题链: 1.python函数传递的是值?还是变量的引用? 2. Python 中变量与对象之间的关系。 引用:Python 中一切皆为对象,数字是对象,列表是对象,函数也是对象,任何东西都是对象。而变量是对象的一个引用(又称为名字或者标签),对象的... 阅读全文
posted @ 2019-07-25 12:00 bH1pJ 阅读(29) 评论(0) 推荐(0) 编辑
摘要:参考了如下的博客 https://blog.csdn.net/gdh756462786/article/details/79163278 model.save_weights('model_weights.h5')model.load_weights('m... 阅读全文
posted @ 2019-07-24 16:26 bH1pJ 阅读(40) 评论(0) 推荐(0) 编辑
摘要:参考了如下的博客 https://blog.csdn.net/gdh756462786/article/details/79163278 model.save_weights('model_weights.h5')model.load_weights('m... 阅读全文
posted @ 2019-07-24 16:26 bH1pJ 阅读(34) 评论(0) 推荐(0) 编辑
摘要:参考了以下的博客 keras输出中间层结果,某一层的权重、偏置 https://www.cnblogs.com/wzdLY/p/9683657.html 并进行了尝试: #获得某一层的权重和偏置weight_Dense_1,bias_Dense_1 = m... 阅读全文
posted @ 2019-07-24 16:16 bH1pJ 阅读(132) 评论(0) 推荐(0) 编辑
摘要:参考了以下的博客 keras输出中间层结果,某一层的权重、偏置 https://www.cnblogs.com/wzdLY/p/9683657.html 并进行了尝试: #获得某一层的权重和偏置weight_Dense_1,bias_Dense_1 = m... 阅读全文
posted @ 2019-07-24 16:16 bH1pJ 阅读(65) 评论(0) 推荐(0) 编辑
摘要:类就像基因,所有的生物都需要依靠基因来实现。 比如,(仅仅是大个比方,请不要过分在意): A继承猴子; 猴子继承鱼; 鱼继承微生物; class Cell(object): # 微生物刚开始只会吃东西 def __init__(self, name... 阅读全文
posted @ 2019-07-24 12:01 bH1pJ 阅读(34) 评论(0) 推荐(0) 编辑
摘要:类就像基因,所有的生物都需要依靠基因来实现。 比如,(仅仅是大个比方,请不要过分在意): A继承猴子; 猴子继承鱼; 鱼继承微生物; class Cell(object): # 微生物刚开始只会吃东西 def __init__(self, name... 阅读全文
posted @ 2019-07-24 12:01 bH1pJ 阅读(40) 评论(0) 推荐(0) 编辑
摘要:我和他遇到了相同的问题: https://blog.csdn.net/qq_37828488/article/details/87539549 利用他的方法,我成功解决了问题: pip unistall tensorflowpip unistall te... 阅读全文
posted @ 2019-07-24 11:17 bH1pJ 阅读(32) 评论(0) 推荐(0) 编辑
摘要:我和他遇到了相同的问题: https://blog.csdn.net/qq_37828488/article/details/87539549 利用他的方法,我成功解决了问题: pip unistall tensorflowpip unistall te... 阅读全文
posted @ 2019-07-24 11:17 bH1pJ 阅读(25) 评论(0) 推荐(0) 编辑
摘要:请参考以下链接 https://blog.csdn.net/u010412858/article/details/78187215 需要安装以下的包 pip install pydot-ng pip install graphviz pip insta... 阅读全文
posted @ 2019-07-24 10:52 bH1pJ 阅读(173) 评论(0) 推荐(0) 编辑
摘要:请参考以下链接 https://blog.csdn.net/u010412858/article/details/78187215 需要安装以下的包 pip install pydot-ng pip install graphviz pip insta... 阅读全文
posted @ 2019-07-24 10:52 bH1pJ 阅读(114) 评论(0) 推荐(0) 编辑
摘要:配置环境 git clone https://github.com/keras-team/keras.gitD:cd D:\KerasProject\kerasconda create -n keras python=3.6activate keras co... 阅读全文
posted @ 2019-07-23 21:25 bH1pJ 阅读(17) 评论(0) 推荐(0) 编辑
摘要:配置环境 git clone https://github.com/keras-team/keras.gitD:cd D:\KerasProject\kerasconda create -n keras python=3.6activate keras co... 阅读全文
posted @ 2019-07-23 21:25 bH1pJ 阅读(19) 评论(0) 推荐(0) 编辑
摘要:方案一: 使用debug https://blog.csdn.net/tina_ttl/article/details/51034819 方案二: https://www.zhihu.com/question/38234248 我的总结 第一种是deb... 阅读全文
posted @ 2019-07-23 16:02 bH1pJ 阅读(74) 评论(0) 推荐(0) 编辑
摘要:方案一: 使用debug https://blog.csdn.net/tina_ttl/article/details/51034819 方案二: https://www.zhihu.com/question/38234248 我的总结 第一种是deb... 阅读全文
posted @ 2019-07-23 16:02 bH1pJ 阅读(53) 评论(0) 推荐(0) 编辑
摘要:如何更改pyCharm的python解释器,比如自己创建的虚拟环境中的解释器? https://blog.csdn.net/qq_39516859/article/details/80068910 根据以上的博客,我的问题得到了解决 ... 阅读全文
posted @ 2019-07-23 15:21 bH1pJ 阅读(22) 评论(0) 推荐(0) 编辑
摘要:如何更改pyCharm的python解释器,比如自己创建的虚拟环境中的解释器? https://blog.csdn.net/qq_39516859/article/details/80068910 根据以上的博客,我的问题得到了解决 ... 阅读全文
posted @ 2019-07-23 15:21 bH1pJ 阅读(148) 评论(0) 推荐(0) 编辑
摘要:官方教程 好像没有,但是可以参考: https://github.com/jakeret/tf_unet 配置环境 https://tf-unet.readthedocs.io/en/latest/installation.html git clone h... 阅读全文
posted @ 2019-07-23 13:57 bH1pJ 阅读(42) 评论(0) 推荐(0) 编辑
摘要:官方教程 好像没有,但是可以参考: https://github.com/jakeret/tf_unet 配置环境 https://tf-unet.readthedocs.io/en/latest/installation.html git clone h... 阅读全文
posted @ 2019-07-23 13:57 bH1pJ 阅读(57) 评论(0) 推荐(0) 编辑
摘要:官方教程为: https://github.com/CSBDeep/CSBDeep_website/wiki/CSBDeep-in-Fiji-%E2%80%93-Installation#gpu-support 注意:官方教程中的https要改成http才能下... 阅读全文
posted @ 2019-07-22 15:54 bH1pJ 阅读(56) 评论(0) 推荐(0) 编辑
摘要:官方教程为: https://github.com/CSBDeep/CSBDeep_website/wiki/CSBDeep-in-Fiji-%E2%80%93-Installation#gpu-support 注意:官方教程中的https要改成http才能下... 阅读全文
posted @ 2019-07-22 15:54 bH1pJ 阅读(48) 评论(0) 推荐(0) 编辑
摘要:1.配置环境 conda create -n n2v python=3.6activate n2vconda install tensorflow-gpu==1.12pip install jupyterpip install n2v 2.训练网络 D:act... 阅读全文
posted @ 2019-07-21 20:05 bH1pJ 阅读(54) 评论(0) 推荐(0) 编辑
摘要:1.配置环境 conda create -n n2v python=3.6activate n2vconda install tensorflow-gpu==1.12pip install jupyterpip install n2v 2.训练网络 D:act... 阅读全文
posted @ 2019-07-21 20:05 bH1pJ 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-07-12 11:17 bH1pJ 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-07-12 11:17 bH1pJ 阅读(84) 评论(0) 推荐(0) 编辑
摘要:点击combine 阅读全文
posted @ 2019-07-12 11:16 bH1pJ 阅读(45) 评论(0) 推荐(0) 编辑
摘要:点击combine 阅读全文
posted @ 2019-07-12 11:16 bH1pJ 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-07-12 11:15 bH1pJ 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-07-12 11:15 bH1pJ 阅读(125) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/sunnyzyq/article/details/86711708 按照教程来,来了一下午,一直出错: Error creating bean with name 'entityManagerFactory' def... 阅读全文
posted @ 2019-07-10 17:40 bH1pJ 阅读(12) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/sunnyzyq/article/details/86711708 按照教程来,来了一下午,一直出错: Error creating bean with name 'entityManagerFactory' def... 阅读全文
posted @ 2019-07-10 17:40 bH1pJ 阅读(13) 评论(0) 推荐(0) 编辑
摘要:更新MYSQL 表中的一列 MYSQL中批量替换某个字段的部分数据 https://blog.csdn.net/zhouguibao/article/details/77721078 阅读全文
posted @ 2019-07-10 12:37 bH1pJ 阅读(17) 评论(0) 推荐(0) 编辑
摘要:更新MYSQL 表中的一列 MYSQL中批量替换某个字段的部分数据 https://blog.csdn.net/zhouguibao/article/details/77721078 阅读全文
posted @ 2019-07-10 12:37 bH1pJ 阅读(48) 评论(0) 推荐(0) 编辑
摘要:mysql workbench导出mysql数据库? 方案1 https://bijian1013.iteye.com/blog/2358365 失败 方案2 https://blog.csdn.net/u012831423/article/details/5... 阅读全文
posted @ 2019-07-10 12:08 bH1pJ 阅读(28) 评论(0) 推荐(0) 编辑
摘要:mysql workbench导出mysql数据库? 方案1 https://bijian1013.iteye.com/blog/2358365 失败 方案2 https://blog.csdn.net/u012831423/article/details/5... 阅读全文
posted @ 2019-07-10 12:08 bH1pJ 阅读(39) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示