摘要:
git init //初始化本地git环境 git clone XXX//克隆一份代码到本地仓库 git pull <remote> <branch> //把远程库的代码更新到工作台。git pull = git fetch + git merge git pull --rebase origin 阅读全文
摘要:
原文:https://blog.csdn.net/qq_28031525/article/details/70207918 RF、GBDT和XGBoost都属于集成学习(Ensemble Learning),集成学习的目的是通过结合多个基学习器的预测结果来改善单个学习器的泛化能力和鲁棒性。 根据个体 阅读全文
摘要:
原文:https://blog.csdn.net/zcc_0015/article/details/76595447 已知三个feature,三个feature分别取值如下:feature1=[“male”, “female”]feature2=[“from Europe”, “from US”, 阅读全文
摘要:
http://blog.sina.com.cn/s/blog_605f5b4f010109z3.html 首先,CRF,HMM(隐马模型),MEMM(最大熵隐马模型)都常用来做序列标注的建模,像词性标注,True casing。但隐马模型一个最大的缺点就是由于其输出独立性假设,导致其不能考虑上下文的 阅读全文
摘要:
参考源 使用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以上版本 阅读全文
摘要:
1. 安装Pythonsudo aptitude -y install python-dev 安装Distribute:支撑模块构建与导入的包sudo chmod -R 0775 /usr/localsudo chgrp -R allen /usr/localwget http://python-d 阅读全文
摘要:
教程: 1. 廖雪峰的Python教程:http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000 阅读全文
摘要:
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 阅读全文
摘要:
错误 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 阅读全文
摘要:
os.path.abspath(path) #返回绝对路径 os.path.basename(path) #返回文件名 os.path.commonprefix(list) #返回list(多个路径)中,所有path共有的最长的路径。 os.path.dirname(path) #返回文件路径 os 阅读全文