دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش: [1 ed.]
نویسندگان: Timothy Masters
سری:
ISBN (شابک) : 1484259874, 9781484259870
ناشر: Apress
سال نشر: 2020
تعداد صفحات: 228
[233]
زبان: English
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 2 Mb
در صورت تبدیل فایل کتاب Modern Data Mining Algorithms in C++ and CUDA C: Recent Developments in Feature Extraction and Selection Algorithms for Data Science به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب الگوریتم های مدرن داده کاوی در C++ و CUDA C: پیشرفت های اخیر در الگوریتم های استخراج و انتخاب ویژگی برای علم داده نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
انواع الگوریتمهای دادهکاوی را کشف کنید که برای انتخاب مجموعههای کوچکی از ویژگیهای مهم از میان انبوه نامزدها، یا استخراج ویژگیهای مفید از متغیرهای اندازهگیری شده مفید هستند.
به عنوان یک داده کاوی جدی، اغلب با هزاران ویژگی کاندید برای برنامه پیشبینی یا طبقهبندی خود مواجه میشوید، که بیشتر ویژگیها ارزش کمی دارند یا اصلاً ارزش ندارند. میدانید که بسیاری از این ویژگیها ممکن است تنها در ترکیب با برخی ویژگیهای دیگر مفید باشند، در حالی که عملاً به تنهایی یا در ترکیب با اکثر ویژگیهای دیگر بیارزش هستند. برخی از ویژگی ها ممکن است قدرت پیش بینی بسیار زیادی داشته باشند، اما فقط در یک منطقه کوچک و تخصصی از فضای ویژگی. مشکلاتی که دیتا ماینرهای مدرن را آزار می دهد بی پایان هستند. این کتاب با ارائه تکنیک های مدرن انتخاب ویژگی و کد پیاده سازی آنها به شما در حل این مشکل کمک می کند. برخی از این تکنیکها عبارتند از:
همه الگوریتم ها به طور مستقیم توسط معادلات و مطالب توضیحی مربوطه توجیه و پشتیبانی می شوند. نویسنده همچنین کد منبع کامل و با نظر بسیار را ارائه و توضیح می دهد.
کد مثال در C++ و CUDA C است اما پایتون یا کدهای دیگر را می توان جایگزین کرد. الگوریتم مهم است نه کدی که برای نوشتن آن استفاده می شود.
آنچه یاد خواهید گرفت
این کتاب برای چه کسی است
برنامه نویسان و تحلیلگران علوم داده متوسط تا پیشرفته. تجربه C++ و CUDA C به شدت توصیه می شود. با این حال، این کتاب می تواند به عنوان یک چارچوب با استفاده از زبان های دیگر مانند پایتون استفاده شود.
Discover a variety of data-mining algorithms that are useful for selecting small sets of important features from among unwieldy masses of candidates, or extracting useful features from measured variables.
As a serious data miner you will often be faced with thousands of candidate features for your prediction or classification application, with most of the features being of little or no value. You’ll know that many of these features may be useful only in combination with certain other features while being practically worthless alone or in combination with most others. Some features may have enormous predictive power, but only within a small, specialized area of the feature space. The problems that plague modern data miners are endless. This book helps you solve this problem by presenting modern feature selection techniques and the code to implement them. Some of these techniques are:
All algorithms are intuitively justified and supported by the relevant equations and explanatory material. The author also presents and explains complete, highly commented source code.
The example code is in C++ and CUDA C but Python or other code can be substituted; the algorithm is important, not the code that's used to write it.
What You Will Learn
Who This Book Is For
Intermediate to advanced data science programmers and analysts. C++ and CUDA C experience is highly recommended. However, this book can be used as a framework using other languages such as Python.
Table of Contents About the Author About the Technical Reviewer Chapter 1: Introduction Chapter 2: Forward Selection Component Analysis Introduction to Forward Selection Component Analysis The Mathematics and Code Examples Maximizing the Explained Variance Code for the Variance Maximization Criterion Backward Refinement Multithreading Backward Refinement Orthogonalizing Ordered Components Putting It All Together Components from a Forward-Only Subset Components from a Backward Refined Subset An Example with Contrived Variables Chapter 3: Local Feature Selection Intuitive Overview of the Algorithm What This Algorithm Reports A Brief Detour: The Simplex Algorithm The Linear Programming Problem Interfacing to the Simplex Class A Little More Detail A More Rigorous Approach to LFS Intra-Class and Inter-Class Separation Computing the Weights Maximizing Inter-Class Separation Minimizing Intra-Class Separation Testing a Trial Beta A Quick Note on Threads CUDA Computation of Weights Integrating the CUDA Code into the Algorithm Initializing the CUDA Hardware Computing Differences from the Current Case Computing the Distance Matrix Computing the Minimum Distances Computing the Terms for the Weight Equation Transposing the Term Matrix Summing the Terms for the Weights Moving the Weights to the Host An Example of Local Feature Selection A Note on Runtime Chapter 4: Memory in Time Series Features A Gentle Mathematical Overview The Forward Algorithm The Backward Algorithm Correct Alpha and Beta, for Those Who Care Some Mundane Computations Means and Covariances Densities The Multivariate Normal Density Function Starting Parameters Outline of the Initialization Algorithm Perturbing Means Perturbing Covariances Perturbing Transition Probabilities A Note on Random Number Generators The Complete Optimization Algorithm Computing State Probabilities Updating the Means and Covariances Updating Initial and Transition Probabilities Assessing HMM Memory in a Time Series Linking Features to a Target Linking HMM States to the Target A Contrived and Inappropriate Example A Sensible and Practical Example Chapter 5: Stepwise Selection on Steroids The Feature Evaluation Model Code for the Foundation Model The Cross-Validated Performance Measure The Stepwise Algorithm Finding the First Variable Adding a Variable to an Existing Model Demonstrating the Algorithm Three Ways Chapter 6: Nominal-to-Ordinal Conversion Implementation Overview Testing for a Legitimate Relationship An Example from Equity Price Changes Code for Nominal-to-Ordinal Conversion The Constructor Printing the Table of Counts Computing the Mapping Function Monte-Carlo Permutation Tests Index