摘要: 最近学习发现,原来简单的人脸识别已经很成熟,都不需要用到AI了,直接有现成的库。 最开始是win10+pycharm,安装没搞定什么cmake ,dlib,face_recogniton库。尝试在虚拟机ubuntu中可以正常安装 尝试用家人照片,确实很快分割出来。 试试dota1的coco 和fac 阅读全文
posted @ 2019-01-06 15:16 uxiuxi 阅读(272) 评论(0) 推荐(0)
摘要: 前 几天有人问我redfish操作。有个客户说在浏览器输入redfish api无法打开。一般是用postman软件进行操作,记得在setting中关闭ssl。其实可以通过python也可以相关操作,这样更贴近上层应用 阅读全文
posted @ 2018-12-27 15:33 uxiuxi 阅读(4584) 评论(1) 推荐(0)
摘要: 以为公司的网有问题。一直不能update。但centos yum update正常。今天网上搜索到类似的 貌似成功了 https://blog.csdn.net/zzq123686/article/details/77454066 阅读全文
posted @ 2018-12-15 10:01 uxiuxi 阅读(742) 评论(0) 推荐(0)
摘要: PCH raid。通过mdadm创建 大公司很少用,监控不方便,性能一般,不能带外监控当前(下一代据说可以) 2个小时才创建完毕。3个1T SATA盘。 拔掉一个盘。 换一块新盘上去 观察前面板硬盘指示灯有黄色灯亮,重建能感知到 https://www.digitalocean.com/commun 阅读全文
posted @ 2018-12-11 15:07 uxiuxi 阅读(266) 评论(0) 推荐(0)
摘要: 恢复内容开始 重新安装epel源 yum install collectd安装collectd 启动collectd 服务。 安装collectd-web和其他依赖包 导入collectd-web git仓库并且修正python 服务器? 切换到/usr/local 默认软件安装目录 下载colle 阅读全文
posted @ 2018-12-03 20:04 uxiuxi 阅读(481) 评论(0) 推荐(0)
摘要: 很久前有人建议我学习下openstack,加上同事建议,最近学习下。 找到一本coa考试的教程,开始联系了。 遇到问题1:VirtualBox中网络只有一个“仅主机(Host-Onlu)网络(H)”。教程中明明有“NAT网络”+“仅主机(Host-Onlu)网络(H)”。多方搜索,确认virtual 阅读全文
posted @ 2018-11-28 10:56 uxiuxi 阅读(151) 评论(0) 推荐(0)
摘要: [root@localhost prog]# cat trap2.sh #!/bin/bash function cleanup() { echo "Received signals and cleanup files" } #trap 到SIG信号,自动停止 trap 'cleanup;exit 1' SIGHUP trap 'cleanup;exit 1' SIGI... 阅读全文
posted @ 2018-11-17 16:22 uxiuxi 阅读(1566) 评论(0) 推荐(0)
摘要: 检验下shell的随机数,看分布是否均匀 阅读全文
posted @ 2018-11-17 11:55 uxiuxi 阅读(186) 评论(0) 推荐(0)
摘要: cat filename.txt |while read LINE do echo $LINE done # LINE在这里面只是随便一个变量,并不是内置 或者 #!/bin/bash while read aa do echo $aa done< filename.txt #这种格式看起来更好 #!/bin/bash myfile=filename.tx... 阅读全文
posted @ 2018-11-17 11:02 uxiuxi 阅读(148) 评论(0) 推荐(0)
摘要: 先下载3个文件 其中内核对应uname -r的参数,相关安装包可以通过http://debuginfo.centos.org/7/x86_64/下载 kernel-debug-debuginfo-3.10.0-862.14.4.el7.x86_64.rpmkernel-debuginfo-3.10. 阅读全文
posted @ 2018-11-04 15:19 uxiuxi 阅读(755) 评论(0) 推荐(0)