机器学习算法 第2版(影印版) 东南大学出版社 mobi 下载 网盘 caj lrf pdf txt 阿里云

机器学习算法 第2版(影印版) 东南大学出版社电子书下载地址
- 文件名
- [epub 下载] 机器学习算法 第2版(影印版) 东南大学出版社 epub格式电子书
- [azw3 下载] 机器学习算法 第2版(影印版) 东南大学出版社 azw3格式电子书
- [pdf 下载] 机器学习算法 第2版(影印版) 东南大学出版社 pdf格式电子书
- [txt 下载] 机器学习算法 第2版(影印版) 东南大学出版社 txt格式电子书
- [mobi 下载] 机器学习算法 第2版(影印版) 东南大学出版社 mobi格式电子书
- [word 下载] 机器学习算法 第2版(影印版) 东南大学出版社 word格式电子书
- [kindle 下载] 机器学习算法 第2版(影印版) 东南大学出版社 kindle格式电子书
寄语:
新华书店正版,关注店铺成为会员可享店铺专属优惠,团购客户请咨询在线客服!
内容简介:
机器学习因运用大数据实现强大且快速的预测而大受欢迎。然而,其强大的输出背后,真正力量来自复杂的算法,涉及大量的统计分析,以大数据作为驱动而产生实质性的洞察力。这本第2版的机器学习算法引导您取得与机器学习过程中的主要算法相关的显著开发结果,并帮助您加强和掌握有监督,半监督和加强学习等领域的统计解释。一旦全面吃透了算法的核心概念,您将基于很广泛的库(如sclkit-.、NLTK、TensorFlow和Keras)来探索现实世界的示例。您将发现新的主题,如主成分分析(PCA)、***成分分析(ICA)、贝叶斯回归、判别分析、不错聚类和高斯混合等。
书籍目录:
Preface
Chapter 1: A Gentle Introduction to Machine Learning
Introduction - classic and adaptive machines
Deive ***ysis
Predictive ***ysis
Only learning matters
Supervised learning
Unsupervised learning
Semi-supervised learning
Reinforcement learning
Computational neuroscience
Beyond machine learning - deep learning and bio-inspired adaptive systems
Machine learning and big data
Summary
Chapter 2: Important Elements in Machine Learning
Data formats
Multiclass strategies
One-vs-all
One-vs-one
Learnability
Underfitting and overfitting
Error measures and cost functi***
PAC learning
Introduction to statistical learning concepts
MAP learning
Maximum likelihood learning
Class balancing
Resampling with replacement
***OTE resampling
Elements of information theory
Entropy
Cross-entropy and mutual information
Divergence measures between two probability distributi***
Summary
Chapter 3: Feature Selection and Feature Engineering
scikit-learn toy datasets
Creating training and test sets
Managing categorical data
Managing missing features
Data scaling and normalization
Whitening
Feature selection and filtering
Principal Component Analysis
Non-Negative Matrix Factorization
Sparse PCA
Kernel PCA
Independent Component Analysis
Atom extraction and dictionary learning
Visualizing high-dimensional datasets using t-SNE
Summary
Chapter 4: Regression Algorithms
Linear models for regression
A bidimensional example
Linear regression with scikit-learn and higher dimensionality
R2 score
Explained variance
Regressor ***ytic expression
Ridge, Lasso, and ElasticNet
Ridge
Lasso
ElasticNet
Robust regression
RANSAC
Huber regression
Bayesian regression
Polynomial regression
Isotonic regression
Summary
Chapter 5: Linear Classification Algorithms
Linear classification
Logistic regression
Implementation and optimizati***
Stochastic gradient descent algorithms
Passive-aggressive algorithms
Passive-aggressive regression
Finding the optimal hyperparameters through a grid search
Classification metrics
Confusion matrix
Precision
Recall
F-Beta
Cohen's Kappa
Global classification report
Learning curve
ROC curve
Summary
Chapter 6: Naive Bayes and Discriminant Analysis
Bayes' theorem
Naive Bayes classifiers
Naive Bayes in scikit-learn
Bernoulli Naive Bayes
Multinomial Naive Bayes
An example of Multinomial Naive Bayes for text classification
Gaussian Naive Bayes
Discriminant ***ysis
Summary
Chapter 7: Support Vector Machines
Linear SVM
SVMs with scikit-learn
Linear classification
Kernel-based classification
Radial Basis Function
Polynomial kernel
Sigmoid kernel
Custom kernels
Non-linear examples
v-Support Vector Machines
Support Vector Regression
An example of SVR with the Airfoil Self-Noise dataset
Introducing semi-supervised Support Vector Machines (S3VM)
Summary
Chapter 8: Decision Trees and Ensemble Learning
Binary Decision Trees
Binary decisi***
Impurity measures
Gini impurity index
Cross-entropy impurity index
Misclassification impurity index
Feature importance
Decision Tree classification with scikit-learn
Decision Tree regression
Example of Decision Tree regression with the Concrete Compressive
Strength dataset
Introduction to Ensemble Learning
Random Forests
Feature importance in Random Forests
AdaBoost
Gradient Tree Boosting
Voting classifier
Summary
Chapter 9: Clustering Fundamentals
Clustering basics
k-NN
Gaussian mixture
Finding the optimal number of components
K-means
Finding the optimal number of clusters
Optimizing the inertia
Silhouette score
Calinski-Harabasz index
Cluster instability
Evaluation methods based on the ground truth
Homogeneity
Completeness
Adjusted Rand Index
Summary
Chapter 10: Advanced Clustering
DBSCAN
Spectral Clustering
Online Clustering
Mini-batch K-means
BIRCH
Biclustering
Summary
Chapter 11 : Hierarchical Clustering
Hierarchical strategies
Agglomerative Clustering
Dendrograms
Agglomerative Clustering in scikit-learn
Connectivity c***traints
Summary
Chapter 12: Introducing Recommendation Systems
Naive user-based systems
Implementing a user-based system with scikit-learn
Content-based systems
Model-free (or memory-based) collaborative filtering
Model-based collaborative filtering
Singular value decomposition strategy
Alternating least squares strategy
ALS with Apache Spark MLlib
Summary
Chapter 13: Introducing Natural Language Processing
NLTK and built-in corpora
Corpora examples
The Bag-of-Words strategy
Tokenizing
Sentence tokenizing
Word tokenizing
Stopword removal
Language detection
Stemming
Vectorizing
Count vectorizing
N-grams
TF-IDF vectorizing
Part-of-Speech
Named Entity Recognition
A sample text classifier based on the Reuters corpus
Summary
Chapter 14: Topic Modeling and Sentiment Analysis in NLP
Topic modeling
Latent Semantic Analysis
Probabilistic Latent Semantic Analysis
Latent Dirichlet Allocation
Introducing Word2vec with Gensim
Sentiment ***ysis
VADER sentiment ***ysis with NLTK
Summary
Chapter 15: Introducing Neural Networks
Deep learning at a glance
Artifi neural networks
MLPs with Keras
Interfacing Keras to scikit-learn
Summary
Chapter 16: Advanced Deep Learning Models
Deep model layers
Fully connected layers
Convolutional layers
Dropout layers
Batch normalization layers
Recurrent Neural Networks
An example of a deep convolutional network with Keras
An example of an LSTM network with Keras
A brief introduction to TensorFIow
Computing gradients
Logistic regression
Classification with a multilayer perceptron
Image convolution
Summary
Chapter 17: Creating a Machine Learning Architecture
Machine learning architectures
Data collection
Normalization and regularization
Dimensionality reduction
Data augmentation
Data conversion
Modeling/grid search/cross-validation
Visualization
GPU ***
A brief introduction to distributed architectures
Scikit-learn tools for machine learning architectures
Pipelines
Feature uni***
Summary
Other Books You May Enjoy
Index
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
在线阅读地址:机器学习算法 第2版(影印版) 东南大学出版社在线阅读
在线听书地址:机器学习算法 第2版(影印版) 东南大学出版社在线收听
在线购买地址:机器学习算法 第2版(影印版) 东南大学出版社在线购买
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
暂无其它内容!
网站评分
书籍多样性:4分
书籍信息完全性:7分
网站更新速度:9分
使用便利性:8分
书籍清晰度:6分
书籍格式兼容性:4分
是否包含广告:6分
加载速度:5分
安全性:3分
稳定性:8分
搜索功能:9分
下载便捷性:8分
下载点评
- 中评(511+)
- 无水印(448+)
- 种类多(482+)
- 无多页(452+)
- 目录完整(636+)
- 还行吧(136+)
- 值得下载(95+)
- azw3(601+)
- 好评多(517+)
- 内容完整(433+)
- 值得购买(504+)
下载评价
- 网友 权***颜:
下载地址、格式选择、下载方式都还挺多的
- 网友 孙***美:
加油!支持一下!不错,好用。大家可以去试一下哦
- 网友 田***珊:
可以就是有些书搜不到
- 网友 游***钰:
用了才知道好用,推荐!太好用了
- 网友 宫***玉:
我说完了。
- 网友 蓬***之:
好棒good
- 网友 常***翠:
哈哈哈哈哈哈
- 网友 薛***玉:
就是我想要的!!!
- 网友 利***巧:
差评。这个是收费的
- 网友 马***偲:
好 很好 非常好 无比的好 史上最好的
喜欢"机器学习算法 第2版(影印版) 东南大学出版社"的人也看了
Insight Guide Greece (Insight Guides Greece) mobi 下载 网盘 caj lrf pdf txt 阿里云
明明如月 郑州大学出版社 mobi 下载 网盘 caj lrf pdf txt 阿里云
巧克力战争+小狗的散步执照+课外作业代写公司 (日本经典儿童成长小说系列) mobi 下载 网盘 caj lrf pdf txt 阿里云
公共营养师 mobi 下载 网盘 caj lrf pdf txt 阿里云
孙子兵法译注/周读书系 mobi 下载 网盘 caj lrf pdf txt 阿里云
商务英语理论与应用研究文集 mobi 下载 网盘 caj lrf pdf txt 阿里云
走出去--民营企业境外投资操作指南 mobi 下载 网盘 caj lrf pdf txt 阿里云
中公版·2019银行业专业人员初级职业资格考试辅导用书:银行业专业实务风险管理历年真题+全真模拟 mobi 下载 网盘 caj lrf pdf txt 阿里云
顶级名表 mobi 下载 网盘 caj lrf pdf txt 阿里云
2016办公记事手册 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 八年级(下) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 现代风湿病的诊断和治疗 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 名侦探柯南100卷合集【附赠101卷特别版流光幻彩版】 青山剛昌著简体中文版侦探推理漫画 长春出版社柯南漫画***珍藏版 简体中文版 侦探推理漫画 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 干旱区生态城市建设理论与实践 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 通向蜘蛛巢的小径 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 2008年考研数学最新精选600题 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 统计相关知识(中级)高分题库 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 全新正版图书 叶雨书衣-自选集 范用 生活·读书·新知三联书店 9787108053992青岛新华书店旗舰店 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 发现者旅行指南-甘肃﹒宁夏 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 安徽发 ··春雨 幼小衔接整合教材+同步练习 拼音2 早教启蒙4-5-6岁思维训练 mobi 下载 网盘 caj lrf pdf txt 阿里云
书籍真实打分
故事情节:6分
人物塑造:3分
主题深度:3分
文字风格:5分
语言运用:6分
文笔流畅:4分
思想传递:6分
知识深度:3分
知识广度:7分
实用性:5分
章节划分:8分
结构布局:4分
新颖与独特:3分
情感共鸣:7分
引人入胜:4分
现实相关:4分
沉浸感:8分
事实准确性:5分
文化贡献:7分