Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

Machine Learning

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

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. 回顾 你已经建立了一个模型。 在本练习中,您将测试您的模型有多好。 […]

Scroll to top