Hands-On Machine Learning with Scik
文章平均质量分 97
boywaiter
这个作者很懒,什么都没留下…
展开
-
Chapter 2 End-to-End Machine Learning Project
Chapter 2 End-to-End Machine Learning Project需要掌握1、获取数据a)下载tgz文件,在本地解压为csv格式文件import osimport tarfilefrom six.moves import urllib#远程网站根目录DOWNLOAD_ROOT = "https://raw.githubusercontent.com/ager...原创 2019-01-18 14:51:14 · 335 阅读 · 0 评论 -
Chapter 15 Autoencoders
Chapter 15 AutoencodersOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记Autoencoders are artificial neural networks capable of learning efficient representations of the input d...原创 2019-04-09 09:27:22 · 546 阅读 · 0 评论 -
Chapter 14 Recurrent Neural Networks
Chapter 14 Recurrent Neural NetworksOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记Recurrent Neural Networks (RNNs) is a class of nets that can predict the future.analyze t...原创 2019-03-31 14:05:24 · 456 阅读 · 0 评论 -
Chapter 13 Convolutional Neural Networks
Chapter 13 Convolutional Neural NetworksOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记13.1 The Architecture of the Visual CortexMany neurons in the visual cortex have a sma...原创 2019-03-22 20:27:54 · 707 阅读 · 0 评论 -
Chapter 12 Distributing TensorFlow Across Devices and Servers
Chapter 12 Distributing TensorFlow Across Devices and ServersOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记12.1 Multiple Devices on a Single Machine12.1.1 InstallationChec...原创 2019-03-16 10:44:40 · 643 阅读 · 0 评论 -
chapter 11 Training Deep Neural Nets
chapter 11 Training Deep Neural NetsOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记A chapter that you will never miss a single word. This note thus may miss some import conte...原创 2019-03-07 16:08:26 · 22048 阅读 · 0 评论 -
Chapter 6 决策树
OReilly.Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记Chapter 6 Decision TreesLike SVMs, Decision Trees are versatile ML algorithms that can perform both classification and regressio...原创 2019-02-14 08:35:53 · 471 阅读 · 0 评论 -
Chapter 10 Introduction to Artificial Neural Networks
Chapter 10 Introduction to Artificial Neural NetworksOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记10.1 From Biological to Artificial NeuronsA huge quantity of data availab...原创 2019-02-24 23:24:27 · 465 阅读 · 0 评论 -
Chapter 8 Dimensionality Reduction
Chapter 8 Dimensionality ReductionOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记Dimensionality reduction speeds up training.Dimensionality reduction is also extremely usefu...原创 2019-02-18 21:58:10 · 618 阅读 · 0 评论 -
chapter 5 支持向量机
OReilly.Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记chapter 5 支持向量机Support Vector Machine (SVM) is capable of performing linear and nonlinear classification, regression, and even ...原创 2019-02-12 12:11:48 · 450 阅读 · 1 评论 -
Chapter 9 Up and Running with TensorFlow
Chapter 9 Up and Running with TensorFlowOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记TensorFlow first defines in Python a graph of computations to perform, and then takes t...原创 2019-02-22 20:39:03 · 309 阅读 · 0 评论 -
Chapter 7 Ensemble Learning and Random Forests
Chapter 7 Ensemble Learning and Random ForestsOReilly.Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记A group of predictions is called ensemble. The technique that aggregates ensemble ...原创 2019-02-15 19:15:33 · 448 阅读 · 0 评论 -
chapter 3 Classification
ch3 Classification3.1 MNIST数据集MNIST数据集:手写数字图片数据集。单标签多分类(0-9)。获取MNIST:from sklearn.datasets import fetch_mldata#从下面地址#https://raw.githubusercontent.com/amplab/datascience-sp14/master/lab7/mldata/...原创 2019-01-30 07:19:56 · 270 阅读 · 0 评论 -
chapter 4 Training Models
OReilly.Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记ch4 Training Models以线性回归(Linear Regression)为例,介绍两种训练模型的方式:使用“封闭”方程直接计算出最佳模型参数(在训练集上使得损失函数最小的参数)使用称为梯度下降(Gradient Descent,GD)的...原创 2019-02-07 09:08:26 · 369 阅读 · 0 评论 -
Chapter 16 Reinforcement Learning
Chapter 16 Reinforcement LearningOReilly. Hands-On Machine Learning with Scikit-Learn and TensorFlow读书笔记This chapter has been revised largely since the book published. So see the jupyter notebook ve...原创 2019-04-15 19:11:11 · 3836 阅读 · 0 评论