上一页 1 ··· 146 147 148 149 150 151 152 153 154 ··· 273 下一页
摘要: 网址:https://s3.amazonaws.com/img-datasets/mnist.npz,由于显而易见的原因,无法访问。 npz实际上是numpy提供的数组存储方式,简单的可看做是一系列npy数据的组合,利用np.load函数读取后得到一个类似字典的对象,可以通过关键字进行值查询,关键字 阅读全文
posted @ 2018-06-06 15:14 bonelee 阅读(6728) 评论(1) 推荐(0)
摘要: 1为黑样本,0为白样本: Counter({1: 105, 0: 95}) check counter!confusion_matrix:[[83 12(预测值为1,实际为0,误报)] [15(预测值为0,实际为1,漏报!) 90]] 因为样本不均衡的分类器需要着重关注,因此注意下! 阅读全文
posted @ 2018-06-06 11:39 bonelee 阅读(386) 评论(0) 推荐(0)
摘要: ROC和AUC介绍以及如何计算AUC from:http://alexkong.net/2013/06/introduction-to-auc-and-roc/ ROC(Receiver Operating Characteristic)曲线和AUC常被用来评价一个二值分类器(binary clas 阅读全文
posted @ 2018-06-06 11:16 bonelee 阅读(3065) 评论(0) 推荐(0)
摘要: go语言在开发效率和运行效率中的优势让很多人青睐,所以有倾向打算转向go语言的开发。 下面介绍在Mac OS X中golang的开发环境配置。 1.安装brew brew是一个mac下的由ruby开发的包管理系统,其官网是http://brew.sh。你只要在你的终端中执行 便可将其安装完成。 安装 阅读全文
posted @ 2018-06-05 15:15 bonelee 阅读(735) 评论(1) 推荐(0)
摘要: 实际上两种都用到了:1,服务提供商(123NAT,花生壳)做Proxy转发 2,两个私网地址直接连接:STUN 和TURN 使用动态域名解析还是端口映射 什么情况下使用动态域名解析?什么情况下使用nat123端口映射? 概述: 1,本地有公网IP时,使用动态域名解析。动态解析后,域名访问走本地带宽, 阅读全文
posted @ 2018-06-05 10:22 bonelee 阅读(3203) 评论(1) 推荐(0)
摘要: ahzoyr.codtuqb.netvzugk.bizyfewr.bizbgqjyk.bizcdychl.comcjgfuk.comcnncfc.cometypsc.comfaouli.comffjjuu.topggjffj.comgokvud.comhmzbsc.comifioor.comijgg 阅读全文
posted @ 2018-06-04 10:38 bonelee 阅读(2341) 评论(1) 推荐(0)
摘要: 通过httptunnel技术进行入侵示例 httptunnel是通过HTTP通道来传输其他协议数据的工具软件,下载地址为:www.http-tunnel. com,目前最新版本3.0.5 通过httptunnel技术进行入侵示例 com,目前最新版本3.0.5 com,目前最新版本3.0.5 com 阅读全文
posted @ 2018-06-04 10:27 bonelee 阅读(3346) 评论(3) 推荐(0)
摘要: Given an array consisting of n integers, find the contiguous subarray of given length k that has the maximum average value. And you need to output the 阅读全文
posted @ 2018-06-03 23:26 bonelee 阅读(296) 评论(0) 推荐(0)
摘要: The count-and-say sequence is the sequence of integers with the first five terms as following: 1 is read off as "one 1" or 11. 11 is read off as "two 阅读全文
posted @ 2018-06-03 23:12 bonelee 阅读(217) 评论(0) 推荐(0)
摘要: 请简述神经网络的发展史sigmoid会饱和,造成梯度消失。于是有了ReLU。ReLU负半轴是死区,造成梯度变0。于是有了LeakyReLU,PReLU。强调梯度和权值分布的稳定性,由此有了ELU,以及较新的SELU。太深了,梯度传不下去,于是有了highway。干脆连highway的参数都不要,直接 阅读全文
posted @ 2018-06-03 17:13 bonelee 阅读(944) 评论(0) 推荐(0)
上一页 1 ··· 146 147 148 149 150 151 152 153 154 ··· 273 下一页