Skip to content

Probably the biggest dataset of Names, worldwide.

Notifications You must be signed in to change notification settings

ali-cognitro/name-dataset

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

First and Last Names Dataset

Downloads Downloads

Attempt to make a good dataset with a high precision / recall.

  • ~160k first names
  • ~100k last names

Installation

pip install names-dataset

Usage

from names_dataset import NameDataset
m = NameDataset()
m.search_first_name('Mikael')
m.search_last_name('Remy')
echo -e "$(python main.py 'Brian is in the kitchen while Amanda is watching the TV on the sofa.\nThey are both waiting for Alfred to come.')"

How reliable is it?

Well, it depends if you are looking for a high recall or a high precision. For example, the word Rose can be either a name or a noun. If we include it in the list, then we increase the precision but we decrease the recall. And vice versa, if it's not in the list. In our case, we emphasize more on precision. So I would say the best use case here is to check whether it's a name or not based on a prior knowledge that the customer has submitted a name. If you are using this tool to look for name entities in the text, then be prepared to have a lot of false positive (rose is an example).

Here is an example on a (old) text: ALI BABA AND THE FORTY THIEVES.

License

I don't own the data obviously. It's fetched from the websites listed in:

https://github.com/philipperemy/name-dataset/blob/master/generation/generate.sh

So I guess the most strict software license should apply here.

Sources and References

Exhaustive list of all the possible websites. Not all are used since there is a lot of garbage in the lists.

About

Probably the biggest dataset of Names, worldwide.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 71.4%
  • Python 28.6%