E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
hands
《
Hands
-On Machine Learning with Scikit-Learn & TensorFlow》读书笔记 第五章 支持向量机
第5章支持向量机支持向量机(SVM)是个非常强大并且有多种功能的机器学习模型,能够做线性或者非线性的分类,回归,甚至异常值检测。机器学习领域中最为流行的模型之一,是任何学习机器学习的人必备的工具。SVM特别适合应用于复杂但中小规模数据集的分类问题。线性支持向量机分类SVM的基本思想能够用一些图片来解释得很好。左边的图显示了三种可能的线性分类器的判定边界。其中用虚线表示的线性模型判定边界很差,甚至不
justry24
·
2018-06-14 16:46
hands-on
ML
with
Sklearn&TF
《
Hands
-On Machine Learning with Scikit-Learn & TensorFlow》读书笔记 第四章 训练模型(回归)
第4章训练模型(回归)首先我们将以一个简单的线性回归模型为例,讨论两种不同的训练方法来得到模型的最优解:直接使用封闭方程进行求根运算,得到模型在当前训练集上的最优参数(即在训练集上使损失函数达到最小值的模型参数)使用迭代优化方法:梯度下降(GD),在训练集上,它可以逐渐调整模型参数以获得最小的损失函数,最终,参数会收敛到和第一种方法相同的的值。同时,我们也会介绍一些梯度下降的变体形式:批量梯度下降
justry24
·
2018-06-11 15:53
hands-on
ML
with
Sklearn&TF
《
Hands
-On Machine Learning with Scikit-Learn & TensorFlow》读书笔记 第三章 分类
第三章 分类ClassificationMNIST在本章当中,我们将会使用MNIST这个数据集,它有着70000张规格较小的手写数字图片,由美国的高中生和美国人口调查局的职员手写而成。Scikit-Learn提供了许多辅助函数,以便于下载流行的数据集。MNIST是其中一个。下面的代码获取MNISTfromsklearn.datasetsimportfetch_mldatamnist=fetch_m
justry24
·
2018-06-05 15:15
hands-on
ML
with
Sklearn&TF
《
Hands
-On Machine Learning with Scikit-Learn & TensorFlow》读书笔记 第二章 机器学习项目
第二章 端到端机器学习项目End-to-EndMachineLearningProject流水线Pipeline一系列的数据处理组件被称为数据流水线。流水线在机器学习系统中很常见,因为有许多数据要处理和转换。组件通常是异步运行的。每个组件吸纳进大量数据,进行处理,然后将数据传输到另一个数据容器中,而后流水线中的另一个组件收入这个数据,然后输出,这个过程依次进行下去。每个组件都是独立的:组件间的接口
justry24
·
2018-05-31 15:50
hands-on
ML
with
Sklearn&TF
《
Hands
-On Machine Learning with Scikit-Learn & TensorFlow》读书笔记 第一章 机器学习概述
第一章机器学习概述TheMachineLearningLandscape什么是机器学习?MachineLearningisthescience(andart)ofprogrammingcomputerssotheycanlearnfromdata.机器学习是通过编程让计算机从数据中进行学习的科学(和艺术)MachineLearningisthefieldofstudythatgivescomput
justry24
·
2018-05-29 20:41
hands-on
ML
with
Sklearn&TF
sklearn机器学习之分类问题(使用mnist作为数据集)
0.前言本次还是利用《
hands
_on_ML_with_Sklearn_and_TF》这本书的内容进行学习,以前学习了数据的处理(测试集的划分以及数据预处理),这次我们将重心放到机器学习的一个重点——分类问题
maybe_fate
·
2018-05-17 21:36
机器学习
机器学习-数据处理(
hands
_on_Ml_with_Sklearn_and_TF)
1.上次的blog中说了说数据分割的方法,这次我想谢谢数据处理的过程,大多数的机器学习中原始数据集会出现数据缺失、数据异常等等问题,而我们在做机器学习中数据集的重要性不言而喻,所以在实验之前我们要对数据集进行一定的处理。注:数据集还是使用的美国加利福利亚州各地的房价,这在我的上一篇blog中有点击打开链接针对数据缺失我们可以有三种方法进行处理:1)去掉对应的街区2)去掉整个属性3)进行填充(0、平
maybe_fate
·
2018-05-13 13:15
hands
_on_Ml_with_Sklearn_and_TF(开始一个小项目——训练集与测试集的划分)
1.这次我想以学习笔记的形式对《
hands
_on_ML_with_Sklearn_and_TF》这本书进行学习,我看了许多关于机器学习或是深度学习的书籍或是资料,总体而言我觉得这本书写的很详细,不仅仅有原理的解释还有代码的操作
maybe_fate
·
2018-05-06 16:13
【Python学习】【scikit-learn】Pipeline报错fit_transform() takes 2 positional arguments but 3 were given
最近在读
Hands
-OnMachineLearningwithScikit-Learn&TensorFlow这本书,在学到pipeline的时候,我模仿者写了这样的代码:[python]viewplaincopynum_attribs
bitosky
·
2018-04-22 13:24
python
sklearn
IntelliTest(4) –
Hands
on[译]
在我们写传统单元测试时,为了达到一定的覆盖率,开发者需要反复的做一些类似的工作,比如,写测试用例,查看哪些代码未被覆盖,继续写测试用例覆盖之,直到所有的代码都被覆盖。 有了IntelliTest后,这一切都变得不一样了。我们会手把手的介绍IntelliTest技术,为了便于大家理解,会使用一个demo项目。一、准备demo项目 按照上面给出的GitHub地址,克隆项目后,打开PokerLe
Johnny_
·
2018-04-10 21:14
一个比较完整的机器学习例子
一个比较完整的机器学习例子本文根据《
Hands
-onMachineLearningwithScikit-LearnandTensorFlow》中的第二章整理而成。
冯轩
·
2018-04-10 20:54
OReilly.
Hands
-On.Machine.Learning.with.Scikit-Learn.and.TensorFlow.翻译以及读书心得--p41-53
GetData作者的资源都放到了这里的对应位置https://github.com/ageron/handson-ml.这一章,房价的数据集在这里:https://github.com/ageron/handson-ml/tree/master/datasets/housingCreatetheWorkspace:操作系统最好用Ubuntu16.04创建工作区:$exportML_PATH="$H
Qin_xian_shen
·
2018-04-01 16:59
OReilly.
Hands
-On.Machine.Learning.with.Scikit-Learn.and.TensorFlow.翻译以及读书心得--p41-53
GetData作者的资源都放到了这里的对应位置https://github.com/ageron/handson-ml.这一章,房价的数据集在这里:https://github.com/ageron/handson-ml/tree/master/datasets/housingCreatetheWorkspace:操作系统最好用Ubuntu16.04创建工作区:$exportML_PATH="$H
Qin_xian_shen
·
2018-04-01 16:59
OReilly.
Hands
-On.Machine.Learning.with.Scikit-Learn.and.TensorFlow.翻译以及读书心得--p33-p40
机器学习步骤:1.Lookatthebigpicture.2.Getthedata.3.Discoverandvisualizethedatatogaininsights.4.PreparethedataforMachineLearningalgorithms.5.Selectamodelandtrainit.6.Fine-tuneyourmodel.7.Presentyoursolution.8
Qin_xian_shen
·
2018-04-01 00:01
IB教学中的阅读和写作
2、学生讨论工具箱:记录教学策略和评估策略1、KWLS2、
Hands
Miya_Mai
·
2018-02-11 13:50
全是惊喜!800米的五原路,隐匿了“三毛之父”故居、古董店、小酒馆,还有名人常去的画廊咖啡馆~
乌鲁木齐中路横穿其中全长820米,从头走到底大概十分钟不到但要真逛起来,一整天都不够此前只知道“”三毛之父”张乐平故居隐匿在此来了之后才发现五原路的宝藏实在是太多了得一家家去深挖每一角落都是想象的样子/
hands
上海头条
·
2018-02-03 00:00
自我学习之es6(6)
es6的新特性里增加了类和类的继承,其实这个特性也是向后台语言借鉴过来的,先来看下es5的时候如何构造一个对象functionHuman(){this.eyes=2;this.
hands
=2;}Human.prototype.singing
natalie86
·
2018-01-31 11:08
javascipt
《
Hands
On Machine Learning with Scikit-Learn and TensorFlow》读书笔记(1)
今天开始记录一下《HandsOnMachineLearningwithScikit-LearnandTensorFlow》的内容要点。数据下载导入必要的Python包,下载本书的数据。importosimporttarfilefromsix.movesimporturllibDOWNLOAD_ROOT="https://raw.githubusercontent.com/ageron/handso
xyzcxy
·
2018-01-22 16:46
《Hands
On
Machine
Learning
wit
《
Hands
-on Machine Learning with Scikit-Learn and TensorFlow》 读书笔记
importpandasaspdimportnumpyasnpimportmatplotlib.pyplotasplthousing=pd.read_csv('D:\\pythondata\\housing.csv')housing.plot(kind="scatter",x="longitude",y="latitude")housing.plot(kind="scatter",x="longi
ju22
·
2018-01-18 14:44
python
HandsOn-ML学习笔记(1)用机器学习方法解决简单回归问题
文中的中文全部来自作者蹩脚的翻译,还望理解书名叫《
Hands
-OnMachineLearningwithScikit-Learn&Tensorflow》,我用的是东南大学的影印版,封面大概是这个样子(图片来自京东
sdoddyjm68
·
2018-01-06 21:55
学习笔记
If you put out your
hands
, mind, heart and soul
Ifyouputoutyourhands,youarealaborer;ifyouputoutyourhandsandyourmind,youareacraftsperson;ifyouputoutyourhands,mind,heartandsoul,youareanartist..
DeepWeaver
·
2017-12-10 22:06
将Ai口语进行到底:
hands
-on
今天我们来学一个形容词,叫
hands
-on手+放在某个东西上面=实际的,切身的多用于表达“切身体会”,“实际操作”这类场景。
寶龍Chris
·
2017-12-04 03:31
《Scikit-Learn与TensorFlow机器学习实用指南》
看了《Scikit-Learn与TensorFlow机器学习实用指南》(
Hands
-OnMachineLearningwithScikit-LearnandTensorFlow)一书的序言和第1章的一部分
SeanCheney
·
2017-11-15 23:07
实用数字取证(作者、审稿人,前言)
PracticalDigitalForensics实用数字取证(作者、审稿人,前言)Getstartedwiththeartandscienceofdigitalforensicswiththispractical,
hands
-onguide
nana7
·
2017-09-23 13:42
【译】All-
Hands
该怎么做
All-
Hands
,翻译为全体会议。一般国外科技公司(不确定其他行业是不是也有)的工作者都不会陌生。国外的公司没有周例会、季度总结会、公司年会的等各种概念,All-
Hands
一般就充当了这种作用。
iamfanny
·
2017-09-15 22:47
多人脸部\肢体\手部识别OpenPose安装
CMU-Perceptual-Computing-Lab/openpose项目需求:操作系统:win7,win8,win10;ubuntu14.04,16.04cuda:7.5,8cuDNN5.1pose_face_
hands
.gifwindows
lxy_Alex
·
2017-09-08 14:33
chapter2 of OReilly.
Hands
-On.Machine.Learning.with.Scikit-Learn.and.TensorFlow
Theprocessofoneproject:1.Lookatthebigpicture.2.Getthedata.3.Discoverandvisualizethedatatogaininsights.4.PreparethedataforMachineLearningalgorithms.5.Selectamodelandtrainit.6.Fine-tuneyourmodel.7.Prese
akon_wang_hkbu
·
2017-08-02 09:30
hands-on
Machine
learning
读书笔记
鹅妈妈童谣No.12-Warm
hands
warm
图片发自App【童谣】Warmhands,warm,Themenaregonetoplough,Ifyouwanttowarmyourhands,Warmyourhandsnow.暖暖手,暖暖手男人要外出耕田了如果你想暖暖你的手现在就来暖暖手吧【童谣文化】这又是一首画面特别温馨的童谣,男人们都出去干活耕田,在家里的炉火旁,兔妈妈拥着兔宝宝坐在壁炉边,抚摸着她的小手,兔宝宝闭上双眼,头倚在妈妈的身上
gaogao爱音乐
·
2017-06-24 17:38
Carter Shakes
Hands
With Every Passenger On Flight To Washington卡特总统与同机飞往华盛顿的每位乘客握手
图片发自AppJimmyCarterismakingflyinggreatagain.The92-year-oldformerpresidentboardedaDeltaflightfromAtlantatoWashingtononThursdayandshookhandswitheverypassengeronboard―afriendlygesturehehasmadeahabitof.Pas
祥龙遨游四海
·
2017-06-12 13:28
What's new in Swift 4.0
Hands
-oncodeexamplestohelpyoulearnwhat'snewinSwift4:newencodinganddecoding,smarterkeypaths,multi-linestrings
WildDylan
·
2017-06-09 17:07
从移动OS变迁到语言简史,漫谈程序员编程之路
前些日子,Youtube上看到了一位网名为“9To5Google”的发布者,上传了一段视频:
Hands
-onwithGoogle'snewFuchsiaOS视频截图在视频下方,还附上了一篇关于谷歌这个新操作系统
世相微语
·
2017-05-16 18:47
宝玩 06 洗澡场景
Icanwashmyhair.hair,feet,face,knees(头发,脚,脸,膝盖)第二段唱了shoulders,toes,
hands
,nose(肩膀,脚趾头,手,鼻子)takeabath,是澡盆洗澡
wk悟空妈妈芳香母婴
·
2017-05-05 13:39
HandsFree OpenRE编译及烧录
OpenRE编译环境的搭建首先我们先将OpenRE的代码下下来:gitclonehttps://github.com/
HANDS
Forrest-Z
·
2017-04-18 09:18
ROS
Machine Learning with Scikit-Learn and Tensorflow 7.10 Stacking
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-04-07 20:47
机器学习
Machine Learning with Scikit-Learn and Tensorflow 7.9 Gradient Boosting
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-04-06 23:00
机器学习
Machine Learning with Scikit-Learn and Tensorflow 7.8 AdaBoost
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-04-06 16:33
机器学习
Machine Learning with Scikit-Learn and Tensorflow 7.7 特征重要程度
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-04-06 15:37
机器学习
Machine Learning with Scikit-Learn and Tensorflow 7.5 随机森林
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-04-06 11:55
机器学习
Machine Learning with Scikit-Learn and Tensorflow 6 决策树(章节目录)
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-04-01 22:09
机器学习
Machine Learning with Scikit-Learn and Tensorflow 6.9 决策树局限性
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-04-01 11:06
机器学习
Machine Learning with Scikit-Learn and Tensorflow 6.8 决策树回归
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-04-01 09:23
机器学习
Machine Learning with Scikit-Learn and Tensorflow 6.6 基尼不纯度/熵
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-03-31 22:12
机器学习
Machine Learning with Scikit-Learn and Tensorflow 6.5 计算复杂度
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-03-31 21:37
机器学习
Machine Learning with Scikit-Learn and Tensorflow 6.4 CART算法
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-03-31 21:08
机器学习
Machine Learning with Scikit-Learn and Tensorflow 6.1 决策树的训练与可视化
书籍信息
Hands
-OnMachineLearningwithScikit-LearnandTensorflow出版社:O’ReillyMedia,Inc,USA平装:566页语种:英语ISBN:1491962291
qinhanmin
·
2017-03-30 20:48
机器学习
你是否适合写博客?-23个自测问题
hands
-woman-laptop-working.jpg写好博客有捷径么?好像有好像没有。但你想建立博客前,我觉得还是多做准备工作为好,比如先退回一步,看看下面的自测问题。
金博客
·
2017-02-26 07:33
Design of Computer Programs L1
以下是较完整代码:importrandomdefpoker(
hands
):"""Returnalistofwinninghands:poker([hand,.
NoneLand
·
2017-01-23 19:08
Raspberry Pi
Hands
on/树莓派入手指南
快过年了,忙里偷闲,写一篇博客记录一下前面这么多天玩树莓派的心得。树莓派是什么?英文名字叫RaspberryPi,就是一台很小的微型计算机,运行着ARM的处理器,能够进行一些物联网的开发,当然也可以充当一台计算机,可以连接显示器,安装桌面系统,看看视频,上网都是没有问题的,如果你是拿来做开发,我们当然要做一些很酷的事情啊!知乎上有个问题大家可以去看看「树莓派」是什么以及普通人怎么玩?看到图你可能会
天堂迈舞
·
2017-01-20 18:07
原型设计的快速方法docker-compose
如果你已经阅读过
Hands
-onDockertutorial,那么你应该已经可以使用命令
Jack__CJ
·
2016-11-23 13:11
Linux
编程训练
输出Lily的所有图片按照从小到大的顺序输出样例输入Ihave1nose2
hands
10fingers样例输出0112Iaa
左手码农
·
2016-09-12 20:44
其他
上一页
9
10
11
12
13
14
15
16
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他