K近邻 K-nearest neighbor
K近邻 K-nearest neighbor算法 —— 物以类聚,人以群分
CNN卷积神经网络笔记
CNN卷积神经网络笔记 —— 专门用于图片
MACHINE LEARNING
监督学习
数据开发岗位实习经历
数据开发岗位实习
python-pycurl报错问题
ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other)完美解决办法 解决办法:命令行输入:pip uninstall pycurl export CPPFLAGS=-I/usr/local/opt/openssl/includeexport LDFLAGS=-L/usr/local/opt/openssl/lib pip install pycurl –global-option=”–with-openssl” 同时还有overflow高赞方法: 首先移除安装的pycurl pip uninstall pycurl 然后 export PYCURL_SSL_LIBRARY=openssl 重新安装pycurl,并且必须带有参数表示无缓存的条件下 pip install pycurl –no-cache-dir 我使用的是virtualenv虚拟环境。
Git 使用方法
拿到了另一家依靠大数据做toB的Saas公司的offer,回忆一下Git的使用方法
Python基本语法回顾
回忆python的基本使用方法。 by the way,这家公司主要是使用python2,由于岗位是侧重爬虫,所以主要回忆下字符串处理的方法。
零基础使用hexo搭建博客
喂饭式教程零基础搭建博客
Scrapy-Item Pipeline用法
Item pipeline 是项目管道
Scrapy中间件
Downloader Middleware和Spider Middleware