Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

Month: February 2024

05.exercise-underfitting-and-overfitting【练习:欠拟合和过拟合】

This notebook is an exercise in the Introduction to Machine Learning course. You can reference the tutorial at this link. Recap You’ve built your first model, and now it’s time to optimize the size of the tree to make better predictions. Run this cell to set up your coding environment where the previous step left […]

05.course-underfitting-and-overfitting【欠拟合与过拟合】

At the end of this step, you will understand the concepts of underfitting and overfitting, and you will be able to apply these ideas to make your models more accurate. 在此步骤结束时,您将了解欠拟合和过拟合的概念,并且您将能够应用这些想法使您的模型更加准确。 Experimenting With Different Models 尝试不同的模型 Now that you have a reliable way to measure model accuracy, you can experiment with alternative models and see […]

04.exercise-model-validation【练习:模型验证】

This notebook is an exercise in the Introduction to Machine Learning course. You can reference the tutorial at this link. Recap You’ve built a model. In this exercise you will test how good your model is. Run the cell below to set up your coding environment where the previous exercise left off. 回顾 你已经建立了一个模型。 在本练习中,您将测试您的模型有多好。 […]

04.course-model-validation【模型验证】

You’ve built a model. But how good is it? In this lesson, you will learn to use model validation to measure the quality of your model. Measuring model quality is the key to iteratively improving your models. 你已经建立了一个模型。 但它有多好呢? 在本课程中,您将学习使用模型验证来衡量模型的质量。 衡量模型质量是迭代改进模型的关键。 What is Model Validation You’ll want to evaluate almost every model you ever build. […]

03.exercise-your-first-machine-learning-model【练习:第一个机器学习模型】

This notebook is an exercise in the Introduction to Machine Learning course. You can reference the tutorial at this link. Recap So far, you have loaded your data and reviewed it with the following code. Run this cell to set up your coding environment where the previous step left off. 回顾 到目前为止,您已经加载了数据并使用以下代码对其进行了检查。 在上一步结束的位置运行此单元以设置编码环境。 # Code […]

03.course-your-first-machine-learning-model【第一个机器学习模型】

Selecting Data for Modeling Your dataset had too many variables to wrap your head around, or even to print out nicely. How can you pare down this overwhelming amount of data to something you can understand? We’ll start by picking a few variables using our intuition. Later courses will show you statistical techniques to automatically […]

Scroll to top