自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 How to update pip3 when having both pip2 and pip3

I have both python2.x and python3.x in my os and I want to update my pip3 to the newest.Here pip == pip2.So if I want to upgrade pip3,I find that this command is wrong: pip3 install --upgrade pip3

2018-01-29 21:27:18 334

转载 【TensorFlow】Windows10 64 位下安装 TensorFlow - 官方原生支持-(转)

之前 写过一篇在 ubuntu 下安装 TensorFlow 的教程,那个时候 TensorFlow 官方还不支持 Windows 系统,虽然可以通过其他方法安装,但是终究不是原生的,而且安装过程繁琐易错。好消息是,Google官方在11月29号的开发者博客中宣布新的版本(0.12)将 增加对Windows的支持,我11月30号知道的,立马就安装试了试,安装过程非常简单,不过也有一些需要手动调整。

2018-01-24 11:15:27 268

转载 Ubuntu 14.04 64 位安装 Google 的 TensorFlow-(转)

今天来说一下机器学习库 TensorFlow 的在 Ubuntu14.04 64位下的安装。 更新 这里我会列出对本文的更新。 2017 年 10 月 13 日: 优化排版,与其他博文保持统一。 去掉公众号相关内容。 什么是 TensorFlow 关于什么是 TensorFlow ,这里引用一下 官网 的介绍: TensorFlow™ is an

2018-01-24 11:14:17 222

原创 linear Regression/k-Nearest Neighbors regression ML model by python

Learned by the book Hands-On Machine Learning with Scikit-Learn and TensorFlow,chapter 1.It is a linearRegression ML model demo code. The relate datasets are below: handson-ml/datasets/lifesat/ The

2018-01-17 16:09:24 681

转载 pandas 下的重塑数据函数pivot-(转)

在CSV文件当中或者数据库当的数据通常以长格式或者(stacked)堆叠格式存储,特别是金融数据中出现的时间序列数据,例如: In [1]: df Out[1]: date variable value 0 2000-01-03 A 0.469112 1 2000-01-04 A -0.282863 2 2000-01-05

2018-01-17 15:36:43 1012

转载 git merge 和 git rebase 小结-(转)

git merge是用来合并两个分支的。 git merge b       # 将b分支合并到当前分支 同样 git rebase b,也是把 b分支合并到当前分支 ———————————– 他们的 原理 如下: 假设你现在基于远程分支”origin”,创建一个叫”mywork”的分支。 $ git checkout -b mywork origin 假设远程分支”ori

2018-01-16 14:46:40 228

原创 Python 3.6 install win32api

There is no version of specific version ofwin32api. You have to get the pywin32module which currently cannot be installed via pip. It is only available from this link at the moment. https://sourcefor

2018-01-15 14:03:53 6794 2

原创 discern the words in the picture and then search it on the web

Here are some questions I meet when doing this code: github tesseract-ocr/tesseract [Python]使用Selenium的webdriver访问页面(Firefox的geckodriver) chromedriver与chrome各版本及下载地址 selenium.common.exceptions.Web

2018-01-15 11:10:57 252

转载 简单对比git pull和git pull --rebase的使用-(转)

使用下面的关系区别这两个操作:git pull = git fetch + git mergegit pull –rebase = git fetch + git rebase 现在来看看git merge和git rebase的区别。 假设有3次提交A,B,C。 在远程分支origin的基础上创建一个名为”mywork”的分支并提交了,同时有其他人在”origin”上做了一些修改并提交了。

2018-01-11 15:14:04 7099 1

原创 Craw the data of the web page and parse to pdf

learned by here 把廖雪峰教程转换成 PDF 电子书.You can also craw other websites’ data and then parse to the pdf format.#-*- coding:utf-8 -*- import requests from bs4 import BeautifulSoup import pdfkitdef parse_url_

2018-01-02 10:50:43 272

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除