• Complain

Pradeepta Mishra - Explainable AI Recipes

Here you can read online Pradeepta Mishra - Explainable AI Recipes full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: New York, NY, year: 2023, publisher: Apress Media, genre: Children. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Pradeepta Mishra Explainable AI Recipes
  • Book:
    Explainable AI Recipes
  • Author:
  • Publisher:
    Apress Media
  • Genre:
  • Year:
    2023
  • City:
    New York, NY
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

Explainable AI Recipes: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Explainable AI Recipes" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Understand how to use Explainable AI (XAI) libraries and build trust in AI and machine learning models. This book utilizes a problem-solution approach to explaining machine learning models and their algorithms.The book starts with model interpretation for supervised learning linear models, which includes feature importance, partial dependency analysis, and influential data point analysis for both classification and regression models. Next, it explains supervised learning using non-linear models and state-of-the-art frameworks such as SHAP values/scores and LIME for local interpretation. Explainability for time series models is covered using LIME and SHAP, as are natural language processing-related tasks such as text classification, and sentiment analysis with ELI5, and ALIBI. The book concludes with complex model classification and regression-like neural networks and deep learning models using the CAPTUM framework that shows feature attribution, neuron attribution, and activation attribution.After reading this book, you will understand AI and machine learning models and be able to put that knowledge into practice to bring more accuracy and transparency to your analyses.

Pradeepta Mishra: author's other books


Who wrote Explainable AI Recipes? Find out the surname, the name of the author of the book and a list of all author's works by series.

Explainable AI Recipes — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Explainable AI Recipes" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make

Explainable AI Recipes Implement Solutions to Model Explainability and - photo 1Explainable AI Recipes: Implement Solutions to Model Explainability andInterpretability with Python Pradeepta Mishra Bangalore, Karnataka, India ISBN-13 (pbk): 978-1-4842-9028-6 ISBN-13 (electronic): 978-1-4842-9029-3 https://doi.org/10.1007/978-1-4842-9029-3 Copyright 2023 by Pradeepta Mishra This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed. Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights. While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made.

The publisher makes no warranty, express or implied, with respect to the material contained herein. Managing Director, Apress Media LLC: Welmoed Spahr Acquisitions Editor: Celestin Suresh John Development Editor: James Markham Coordinating Editor: Mark Powers Copy Editor: Kim Wimpsett Cover designed by eStudioCalamar Cover image by Marek Piwinicki on Unsplash (www.unsplash.com) Distributed to the book trade worldwide by Apress Media, LLC, 1 New York Plaza, New York, NY 10004, U.S.A. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation. For information on translations, please e-mail booktranslations@springernature.com; for reprint, paperback, or audio rights, please e-mail bookpermissions@springernature.com.

Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook versions and licenses are also available for most titles. For more information, reference our Print and eBook Bulk Sales web page at www.apress.com/bulk-sales. Any source code or other supplementary material referenced by the author in this book is available to readers on GitHub (https://github.com/Apress). For more detailed information, please visit www.apress.com/source-code. Printed on acid-free paper I dedicate this book to my late father; my mother; my lovelywife, Prajna; and my daughters, Priyanshi (Aarya) andAdyanshi (Aadya).

This work would not have been possiblewithout their inspiration, support, and encouragement.Table of Contents About the Author xvii About the Technical Reviewer xix Acknowledgments xxi Introduction xxiii Chapter 1: Introducing Explainability and Setting Up Your Development Environment 1 Recipe 1-1. SHAP Installation ...............................................................................3 Problem ...........................................................................................................3 Solution ...........................................................................................................3 How It Works ...................................................................................................4 Recipe 1-2. LIME Installation ................................................................................6 Problem ...........................................................................................................6 Solution ...........................................................................................................6 How It Works ...................................................................................................6 Recipe 1-3. SHAPASH Installation .........................................................................8 Problem ...........................................................................................................8 Solution ...........................................................................................................8 How It Works ...................................................................................................9 Recipe 1-4. ELI5 Installation .................................................................................9 Problem ...........................................................................................................9 Solution ...........................................................................................................9 How It Works ...................................................................................................9 v Table of ConTenTs Recipe 1-5. Skater Installation ............................................................................11 Problem .........................................................................................................11 Solution .........................................................................................................11 How It Works .................................................................................................11 Recipe 1-6.

Skope-rules Installation ...................................................................12 Problem .........................................................................................................12 Solution .........................................................................................................12 How It Works .................................................................................................12 Recipe 1-7. Methods of Model Explainability ......................................................13 Problem .........................................................................................................13 Solution .........................................................................................................13 How It Works .................................................................................................14 Conclusion ..........................................................................................................15 Chapter 2: Explainability for Linear Supervised Models 17 Recipe 2-1. SHAP Values for a Regression Model on All Numerical Input Variables ....................................................................................................18 Problem .........................................................................................................18 Solution .........................................................................................................18 How It Works .................................................................................................18 Recipe 2-2. SHAP Partial Dependency Plot for a Regression Model ...................25 Problem .........................................................................................................25 Solution .........................................................................................................25 How It Works .................................................................................................25 Recipe 2-3. SHAP Feature Importance for Regression Model with All Numerical Input Variables ..............................................................................29 Problem .........................................................................................................29 Solution .........................................................................................................29 How It Works .................................................................................................29 vi Table of ConTenTs Recipe 2-4. SHAP Values for a Regression Model on All Mixed Input Variables ....................................................................................................31 Problem .........................................................................................................31 Solution .........................................................................................................32 How It Works .................................................................................................32 Recipe 2-5.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Explainable AI Recipes»

Look at similar books to Explainable AI Recipes. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Explainable AI Recipes»

Discussion, reviews of the book Explainable AI Recipes and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.