06.exercise-binary-classification【练习:二元分类】
This notebook is an exercise in the Intro to Deep Learning course. You can reference the tutorial at this link. Introduction 介绍 In this exercise, you’ll build a model to predict hotel cancellations with a binary classifier. 在本练习中,您将构建一个模型来使用二元分类器预测酒店取消情况。 # Setup plotting import matplotlib.pyplot as plt plt.style.use('seaborn-v0_8-whitegrid') # Set Matplotlib defaults plt.rc('figure', autolayout=True) plt.rc('axes', labelweight='bold', labelsize='large', […]