摘要:
学习进度笔记24 读取文件演示 import org.apache.spark.SparkConf import org.apache.spark.streaming.{Seconds, StreamingContext} import org.apache.spark.streaming.Stre 阅读全文
摘要:
博雅数据机器学习09 K近邻算法 ## 声明储存K个邻居的index的列表 index_list = [] ## 遍历每个测试样本的与训练集的举例,item类型为dict for item in distances: ## item的类型为dict,即{'index': distance} ## 使 阅读全文