摘要: git init //初始化本地git环境 git clone XXX//克隆一份代码到本地仓库 git pull <remote> <branch> //把远程库的代码更新到工作台。git pull = git fetch + git merge git pull --rebase origin 阅读全文
posted @ 2018-08-03 15:07 ottll 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/qq_28031525/article/details/70207918 RF、GBDT和XGBoost都属于集成学习(Ensemble Learning),集成学习的目的是通过结合多个基学习器的预测结果来改善单个学习器的泛化能力和鲁棒性。 根据个体 阅读全文
posted @ 2018-07-06 18:18 ottll 阅读(709) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/zcc_0015/article/details/76595447 已知三个feature,三个feature分别取值如下:feature1=[“male”, “female”]feature2=[“from Europe”, “from US”, 阅读全文
posted @ 2018-07-06 18:07 ottll 阅读(2244) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_605f5b4f010109z3.html 首先,CRF,HMM(隐马模型),MEMM(最大熵隐马模型)都常用来做序列标注的建模,像词性标注,True casing。但隐马模型一个最大的缺点就是由于其输出独立性假设,导致其不能考虑上下文的 阅读全文
posted @ 2018-06-29 18:42 ottll 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 参考源 使用wklken写的配置 开发版:https://github.com/wklken/k-vim服务器版:https://github.com/wklken/vim-for-server 环境的依赖1. vim版本需要7.4以上,直接使用git版本安装8.0。 2. gcc需要4.8以上版本 阅读全文
posted @ 2017-08-14 23:38 ottll 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 1. 安装Pythonsudo aptitude -y install python-dev 安装Distribute:支撑模块构建与导入的包sudo chmod -R 0775 /usr/localsudo chgrp -R allen /usr/localwget http://python-d 阅读全文
posted @ 2016-08-06 09:36 ottll 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 教程: 1. 廖雪峰的Python教程:http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000 阅读全文
posted @ 2016-08-06 09:36 ottll 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1. VirtualBox的安装 参考常规安装方式即可。 VirtualBox 4.3.14 for Windows hosts:http://download.virtualbox.org/virtualbox/4.3.14/VirtualBox-4.3.14-95030-Win.exe 2. U 阅读全文
posted @ 2016-08-06 09:20 ottll 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 错误 1.“from shapely.geometry import Point, LineString, Polygon”时报错: OSError: Could not find library geos_c or load any of its variants ['libgeos_c.so.1 阅读全文
posted @ 2016-04-21 17:59 ottll 阅读(2858) 评论(0) 推荐(0) 编辑
摘要: os.path.abspath(path) #返回绝对路径 os.path.basename(path) #返回文件名 os.path.commonprefix(list) #返回list(多个路径)中,所有path共有的最长的路径。 os.path.dirname(path) #返回文件路径 os 阅读全文
posted @ 2016-01-29 11:44 ottll 阅读(192) 评论(0) 推荐(0) 编辑