
Book:机器学习实战第二版
文章平均质量分 91
书籍案例复现
HHVic
一个双子座男生的多元兴趣之旅
展开
-
机器学习实战 - Chapter 2 - End To End - Code Annotation
文章目录The instance1. Download the data and unzip2. Load and Preparation3. Custom random sampling4. Stratified Sampling5. Compare of the proportions in stratified sampling6. Compare of the proportions in stratified and random sampling7. Save train set and tes原创 2021-07-09 19:39:55 · 121 阅读 · 0 评论 -
机器学习实战 - Chapter 1 - ML Landscape - Code Annotation
文章目录1. Preparation1. PreparationCode:assert : validate the sentence, if yes, continue# Python ≥3.5 is requiredimport sysassert sys.version_info >= (3, 5)# Scikit-Learn ≥0.20 is requiredimport sklearnassert sklearn.__version__ >= "0.20"p原创 2021-07-02 12:24:28 · 177 阅读 · 0 评论 -
机器学习实战 - Chapter 1 - ML Landscape - Question Exercises
文章目录1. How would you define Machine Learning?2. Can you name four types of problems where it shines?3. What's a labeled training set?4. What are he two most common supervised tasks?5. Can you name four common unsupervised tasks?6. What type of Machine Lear原创 2021-06-29 14:32:11 · 251 阅读 · 0 评论