bug_x

导航

 
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 43 下一页

2019年6月26日

摘要: 分布函数(英文Cumulative Distribution Function, 简称CDF),是概率统计中重要的函数,正是通过它,可用数学分析的方法来研究随机变量。分布函数是随机变量最重要的概率特征,分布函数可以完整地描述随机变量的统计规律,并且决定随机变量的一切其他概率特征。 在数学中,连续型随 阅读全文
posted @ 2019-06-26 21:11 bug_x 阅读(946) 评论(0) 推荐(0) 编辑
 
摘要: 向量范数: 0-范数:向量中非零元素的个数。 1-范数:向量元素绝对值之和,matlab调用函数norm(x, 1) 。 2-范数:Euclid范数(欧几里得范数,常用计算向量长度),即向量元素绝对值的平方和再开方,matlab调用函数norm(x, 2)。 ∞-范数:即所有向量元素绝对值中的最大值 阅读全文
posted @ 2019-06-26 19:33 bug_x 阅读(93) 评论(0) 推荐(0) 编辑
 

2019年6月25日

摘要: 最新链接:https://www.w3.org/TR/html53/ 2.6 URLs — HTML5 This is a work in progress! For the latest updates from the HTML WG, possibly including important 阅读全文
posted @ 2019-06-25 11:55 bug_x 阅读(193) 评论(0) 推荐(0) 编辑
 
摘要: js parseUrl 的相关 阅读全文
posted @ 2019-06-25 11:52 bug_x 阅读(393) 评论(0) 推荐(0) 编辑
 

2019年6月19日

摘要: shutil:高级的 文件、文件夹、压缩包 处理模块 shutil.copyfileobj(fsrc, fdst[, length])(copyfileobj方法只会拷贝文件内容)将文件内容拷贝到另一个文件中 shutil.copyfile(src, dst) (copyfile只拷贝文件内容)拷贝 阅读全文
posted @ 2019-06-19 17:16 bug_x 阅读(302) 评论(0) 推荐(0) 编辑
 
摘要: 1、 aaa 阅读全文
posted @ 2019-06-19 16:35 bug_x 阅读(1940) 评论(0) 推荐(0) 编辑
 
摘要: zip -r project.zip project/ -x@exclude.lst 阅读全文
posted @ 2019-06-19 15:08 bug_x 阅读(635) 评论(0) 推荐(0) 编辑
 
摘要: 上篇文章中的reshape(-1,2),有的时候不明白为什么会有参数-1,可以通过查找文档中的reshape()去理解这个问题 根据Numpy文档(https://docs.scipy.org/doc/numpy/reference/generated/numpy.reshape.html#nump 阅读全文
posted @ 2019-06-19 11:01 bug_x 阅读(114) 评论(0) 推荐(0) 编辑
 
摘要: 1、Pickle模块 打包,解压训练模型 2、pysnooper 调试打印日志 阅读全文
posted @ 2019-06-19 10:21 bug_x 阅读(144) 评论(0) 推荐(0) 编辑
 

2019年6月18日

摘要: 在Python3中已经有很大一部分语句与Python2不互通了,运行暂停的方法也有所不同。 1、input(); 这种方法不用包含模块,因此这也是最常用的一种暂停手段。 Python2中的raw_input()和input()语句在Python3中已经被合并到input()中。 2、os.syste 阅读全文
posted @ 2019-06-18 21:09 bug_x 阅读(2635) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 43 下一页