Flashield's Blog

Just For My Daily Diary

Flashield's Blog

Just For My Daily Diary

Day: February 13, 2024

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