دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش:
نویسندگان: Yang. Xin-She
سری:
ISBN (شابک) : 9780128172162, 0128172177
ناشر: Academic Press; Elsevier
سال نشر: 2019
تعداد صفحات: 180
زبان: English
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 1 مگابایت
کلمات کلیدی مربوط به کتاب مقدمه ای بر الگوریتم های داده کاوی و یادگیری ماشینی: کامپیوترها--عمومی،داده کاوی،کتاب های الکترونیکی،یادگیری ماشین،کامپیوترها -- عمومی
در صورت تبدیل فایل کتاب Introduction to algorithms for data mining and machine learning به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب مقدمه ای بر الگوریتم های داده کاوی و یادگیری ماشینی نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
مقدمه ای بر الگوریتم های داده کاوی و یادگیری ماشینی، ایده های اساسی پشت همه الگوریتم ها و تکنیک های کلیدی برای داده کاوی و یادگیری ماشین، همراه با تکنیک های بهینه سازی را معرفی می کند. رویکرد ریاضی رسمی قوی، مثالهای خوب انتخابشده و توصیههای نرمافزاری عملی به خوانندگان کمک میکند تا در مهارتهای مدلسازی دادههای خود اعتماد کنند تا بتوانند دادهها را برای طبقهبندی، خوشهبندی، برازش منحنی و پیشبینی پردازش و تفسیر کنند. به طور ماهرانه ای که تئوری و عمل را متعادل می کند، به ویژه برای کسانی مفید است که به تئوری پس زمینه مرتبط، خوب توضیح داده شده، اما نه دقیق (مبتنی بر اثبات) و دستورالعمل های روشن برای کار با داده های بزرگ نیاز دارند؛ مقدمه ای بر بهینه سازی -- مبانی ریاضی -- الگوریتم های بهینه سازی -- برازش داده ها و رگرسیون -- رگرسیون لجستیک، PCA، LDA و ICA -- تکنیک های داده کاوی -- پشتیبانی از ماشین برداری و رگرسیون -- شبکه های عصبی و یادگیری عمیق
Introduction to Algorithms for Data Mining and Machine Learning introduces the essential ideas behind all key algorithms and techniques for data mining and machine learning, along with optimization techniques. Its strong formal mathematical approach, well selected examples, and practical software recommendations help readers develop confidence in their data modeling skills so they can process and interpret data for classification, clustering, curve-fitting and predictions. Masterfully balancing theory and practice, it is especially useful for those who need relevant, well explained, but not rigorous (proofs based) background theory and clear guidelines for working with big data;Introduction to optimization -- Mathematical foundations -- Optimization algorithms -- Data fitting and regression -- Logistic regression, PCA, LDA, and ICA -- Data mining techniques -- Support vector machine and regression -- Neural networks and deep learning
Cover Introduction to Algorithms for Data Mining and Machine Learning Copyright About the author Preface Acknowledgments 1 Introduction to optimization 1.1 Algorithms 1.1.1 Essence of an algorithm 1.1.2 Issues with algorithms 1.1.3 Types of algorithms 1.2 Optimization 1.2.1 A simple example 1.2.2 General formulation of optimization 1.2.3 Feasible solution 1.2.4 Optimality criteria 1.3 Unconstrained optimization 1.3.1 Univariate functions 1.3.2 Multivariate functions 1.4 Nonlinear constrained optimization 1.4.1 Penalty method 1.4.2 Lagrange multipliers 1.4.3 Karush-Kuhn-Tucker conditions 1.5 Notes on software 2 Mathematical foundations 2.1 Convexity 2.1.1 Linear and affine functions 2.1.2 Convex functions 2.1.3 Mathematical operations on convex functions 2.2 Computational complexity 2.2.1 Time and space complexity 2.2.2 Complexity of algorithms 2.3 Norms and regularization 2.3.1 Norms 2.3.2 Regularization 2.4 Probability distributions 2.4.1 Random variables 2.4.2 Probability distributions 2.4.3 Conditional probability and Bayesian rule 2.4.4 Gaussian process 2.5 Bayesian network and Markov models 2.6 Monte Carlo sampling 2.6.1 Markov chain Monte Carlo 2.6.2 Metropolis-Hastings algorithm 2.6.3 Gibbs sampler 2.7 Entropy, cross entropy, and KL divergence 2.7.1 Entropy and cross entropy 2.7.2 DL divergence 2.8 Fuzzy rules 2.9 Data mining and machine learning 2.9.1 Data mining 2.9.2 Machine learning 2.10 Notes on software 3 Optimization algorithms 3.1 Gradient-based methods 3.1.1 Newton\'s method 3.1.2 Newton\'s method for multivariate functions 3.1.3 Line search 3.2 Variants of gradient-based methods 3.2.1 Stochastic gradient descent 3.2.2 Subgradient method 3.2.3 Conjugate gradient method 3.3 Optimizers in deep learning 3.4 Gradient-free methods 3.5 Evolutionary algorithms and swarm intelligence 3.5.1 Genetic algorithm 3.5.2 Differential evolution 3.5.3 Particle swarm optimization 3.5.4 Bat algorithm 3.5.5 Firefly algorithm 3.5.6 Cuckoo search 3.5.7 Flower pollination algorithm 3.6 Notes on software 4 Data fitting and regression 4.1 Sample mean and variance 4.2 Regression analysis 4.2.1 Maximum likelihood 4.2.2 Liner regression 4.2.3 Linearization 4.2.4 Generalized linear regression 4.2.5 Goodness of fit 4.3 Nonlinear least squares 4.3.1 Gauss-Newton algorithm 4.3.2 Levenberg-Marquardt algorithm 4.3.3 Weighted least squares 4.4 Overfitting and information criteria 4.5 Regularization and Lasso method 4.6 Notes on software 5 Logistic regression, PCA, LDA, and ICA 5.1 Logistic regression 5.2 Softmax regression 5.3 Principal component analysis 5.4 Linear discriminant analysis 5.5 Singular value decomposition 5.6 Independent component analysis 5.7 Notes on software 6 Data mining techniques 6.1 Introduction 6.1.1 Types of data 6.1.2 Distance metric 6.2 Hierarchy clustering 6.3 k-Nearest-neighbor algorithm 6.4 k-Means algorithm 6.5 Decision trees and random forests 6.5.1 Decision tree algorithm 6.5.2 ID3 algorithm and C4.5 classifier 6.5.3 Random forest 6.6 Bayesian classifiers 6.6.1 Naive Bayesian classifier 6.6.2 Bayesian networks 6.7 Data mining for big data 6.7.1 Characteristics of big data 6.7.2 Statistical nature of big data 6.7.3 Mining big data 6.8 Notes on software 7 Support vector machine and regression 7.1 Statistical learning theory 7.2 Linear support vector machine 7.3 Kernel functions and nonlinear SVM 7.4 Support vector regression 7.5 Notes on software 8 Neural networks and deep learning 8.1 Learning 8.2 Artificial neural networks 8.2.1 Neuron models 8.2.2 Activation models 8.2.3 Artificial neural networks 8.3 Back propagation algorithm 8.4 Loss functions in ANN 8.5 Optimizers and choice of optimizers 8.6 Network architecture 8.7 Deep learning 8.7.1 Convolutional neural networks 8.7.1.1 Convolution and activation 8.7.1.2 Pooling 8.7.1.3 Flattening 8.7.1.4 Fully connected neural network 8.7.2 Restricted Boltzmann machine 8.7.3 Deep neural nets 8.7.4 Trends in deep learning 8.8 Tuning of hyperparameters 8.9 Notes on software Bibliography Index Back Cover