Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: First, we must create ICP classifiers by using a wrapper from nonconformist
A block of code is set as follows:
y_pred_calib = model.predict(X_calib) y_pred_score_calib = model.predict_proba(X_calib) y_pred_test = model.predict(X_test) y_pred_score_test = model.predict_proba(X_test)
Tips or important notes
Appear like this.