
机器学习实战
文章平均质量分 89
bobbykey
这个作者很懒,什么都没留下…
展开
-
Graph Matching Networks for Learning the Similarity of Graph Structured Objects 研读
参考资料: 1) https://colab.research.google.com/github/deepmind/deepmind_research/blob/master/graph_matching_networks/graph_matching_networks.ipynb#scrollTo=F50gn0G_yZ3s 2)原论文:https://arxiv.org/abs/1904.12787 3)参考博文:Graph Matching Networks for Learning the原创 2021-11-28 17:41:26 · 517 阅读 · 0 评论 -
chapter2--KNN算法
KNN算法是懒惰的学习算法,没有明显的训练过程,预测时只需要使用已经有标注(分类学习)的训练数据即可 from numpy import* import operator import pdb import matplotlib import matplotlib.pyplot as plt from os import listdir #测试数据 def createDataSet(): group = array([[1.0,1.1],[1.0,1.0],[0,0],[0,0.1]])原创 2020-08-22 10:22:51 · 191 阅读 · 0 评论