如何在句子(名称)中找到最近的邻居?

时间:2019-07-06 18:58:58

标签: python machine-learning scikit-learn knn

我有一个像这样的桌子:

/*desktop*/
@media only screen and (min-width: 800px) {
.section1 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-image: url(TAPPD1_.jpg);
    background-attachment: fixed;
    -webkit-background-size: cover;
       -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #000;
    padding-bottom: 2em;
}
}

/*mobile*/
@media only screen and (max-width: 800px) {
.section1 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: url(TAPPD1_.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
       -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-bottom: 2em;
}
}

,我需要获得最相似的项目,例如: 输入:

  

约翰·莫里斯(John Morris)

返回:

  

最相似的是丹尼尔·莫里斯(Daniel Morris)(他的兄弟)

     

第二个最相似的人是他的表弟安东尼·莫里斯(Anthony Morris)

我该怎么做?

0 个答案:

没有答案