bug_x

导航

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

2019年6月27日

摘要: subprocess--子进程管理器一、subprocess 模块简介subprocess最早是在2.4版本中引入的。subprocess模块用来生成子进程,并可以通过管道连接它们的输入/输出/错误,以及获得它们的返回值。它用来代替多个旧模块和函数:os.systemos.spawn*os.pope 阅读全文
posted @ 2019-06-27 16:40 bug_x 阅读(2235) 评论(0) 推荐(0)
 

2019年6月26日

摘要: 分布函数(英文Cumulative Distribution Function, 简称CDF),是概率统计中重要的函数,正是通过它,可用数学分析的方法来研究随机变量。分布函数是随机变量最重要的概率特征,分布函数可以完整地描述随机变量的统计规律,并且决定随机变量的一切其他概率特征。 在数学中,连续型随 阅读全文
posted @ 2019-06-26 21:11 bug_x 阅读(1001) 评论(0) 推荐(0)
 
摘要: 向量范数: 0-范数:向量中非零元素的个数。 1-范数:向量元素绝对值之和,matlab调用函数norm(x, 1) 。 2-范数:Euclid范数(欧几里得范数,常用计算向量长度),即向量元素绝对值的平方和再开方,matlab调用函数norm(x, 2)。 ∞-范数:即所有向量元素绝对值中的最大值 阅读全文
posted @ 2019-06-26 19:33 bug_x 阅读(101) 评论(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 阅读(211) 评论(0) 推荐(0)
 
摘要: js parseUrl 的相关 阅读全文
posted @ 2019-06-25 11:52 bug_x 阅读(415) 评论(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 阅读(308) 评论(0) 推荐(0)
 
摘要: 1、 aaa 阅读全文
posted @ 2019-06-19 16:35 bug_x 阅读(2070) 评论(0) 推荐(0)
 
摘要: zip -r project.zip project/ -x@exclude.lst 阅读全文
posted @ 2019-06-19 15:08 bug_x 阅读(668) 评论(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 阅读(131) 评论(0) 推荐(0)
 
摘要: 1、Pickle模块 打包,解压训练模型 2、pysnooper 调试打印日志 阅读全文
posted @ 2019-06-19 10:21 bug_x 阅读(154) 评论(0) 推荐(0)
 
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 43 下一页