Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

Kaggle

01.course-creating-reading-and-writing【创建、读取和写入】

Introduction 介绍 In this micro-course, you’ll learn all about pandas, the most popular Python library for data analysis. 在这个微课程中,您将了解有关pandas的所有信息,这是最流行的数据分析Python库。 Along the way, you’ll complete several hands-on exercises with real-world data. We recommend that you work on the exercises while reading the corresponding tutorials. 在此过程中,您将使用真实数据完成一些实践练习。 我们建议您在阅读相应教程的同时做练习。 To start the first exercise, please click here. 要开始第一个练习,请单击此处。 In […]

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