Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

Machine Learning

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

Scroll to top