Identifying members of the same family [closed]

-1

I would like to know what I can use in machine learning or another type of tool for the following problem: I have a list of full names and I would like to identify among them the relatives by the similarity of the surname. What can I use?

    
asked by anonymous 19.11.2017 / 20:46

1 answer

1

Oops, I find it hard to achieve this using machine learning since you would have to assign a label to the data for members of the same family. If the problem is only checking who in a list has the same surname and classifying that person as being from the same family, you can solve this by simply looping the list, finding the same surnames, retrieving the full name and playing in other lists, or arrays.

    
19.11.2017 / 22:04