摘要: Paramiko is a Python (2.7, 3.4+) implementation of the SSHv2 protocol. error: command ‘x86_64-linux-gnu-gcc’ failed with exit status 1 解决办法:sudo apt-g 阅读全文
posted @ 2019-07-09 22:52 羊小羚 阅读(180) 评论(0) 推荐(0) 编辑
摘要: # 当elevation=0时,视角为沿x1负方向看,当elevation=90时,视角沿x3负方向看。# 当azimuth=0时,视角为沿x1负方向看,当azimuth=90时,视角沿x2负方向看。# 随着azimuth的增加,从x3负方向看,x1x2平面是顺时针旋转的。# 逆时针旋转,能把x1, 阅读全文
posted @ 2019-04-05 15:04 羊小羚 阅读(1093) 评论(0) 推荐(0) 编辑
摘要: many Machine Learning problems involve thousands or even millions of features for each training instance. not only does this make training extremely s 阅读全文
posted @ 2019-04-05 12:09 羊小羚 阅读(824) 评论(0) 推荐(0) 编辑
摘要: if you aggregate the predictions of a group of predictors,you will often get better predictions than with the best individual predictor. a group of pr 阅读全文
posted @ 2019-04-03 13:03 羊小羚 阅读(725) 评论(0) 推荐(0) 编辑
摘要: Decision Trees are versatile Machine Learning algorithms that can perform both classification and regression tasks,and even multioutput tasks. Decisio 阅读全文
posted @ 2019-04-01 17:28 羊小羚 阅读(760) 评论(0) 推荐(0) 编辑
摘要: MNIST fetch_openml returns the unsorted MNIST dataset, whereas fetch_mldata() returned the dataset sorted by target (the training set and the test set 阅读全文
posted @ 2019-03-26 17:03 羊小羚 阅读(957) 评论(0) 推荐(0) 编辑
摘要: 属性与特征: attribute: e.g., 'Mileage' feature: an attribute plus its value, e.g., 'Mileage = 15000' Note that some regression algorithm can be used for cl 阅读全文
posted @ 2019-03-22 12:06 羊小羚 阅读(225) 评论(0) 推荐(0) 编辑
摘要: at: 可以处理仅执行一次就结束排程的指令。需要atd服务 crontab: 所设定的指令将会循环地一直进行下去。需要crontab服务 at: Ubuntu16.04 默认没有安装atd服务。安装命令: $ sudo apt-get install at $ systemctl status at 阅读全文
posted @ 2019-03-20 18:16 羊小羚 阅读(192) 评论(0) 推荐(0) 编辑
摘要: df: 列出文件系统的整体磁盘使用量 du: 评估文件系统的磁盘使用量 $ df [-ahikHTm] [目录或文件名] 参数: -a: 列出所有的文件系统,包括系统特有的/proc 等文件系统 -k: -m: -h: human -H: 以M=1000K 取代M=1024K的进位方式 -T: 文件 阅读全文
posted @ 2019-03-20 12:51 羊小羚 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 文件系统的运作与操作系统的文件数据有关。较新的操作系统的文件数据除了文件实际内容外,通常含有非常多的属性,例如Linux操作系统的文件权限(rwx)与文件属性(属主、属组、时间参数等)。文件系统通常会将这两部分数据存放在不同的区块,权限与属性放置到inode 中,实际数据则放置到data block 阅读全文
posted @ 2019-03-19 19:07 羊小羚 阅读(849) 评论(0) 推荐(0) 编辑