Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

Author : ZhuangBin

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

02.exercise-explore-your-data【练习:探索数据】

Machine Learning Course Home Page This exercise will test your ability to read a data file and understand statistics about the data. In later exercises, you will apply techniques to filter the data, build a machine learning model, and iteratively improve your model. The course examples use data from Melbourne. To ensure you can apply […]

02.course-basic-data-exploration【基础数据探索】

Using Pandas to Get Familiar With Your Data The first step in any machine learning project is familiarize yourself with the data. You’ll use the Pandas library for this. Pandas is the primary tool data scientists use for exploring and manipulating data. Most people abbreviate pandas in their code as pd. We do this with […]

01.course-how-models-work【模型如何工作】

Introduction We’ll start with an overview of how machine learning models work and how they are used. This may feel basic if you’ve done statistical modeling or machine learning before. Don’t worry, we will progress to building powerful models soon. This course will have you build models as you go through following scenario: Your cousin […]

07.exercise-working-with-external-libraries【练习:使用外部库】

This notebook is an exercise in the Python course. You can reference the tutorial at this link. Try It Yourself There are only three problems in this last set of exercises, but they’re all pretty tricky, so be on guard! Run the setup code below before working on the questions. 自己尝试一下 最后一组练习只有三道题,但是都比较棘手,要小心! 在回答问题之前运行下面的设置代码。 from learntools.core […]

07.course-working-with-external-libraries【使用外部库】

In this tutorial, you will learn about imports in Python, get some tips for working with unfamiliar libraries (and the objects they return), and dig into operator overloading. 在本教程中,您将了解 Python 中的 导入,获得一些不熟悉的库(及其返回的对象)的使用技巧,并深入研究 运算符重载。 Imports So far we’ve talked about types and functions which are built-in to the language. But one of the best things about […]

Scroll to top