وبلاگ بلیان

Python预测分析实战 = Hands-on predictive analytics with Python

معرفی کتاب «Python预测分析实战 = Hands-on predictive analytics with Python» نوشتهٔ (美)阿尔瓦罗·富恩特斯(Alvaro Fuentes)著، منتشرشده توسط نشر 人民邮电出版社 در سال 2022. این کتاب در 5 صفحه، فرمت pdf، زبان انگلیسی ارائه شده است. «Python预测分析实战 = Hands-on predictive analytics with Python» در دستهٔ بدون دسته‌بندی قرار دارد.

Step-by-step Guide To Build High Performing Predictive Applications Key Features Use The Python Data Analytics Ecosystem To Implement End-to-end Predictive Analytics Projects Explore Advanced Predictive Modeling Algorithms With An Emphasis On Theory With Intuitive Explanations Learn To Deploy A Predictive Model's Results As An Interactive Application Book Description Predictive Analytics Is An Applied Field That Employs A Variety Of Quantitative Methods Using Data To Make Predictions. It Involves Much More Than Just Throwing Data Onto A Computer To Build A Model. This Book Provides Practical Coverage To Help You Understand The Most Important Concepts Of Predictive Analytics. Using Practical, Step-by-step Examples, We Build Predictive Analytics Solutions While Using Cutting-edge Python Tools And Packages. The Book's Step-by-step Approach Starts By Defining The Problem And Moves On To Identifying Relevant Data. We Will Also Be Performing Data Preparation, Exploring And Visualizing Relationships, Building Models, Tuning, Evaluating, And Deploying Model. Each Stage Has Relevant Practical Examples And Efficient Python Code. You Will Work With Models Such As Knn, Random Forests, And Neural Networks Using The Most Important Libraries In Python's Data Science Stack: Numpy, Pandas, Matplotlib, Seaborn, Keras, Dash, And So On. In Addition To Hands-on Code Examples, You Will Find Intuitive Explanations Of The Inner Workings Of The Main Techniques And Algorithms Used In Predictive Analytics. By The End Of This Book, You Will Be All Set To Build High-performance Predictive Analytics Solutions Using Python Programming. What You Will Learn Get To Grips With The Main Concepts And Principles Of Predictive Analytics Learn About The Stages Involved In Producing Complete Predictive Analytics Solutions Understand How To Define A Problem, Propose A Solution, And Prepare A Dataset Use Visualizations To Explore Relationships And Gain Insights Into The Dataset Learn To Build Regression And Classification Models Using Scikit-learn Use Keras To Build Powerful Neural Network Models That Produce Accurate Predictions Learn To Serve A Model's Predictions As A Web Application Who This Book Is For This Book Is For Data Analysts, Data Scientists, Data Engineers, And Python Developers Who Want To Learn About Predictive Modeling And Would Like To Implement Predictive Analytics Solutions Using Python's Data Stack. People From Other Backgrounds Who Would Like To Enter This Exciting Field Will Greatly Benefit From Reading This Book. All You Need Is To Be Proficient In Python Programming And Have A Basic Understanding Of Statistics And College-level Algebra. 扉页 内容提要 前言 审阅者简介 译者简介 作者简介 目录 第 1 章 预测分析过程 1.1技术要求 1.2什么是预测分析 1.3回顾预测分析的重要概念 1.4预测分析过程 1.4.1理解问题和定义问题 1.4.2收集数据和准备数据 1.4.3使用EDA挖掘数据信息 1.4.4构建模型 1.4.5评价模型 1.4.6沟通以及/或者部署 1.4.7 CRISP-DM和其他方法 1.5 Python数据科学栈概述 1.5.1 Anaconda 1.5.2 Jupyter Notebook 1.5.3 NumPy 1.5.4 SciPy 1.5.5 pandas 1.5.6 Matplotlib 1.5.7 Seaborn 1.5.8 scikit-learn 1.5.9 TensorFlow和Keras 1.5.10 Dash 1.6小结 扩展阅读 第 2 章 理解问题和准备数据 2.1技术要求 2.2理解业务问题并提出解决方案 2.2.1背景决定一切 2.2.2定义预测内容 2.2.3明确项目需要的数据 2.2.4考虑数据访问 2.2.5提出解决方案 2.3实践项目——钻石的价格 2.3.1钻石的价格—理解问题和定义问题 2.3.2更多背景知识 2.3.3钻石的价格—提出解决方案 2.3.4钻石的价格—收集数据和准备数据 2.4实践项目——信用卡违约 2.4.1信用卡违约—理解问题和定义问题 2.4.2信用卡违约—提出解决方案 2.4.3信用卡违约—收集数据和准备数据 2.5小结 扩展阅读 第 3 章 理解数据集——探索性数据分析 3.1技术要求 3.2什么是EDA 3.3一元EDA 3.3.1数值特征的一元EDA 3.3.2分类特征的一元EDA 3.4二元EDA 3.4.1两个数值特征 3.4.2两个分类特征 3.4.3一个数值特征和一个分类特征 3.5图形化的多元EDA 3.6小结 扩展阅读 第 4 章 基于机器学习的数值预测 4.1技术要求 4.2机器学习简介 4.2.1监督学习中的任务 4.2.2创建第一个机器学习模型 4.2.3机器学习的目标—泛化 4.2.4过拟合 4.2.5评价函数和最优化 4.3建模之前的实际考虑 4.3.1 scikit-learn简介 4.3.2进一步的特征变换 4.4多元线性回归 4.5 LASSO回归 4.6kNN 4.7训练与测试误差 4.8小结 扩展阅读 第 5 章 基于机器学习的分类预测 5.1技术要求 5.2分类任务 5.3信用卡违约数据集 5.4逻辑回归 5.4.1一个简单的逻辑回归模型 5.4.2完整的逻辑回归模型 5.5分类树 5.5.1分类树的工作原理 5.5.2分类树的优点和缺点 5.5.3训练更大的分类树 5.6随机森林 5.7训练误差对测试误差 5.8多元分类 5.9朴素贝叶斯分类器 5.9.1条件概率 5.9.2贝叶斯定理 5.9.3回到分类问题 5.9.4高斯朴素贝叶斯 5.10小结 扩展阅读 第6章 面向预测分析的神经网络简介 6.1技术要求 6.2引入神经网络模型 6.2.1深度学习 6.2.2 MLP的结构—神经网络模型的组成部分 6.2.3 MLP的学习原理 6.3 TensorFlow和Keras简介 6.3.1 TensorFlow 6.3.2 Keras—以人为本的深度学习 6.4基于神经网络的回归 6.4.1构建预测钻石价格的MLP 6.4.2训练MLP 6.4.3基于神经网络的预测 6.5基于神经网络的分类 6.5.1构建预测信用卡违约的MLP 6.5.2评价预测 6.6训练神经网络模型的“黑暗艺术” 6.6.1决策太多,时间太少 6.6.2神经网络的正则化 6.6.3训练神经网络模型的实用技巧 6.7小结 扩展阅读 第 7 章 模型评价 7.1技术要求 7.2回归模型的评价 7.2.1评价回归模型的指标 7.2.2评价回归模型的可视化方法 7.3评价分类模型 7.3.1混淆矩阵及相关指标 7.3.2评价分类模型的可视化方法 7.4k折交叉验证 7.5小结 扩展阅读 第 8 章 调整模型和提高性能 8.1技术要求 8.2超参数调整 8.2.1优化单个超参数 8.2.2优化多个超参数 8.3提高性能 8.3.1改进钻石价格预测 8.3.2是技术问题,更是业务问题 8.4小结 第 9 章 基于 Dash的模型实现 9.1技术要求 9.2模型沟通和/或部署阶段 9.2.1使用技术报告 9.2.2说明现有应用程序的功能 9.2.3分析应用程序 9.3 Dash简介 9.3.1什么是Dash 9.3.2 Plotly 9.3.3安装 9.3.4应用程序布局 9.3.5构建基本的静态App 9.3.6构建基本的交互式App 9.4将预测模型实现为网络应用程序 9.4.1生成预测模型对象 9.4.2构建网络应用程序 9.5小结 扩展阅读 This book will teach you all the processes you need to build a predictive analytics solution: understanding the problem, preparing datasets, exploring relationships, model building, tuning, evaluation, and deployment. You'll earn to use Python and its data analytics ecosystem to implement the main techniques used in real-world projects.
دانلود کتاب Python预测分析实战 = Hands-on predictive analytics with Python