Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
D2l Zh | 40,601 | 1 | 2 days ago | 45 | March 25, 2022 | 21 | apache-2.0 | Python | ||
《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被60多个国家的400多所大学用于教学。 | ||||||||||
Machine Learning For Software Engineers | 26,596 | a month ago | 22 | cc-by-sa-4.0 | ||||||
A complete daily plan for studying to become a machine learning engineer. | ||||||||||
Pumpkin Book | 21,241 | 2 days ago | 16 | other | ||||||
《机器学习》(西瓜书)公式详解 | ||||||||||
Fastbook | 17,684 | 8 days ago | 26 | May 19, 2022 | 94 | other | Jupyter Notebook | |||
The fastai book, published as Jupyter Notebooks | ||||||||||
D2l En | 16,954 | 7 days ago | 83 | other | Python | |||||
Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 400 universities from 60 countries including Stanford, MIT, Harvard, and Cambridge. | ||||||||||
Awesome Kubernetes | 13,710 | 3 days ago | 1 | other | Shell | |||||
A curated list for awesome kubernetes sources :ship::tada: | ||||||||||
Deep Learning With Tensorflow Book | 11,864 | 2 years ago | 78 | Jupyter Notebook | ||||||
深度学习入门开源书,基于TensorFlow 2.0案例实战。Open source Deep Learning book, based on TensorFlow 2.0 framework. | ||||||||||
Python Machine Learning Book | 11,645 | 7 months ago | 11 | mit | Jupyter Notebook | |||||
The "Python Machine Learning (1st edition)" book code repository and info resource | ||||||||||
Mit Deep Learning Book Pdf | 10,775 | 3 months ago | 10 | Java | ||||||
MIT Deep Learning Book in PDF format (complete and parts) by Ian Goodfellow, Yoshua Bengio and Aaron Courville | ||||||||||
Mml Book.github.io | 10,729 | a month ago | 135 | Jupyter Notebook | ||||||
Companion webpage to the book "Mathematics For Machine Learning" |
Explaining the decisions and behaviour of machine learning models.
You can find the current version of the book here: https://christophm.github.io/interpretable-ml-book/
This book is about interpretable machine learning. Machine learning is being built into many products and processes of our daily lives, yet decisions made by machines don't automatically come with an explanation. An explanation increases the trust in the decision and in the machine learning model. As the programmer of an algorithm you want to know whether you can trust the learned model. Did it learn generalizable features? Or are there some odd artifacts in the training data which the algorithm picked up? This book will give an overview over techniques that can be used to make black boxes as transparent as possible and explain decisions. In the first chapter algorithms that produce simple, interpretable models are introduced together with instructions how to interpret the output. The later chapters focus on analyzing complex models and their decisions. In an ideal future, machines will be able to explain their decisions and make a transition into an algorithmic age more human. This books is recommended for machine learning practitioners, data scientists, statisticians and also for stakeholders deciding on the use of machine learning and intelligent algorithms.
The book is automatically built from the master branch and pushed to gh-pages by GitHub Actions.
Clone the repository.
git clone [email protected]:christophM/interpretable-ml-book.git
Make sure all dependencies for the book are installed. This book has the structure of an R package, so dependencies can be installed easily, only R and the devtools library is required. Start an R session in the folder of the book repository and type:
devtools::install_deps()
For rendering the book, start an R session and type:
setwd("manuscript")
# first, generate the references
source("../scripts/references.R")
bookdown::render_book('.', 'bookdown::gitbook')
After rendering, the HTML files of the book will be in the "_book" folder. You can either double-click index.html directly or, of course, do it in R:
browseURL('_book/index.html')
Stuff that both works for leanpub and for bookdown:
[text of the link](#tag-of-the-title)
[text of the link](#fig:tag-of-r-chunk-that-produced-figure)
$
(inline) or with $$
(extra line). Will be automatically changed for leanpub with a regexpr. Conversion script only works if no empty spaces are in the formula.[^ref-tag]
and must be at the end of the respective file with [^ref]: Details of the reference ...
. Make sure the space is included. References are collected in 10-reference.Rmd with the script references.R. Make sure not to use [^ref-tag]:
anywhere in the text, only at the bottom for the actual reference.Printing for proofreading with extra line spacing: Build HTML book, go to manuscript/_book/libs/gitbook*/css/style.css, change line-height:1.7 to line-height:2.5, open local html with chrome, print to pdf with custom margin.
All notable changes to the book will be documented here.