Python机器学习(影印版)正版 包邮 [Python Machine Learning] epub pdf  mobi txt 电子书 下载

Python机器学习(影印版)正版 包邮 [Python Machine Learning] epub pdf mobi txt 电子书 下载 2024

Python机器学习(影印版)正版 包邮 [Python Machine Learning] epub pdf mobi txt 电子书 下载 2024


简体网页||繁体网页
Sebastian,Raschka 著

下载链接在页面底部


点击这里下载
    


想要找书就要到 静思书屋
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

发表于2024-05-05

商品介绍



店铺: 远卓文轩教育图书专营店
出版社: 东南大学出版社
ISBN:9787564170776
商品编码:22298661412
包装:平装
出版时间:2017-04-01

Python机器学习(影印版)正版 包邮 [Python Machine Learning] epub pdf mobi txt 电子书 下载 2024



类似图书 点击查看全场最低价

相关书籍





书籍描述


基本信息

书名:Python机器学习(影印版)



定价:87.00元

作者:Sebastian,Raschka

出版社:东南大学出版社

出版日期:2017-04-01

ISBN:9787564170776

字数

页码:425

版次:1

装帧:平装

开本:16开

商品重量:0.4kg

内容提要

机器学习和预测分析正在改变商业和其他组织的运作模式。
  《Python机器学习(影印版)》将带你进入预测分析的世界,通过演示告诉你为什么Python是世界数据科学语言之一。如果你想询问更深入的数据问题,或是想增进、拓展机器学习系统的能力,这本实用的书籍可谓是无价之宝。
  《Python机器学习(影印版)》涵盖了包括scikit-learn、Theano和Keras在内的大量功能强大的Python库、操作指南以及从情感分析到神经网络的各色小技巧,很快你就能够解答你个人及组织所面对的那些*重要的问题。

目录

Preface

Chapter 1: GiviComputers the Ability to Learfrom Data
Building intelligent machines to transform data into knowledge
The three different types of machine learning
Making predictions about the future with supervised learning
Classificatiofor predicting class labels
Regressiofor predicting continuous outes
Solving interactive problems with reinforcement learning
Discovering hiddestructures with unsupervised learning
Finding subgroups with clustering
Dimensionality reductiofor data pression
Aintroductioto the basic terminology and notations
A roadmap for building machine learning systems
Preprocessing-getting data into shape
Training and selecting a predictive model
Evaluating models and predicting unseedata instances
Using Pythofor machine learning
Installing Pythopackages
Summary

Chapter 2: Training Machine Learning Algorithms
for Classification
Artificial neurons-a brief glimpse into the early history
of machine learning
Implementing a perceptrolearning algorithm iPython
Training a perceptromodel othe Iris dataset
Adaptive linear neurons and the convergence of learning
Minimizing cost functions with gradient descent
Implementing aAdaptive Linear NeuroiPython
Large scale machine learning and stochastic gradient descent
Summary

Chapter 3: A Tour of Machine Learning Classifiers Using
Scikit-learn
Choosing a classificatioalgorithm
First steps with scikit-learn
Training a perceptrovia scikit-learn
Modeling class probabilities via logistic regression
Logistic regressiointuitioand conditional probabilities
Learning the weights of the logistic cost function
Training a logistic regressiomodel with scikit-learn
Tackling overfitting via regularization
Maximum margiclassificatiowith support vector machines
Maximum margiintuition
Dealing with the nonlinearly separablecase using slack variables
Alternative implementations iscikit-learn
Solving nonlinear problems using a kernel SMM
Using the kernel trick to find separating hyperplanes ihigher
dimensional space
Decisiotree learning
Maximizing informatiogain-getting the most bang for the buck
Building a decisiotree
Combining weak to strong learners via random forests
K-nearest neighbors-a lazy learning algorithm
Summary

Chapter 4: Building Good Training Sets-Data Preprocessing
Dealing with missing data
Eliminating samples or features with missing values
Imputing missing values
Understanding the scikit-learestimator API
Handling categorical data
Mapping ordinal features
Encoding class labels
Performing one-hot encoding onominal features
Partitioning a dataset itraining and test sets
Bringing features onto the same scale
Selecting meaningful features
Sparse solutions with L1 regularization
Sequential feature selectioalgorithms
Assessing feature importance with random forests
Summary

