Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

Day: May 7, 2024

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', […]

06.course-binary-classification【二元分类】

Introduction 介绍 So far in this course, we’ve learned about how neural networks can solve regression problems. Now we’re going to apply neural networks to another common machine learning problem: classification. Most everything we’ve learned up until now still applies. The main difference is in the loss function we use and in what kind of […]

Scroll to top