Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

AI

02.exercise-missing-values【练习:缺失值】

This notebook is an exercise in the Intermediate Machine Learning course. You can reference the tutorial at this link. Now it’s your turn to test your new knowledge of missing values handling. You’ll probably find it makes a big difference. 现在轮到您测试您对缺失值处理的新知识了。 您可能会发现它有很大的不同。 Setup 设置 The questions will give you feedback on your work. Run the […]

02.course-missing-values【缺失值】

In this tutorial, you will learn three approaches to dealing with missing values. Then you’ll compare the effectiveness of these approaches on a real-world dataset. 在本教程中,您将学习三种处理缺失值的方法。 然后,您将在现实数据集上比较这些方法的有效性。 Introduction 介绍 There are many ways data can end up with missing values. For example, 数据最终可能会出现缺失值的情况有很多。 例如, A 2 bedroom house won’t include a value for the size […]

01.exercise-introduction【练习:介绍】

This notebook is an exercise in the Intermediate Machine Learning course. You can reference the tutorial at this link. As a warm-up, you’ll review some machine learning fundamentals and submit your initial results to a Kaggle competition. 作为热身,您将回顾一些机器学习基础知识并将初步结果提交给 Kaggle 竞赛。 Setup 设置 The questions below will give you feedback on your work. Run the following […]

01.course-introduction【介绍】

Introduction 介绍 Welcome to Kaggle’s Intermediate Machine Learning course! 欢迎来到 Kaggle 的 中级机器学习 课程! If you have some background in machine learning and you’d like to learn how to quickly improve the quality of your models, you’re in the right place! In this course, you will accelerate your machine learning expertise by learning how to: […]

07.exercise-machine-learning-competitions【练习:机器学习竞赛】

This notebook is an exercise in the Introduction to Machine Learning course. You can reference the tutorial at this link. Introduction 介绍 In this exercise, you will create and submit predictions for a Kaggle competition. You can then improve your model (e.g. by adding features) to improve and see how you stack up to others […]

07.course-machine-learning-competitions【机器学习竞赛】

Machine learning competitions are a great way to improve your data science skills and measure your progress. 机器学习竞赛是提高数据科学技能和衡量进步的好方法。 Your Turn 到你了 Use what you’ve learned in the course to create a submission to a Kaggle competition! 使用您在课程中学到的知识创建提交到 Kaggle 竞赛! In the next exercise, you will create and submit predictions for the House Prices Competition for […]

07.course-machine-learning-competitions【机器学习竞赛】

Machine learning competitions are a great way to improve your data science skills and measure your progress. 机器学习竞赛是提高数据科学技能和衡量进步的好方法。 Your Turn 到你了 Use what you’ve learned in the course to create a submission to a Kaggle competition! 使用您在课程中学到的知识创建提交到 Kaggle 竞赛! In the next exercise, you will create and submit predictions for the House Prices Competition for […]

07.course-machine-learning-competitions【机器学习竞赛】

Machine learning competitions are a great way to improve your data science skills and measure your progress. 机器学习竞赛是提高数据科学技能和衡量进步的好方法。 Your Turn 到你了 Use what you’ve learned in the course to create a submission to a Kaggle competition! 使用您在课程中学到的知识创建提交到 Kaggle 竞赛! In the next exercise, you will create and submit predictions for the House Prices Competition for […]

06.exercise-random-forests【练习:随机森林】

This notebook is an exercise in the Introduction to Machine Learning course. You can reference the tutorial at this link. Recap 回顾 Here’s the code you’ve written so far. 这是您到目前为止编写的代码。 # Code you have previously used to load data import pandas as pd from sklearn.metrics import mean_absolute_error from sklearn.model_selection import train_test_split from sklearn.tree import DecisionTreeRegressor […]

06.course-random-forests【随机森林】

Introduction 介绍 Decision trees leave you with a difficult decision. A deep tree with lots of leaves will overfit because each prediction is coming from historical data from only the few houses at its leaf. But a shallow tree with few leaves will perform poorly because it fails to capture as many distinctions in the […]

Scroll to top