Chapter 5: Com~ Data via Di~ Reduction
Unsupervised dimensionality reductiovia principal
ponent analysis
Total and explained variance
Feature transformation
Principal ponent analysis iscikit-learn
Supervised data pressiovia linear discriminant analysis
Computing the scatter matrices
Selecting linear discriminants for the new feature subspace
Projecting samples onto the new feature space
LDA via scikit-learn
Using kernel principal ponent analysis for nonlinear mappings
Kernel functions and the kernel trick
Implementing a kernel principal ponent analysis iPython
Example 1-separating half-mooshapes
Example 2-separating concentric circles
Projecting new data points
Kernel principal ponent analysis iscikit-learn
Summary

Chapter 6: Learning Best Practices for Model Evaluation
and Hyperparameter Tuni~
Streamlining workflows with pipelines
Loading the Breast Cancer Wisconsidataset
Combining transformers and estimators ia pipeline
Using k-fold cross-validatioto assess model performance
The holdout method
K-fold cross-validation
Debugging algorithms with learning and validatiocurves
Diagnosing bias and variance problems with learning curves
Addressing overfitting and underfitting with validatiocurves
Fine-tuning machine learning models via grid search
Tuning hyperparameters via grid search
Algorithm selectiowith nested cross-validation
Looking at different performance evaluatiometrics
Reading a confusiomatrix
Optimizing the precisioand recall of a classificatiomodel
Plotting a receiver operating characteristic
The scoring metrics for multiclass classification
Summary

Chapter 7: Combining Different Models for Ensemble Learning
Learning with ensembles
Implementing a simple majority vote classifier
Combining different algorithms for classificatiowith majority vote
Evaluating and tuning the ensemble classifier
Bagging-building aensemble of classifiers from
bootstrap samples
Leveraging weak learners via adaptive boosting
Summary

Chapter 8: Applying Machine Learning to Sentiment Analysis
Obtaining the IMDb movie review dataset
Introducing the bag-of-words model
Transforming words into feature vectors
Assessing word relevancy via term frequency-inverse
document frequency
Cleaning text data
Processing documents into tokens
Training a logistic regressiomodel for document classification
Working with bigger data-online algorithms and
out-of-core learning
Summary

Chapter 9: Embedding a Machine Learning Model into
a Web Application
Serializing fitted scikit-learestimators
Setting up a SQLite database for data storage
Developing a web applicatiowith Flask
Our first Flask web application
Form validatioand rendering
Turning the movie classifier into a web application
Deploying the web applicatioto a public sewer
Updating the movie review classifier
Summary

Chapter 10: Predicting Continuous Target Variables
with R_Re_gressioAnalysis
Introducing a simple linear regressiomodel
Exploring the Housing Dataset
Visualizing the important characteristics of a dataset
Implementing aordinary least squares linear regressiomodel
Solving regressiofor regressioparameters with gradient descent
Estimating the coefficient of a regressiomodel via scikit-learn
Fitting a robust regressiomodel using RANSAC
Evaluating the performance of linear regressiomodels
Using regularized methods for regression
Turning a linear regressiomodel into a curve-polynomial regression
Modeling nonlinear relationships ithe Housing Dataset
Dealing with nonlinear relationships using random forests
Decisiotree regression
Random forest regression
Summary

Chapter 11: Work

Python机器学习(影印版)正版 包邮 [Python Machine Learning] epub pdf mobi txt 电子书 下载 2024

Python机器学习(影印版)正版 包邮 [Python Machine Learning] 下载 epub mobi pdf txt 电子书 2024

Python机器学习(影印版)正版 包邮 [Python Machine Learning] pdf 下载 mobi 下载 pub 下载 txt 电子书 下载 2024

Python机器学习(影印版)正版 包邮 [Python Machine Learning] mobi pdf epub txt 电子书 下载 2024

Python机器学习(影印版)正版 包邮 [Python Machine Learning] epub pdf mobi txt 电子书 下载
想要找书就要到 静思书屋
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

读者评价

评分

评分

评分

评分

评分

评分

评分

评分

评分

Python机器学习(影印版)正版 包邮 [Python Machine Learning] epub pdf mobi txt 电子书 下载 2024

类似图书 点击查看全场最低价

Python机器学习(影印版)正版 包邮 [Python Machine Learning] epub pdf mobi txt 电子书 下载 2024


分享链接









相关书籍


本站所有内容均为互联网搜索引擎提供的公开搜索信息,本站不存储任何数据与内容,任何内容与数据均与本站无关,如有需要请联系相关搜索引擎包括但不限于百度google,bing,sogou

友情链接

© 2024 book.tinynews.org All Rights Reserved. 静思书屋 版权所有