04.exercise-clustering-with-k-means【练习:K均值聚类】
This notebook is an exercise in the Feature Engineering course. You can reference the tutorial at this link. Introduction 介绍 In this exercise you’ll explore our first unsupervised learning technique for creating features, k-means clustering. 在本练习中,您将探索我们第一个用于创建特征的无监督学习技术:k 均值聚类。 Run this cell to set everything up! 运行这个单元格来设置一切! # Setup feedback system from learntools.core import binder binder.bind(globals()) from […]