上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: 官方教程:http://xgboost.readthedocs.io/en/latest/get_started/index.html 一、安装库: 1.Linux系统 2.Windows 系统(官方方法) 首先到github官网下载git bash 然后下载库: XGBoost 编译支持 MSVC 阅读全文
posted @ 2017-12-12 14:18 蓝天飞翔的白云 阅读(490) 评论(0) 推荐(0) 编辑
摘要: Introduction If you have been using GBM as a ‘black box’ till now, may be it’s time for you to open it and see, how it actually works! This article is 阅读全文
posted @ 2017-12-08 18:34 蓝天飞翔的白云 阅读(372) 评论(0) 推荐(0) 编辑
摘要: CentOS 7.0默认使用的是firewall作为防火墙 启动一个服务:systemctl start firewalld.service 关闭一个服务:systemctl stop firewalld.service 重启一个服务:systemctl restart firewalld.serv 阅读全文
posted @ 2017-12-05 23:45 蓝天飞翔的白云 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 参考此文档:http://www.jb51.net/article/116032.htm http://www.jb51.net/article/95399.htm 1.在官网下载mysql57-community-release-el7-11.noarch.rpm rpm -ivh mysql57 阅读全文
posted @ 2017-12-05 23:37 蓝天飞翔的白云 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 1.在http://libevent.org/下载libevent-2.1.8-stable.tar.gz 2.解压缩 tar -zxvf libevent-2.1.8-stable.tar.gz cd libevent-2.1.8-stable 3. ./configure –-prefix=/h 阅读全文
posted @ 2017-12-04 17:31 蓝天飞翔的白云 阅读(4428) 评论(0) 推荐(0) 编辑
摘要: 1.在http://www.boost.org/下载boost安装包boost_1_65_1.tar.gz 2.在Centos上解压tar -zxvf boost_1_65_1.tar.gz后,cd进入boost_1_65_1目录 3.安装boost库到指定目录 ./b2 install --pre 阅读全文
posted @ 2017-12-04 16:29 蓝天飞翔的白云 阅读(13982) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-12-03 16:55 蓝天飞翔的白云 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Python解释执行原理 转自:http://l62s.iteye.com/blog/1481421 这里的解释执行是相对于编译执行而言的。我们都知道,使用C/C++之类的编译性语言编写的程序,是需要从源文件转换成计算机使用的机器语言,经过链接器链接之后形成了二进制的可执行文件。运行该程序的时候,就 阅读全文
posted @ 2017-12-03 15:17 蓝天飞翔的白云 阅读(7285) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver driver=webdriver.Firefox() 会报错 解决方法: 因为缺少geckodriver.exe,先到https://github.com/mozilla/geckodriver/releases下载对应版本的geckof 阅读全文
posted @ 2017-11-25 15:33 蓝天飞翔的白云 阅读(7142) 评论(0) 推荐(1) 编辑
摘要: # os 模块 os.sep 可以取代操作系统特定的路径分隔符。windows下为 '\\'os.name 字符串指示你正在使用的平台。比如对于Windows,它是'nt',而对于Linux/Unix用户,它是 'posix'os.getcwd() 函数得到当前工作目录,即当前Python脚本工作的 阅读全文
posted @ 2017-11-21 23:13 蓝天飞翔的白云 阅读(420) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页