up vote 37 down vote favorite
22
share [g+] share [fb]

I am looking for a library or database that can provide guesses about whether a person is male or female based on his or her name or nickname. Something like

john => "M",
mary => "F",
alex => "A", #ambiguous

I am looking for something that supports names other than English names (such as Japanese, Indian, etc.).

Before I get another answer along the lines of "you are going to offend people by assuming their sex/gender" let me be clear, my application does not interact with anyone. It does not send emails or contact anyone in anyway. There are no users to ask. In many cases, the person in question is dead, and the only information I have is name, birth date, and date of death. The reason I want to know the sex of the individual is to make the grammar of the output nicer and to aid in possible searches that may come latter.

link|improve this question

55% accept rate
18  
Wow... everyone seems to be answering the question "should I do this," rather than the asked question "how do I do this?" Not surprising, just interesting. – bsneeze May 3 '09 at 23:47
6  
I actually think this is a great question. If you go to a website and 90% of the time it figures your gender, I can see the benefit. I wish my TV could do the same. I was watching reruns of King of the Hill on a recent flight and every 3 minutes there'd be an ad for "personal massagers". – Uri May 4 '09 at 0:01
4  
@mP Wow, way to go from guessing sex to make the grammar nicer to racial profiling. – Chas. Owens May 4 '09 at 1:52
2  
How can you tell if a name is male or female? Alex could be short for Alexander (a male) or Alexandra (a female). I know a Micah who is male and one who is female. And what about foreign names? – Gabe Apr 28 '10 at 21:14
4  
A man they call Jayne... – Paul Nathan Apr 28 '10 at 21:21
show 29 more comments
feedback

30 Answers

up vote 50 down vote accepted

The gender of a name is something that cannot be inferred programmatically in the general case. You need a name database. Here is a free name database from the US Census Bureau.

link|improve this answer
Saw this in first.dist.males "HAI 0.004 90.022 1214" – Unknown May 3 '09 at 22:55
2  
This is great. Seems to be just what the asker needs. Ambiguous names could have the gender "guessed" based on frequency of Male versus frequency of Female. – stalepretzel May 3 '09 at 23:00
Unknown, I'm not sure what you mean. A quick Google search shows that Hai is a boy name of Hebrew origin. – Ayman Hourieh May 3 '09 at 23:10
it's not a name that translates well to English.. not Hai but more like Chai, or if you go by the Alphabet, Jai. – Amir Arad Jun 3 '09 at 15:44
1  
I built a library for this using the Census data and it works great! Potential applications: analytics, IVR voice gender choosing. – Chris McCall Sep 14 '10 at 16:00
feedback

"I tell ya, life ain't easy for a boy named 'Sue.'"

...So, why make it any harder? If you need to know the sex, just ask... Otherwise, don't worry about it.

link|improve this answer
11  
@Chas: even if you manage to get it right 80% of the time, that's still gonna irritate two out of every ten people using your software. Not so good... I understand the motivation, but you're really better off re-wording your messages such that they're gender-neutral. – Shog9 May 3 '09 at 23:17
2  
I wonder if anyone else remembers "Pat" from SNL. – erickson May 3 '09 at 23:27
5  
Re-reading this, i'm coming off awful preachy... Don't mean to put down your idea, i think it's an interesting one... But also very risky. I used to work as a telemarketer, and no matter how many names you know, no matter how good you get at recognizing voices even, you still end up guessing wrong sometimes... and it's never fun. And so, it's something i would avoid, unless there's a big, big payoff for managing to guess it right. – Shog9 May 3 '09 at 23:29
3  
I would take Shog9's advise. Unless your application is going to be in languages other than English, it might be easier to just use gender-neutral pronouns--e.g. they, one, s/he, etc. – Calvin May 3 '09 at 23:39
7  
My girlfriend's name is Kevan. She gets enough people wrongly guessing her gender from her name, she doesn't need computers also doing it. The thing to beware of is creating a database entry that states someone's gender based on a computer's guess; people who look at that might assume it's provided by the person themselves, and get really confused when their assumptions turn out to be wrong (as opposed to only somewhat confused based on the name alone). – Brian Campbell May 4 '09 at 5:09
show 8 more comments
feedback

gender.c is an open source C program that does a good job. It comes with data for 44568 first names from all around the world. There is good documentation and a description of the file format (basically plain text) so it should not be to difficult to read it from your own application.

Here is what the author says:

A few words on quality of data

The dictionary of first names has been prepared with utmost care. For example, the Turkish, Indian and Korean names in this dictionary have all been independently classified by several native speakers. I also took special care to list only those names which can currently be found.

The lesson from this?

Any modifications should be done very cautiously (and they must also adhere to the sorting required by the search algorithm). For example, knowing that "Sascha" is a boy's name in Germany, the author never assumed the English "Sasha" to be a girl's name. Knowing that "Jan" is a boy's name in Germany, I never assumed it to be also a English short form of "Janet". Another case in point is the name "Esra". This is a boy's name in Germany, but a girl's name in Turkey.

The program calculates a probability for the name being male of female. It can do so with the name as input alone or with the name and country of origin, which gives significantly better results.

You can download it from the website of the German computer magazine c't 40 000 Namen. The article is in German but don't worry, all documentation is English. Here is the direct ftp link 0717-182.zip if you are not interested in the article. The zip-File contains the source code, an windows executable, the database and the documentation.

link|improve this answer
This is wonderful, thank you. – Dale Athanasias Nov 6 '11 at 6:13
feedback

Here are two oddball approaches that may not even work, and likely wouldn't work en masse without violating the terms of a license:

  1. Use the Facebook API (which I know virtually nothing about, it may not even be possible) to perform two searches: one for FB male users with that first name, and one for female. Use the two numbers to decide the probability of gender.

  2. Much looser but more scalable, use the Google API and search for the name plus the gender-specific pronouns, and compare the numbers. For instance, there are 592,000,000 results for searching for "Richard his" (not as a phrase), but only 179,000,000 for "Richard her".

link|improve this answer
Apart from the general consensus on having software trying to guess things like sex from a first name, this is really cool algorithmic answer to the original question. Well done. – peSHIr May 19 '09 at 13:38
Great idea. You can probably throw in some words in a given country's language as well to localize it. – Nosredna Jun 8 '09 at 0:15
Good point, Nosrenda... of course, Google also allows you to filter search results by language code already. You can even steal the user's preferred language from the HTTP request. Their browser language setting may or may not match up with the ethnicity of their name, but this is a fuzzy technique anyway. – richardtallent Jun 8 '09 at 0:43
I found that Google is chauvinist: more results come back for men than women because more men are in Google. The Facebook API is probably a lot more representative. – Chris McCall Mar 16 '10 at 17:04
feedback

The only thing you'll get from trying to automate it is a bunch of unhappy users. From that census data:

JAMES, JOHN, ROBERT, MICHAEL, WILLIAM, DAVID, RICHARD, CHARLES, JOSEPH, THOMAS, CHRISTOPHER, DANIEL, PAUL, MARK, DONALD, GEORGE, KENNETH, STEVEN, EDWARD, BRIAN, RONALD, ANTHONY, KEVIN, JASON, MATTHEW, GARY, TIMOTHY, JOSE, LARRY, JEFFREY, FRANK, SCOTT, ERIC, STEPHEN, ANDREW, RAYMOND, GREGORY, JOSHUA, JERRY, DENNIS, WALTER, PATRICK, PETER, HAROLD, HENRY, CARL, ARTHUR, RYAN, JOE, JUAN, JACK, ALBERT, JUSTIN, TERRY, GERALD, KEITH, SAMUEL, WILLIE, LAWRENCE, ROY, BRANDON, ADAM, FRED, BILLY, LOUIS, JEREMY, AARON, RANDY, EUGENE, CARLOS, RUSSELL, BOBBY, VICTOR, MARTIN, JESSE, SHAWN, CLARENCE, SEAN, CHRIS, JOHNNY, JIMMY, ANTONIO, TONY, LUIS, MIKE, DALE, CURTIS, NORMAN, ALLEN, GLENN, TRAVIS, LEE, MELVIN, KYLE, FRANCIS, JESUS, RAY, JOEL, EDDIE, TROY, ALEXANDER, MARIO, FRANCISCO, MICHEAL, OSCAR, JAY, ALEX, JON, RONNIE, TOMMY, LEON, LEO, WESLEY, DEAN, DAN, LEWIS, COREY, MAURICE, VERNON, ROBERTO, CLYDE, SHANE, SAM, LESTER, CHARLIE, TYLER, GENE, BRETT, ANGEL, LESLIE, CECIL, ANDRE, ELMER, GABRIEL, MITCHELL, ADRIAN, KARL, CORY, CLAUDE, JAMIE, JESSIE, CHRISTIAN, LONNIE, CODY, JULIO, KELLY, JIMMIE, JORDAN, JAIME, CASEY, JOHNNIE, SIDNEY, JULIAN, DARYL, VIRGIL, MARSHALL, PERRY, MARION, TRACY, RENE, FREDDIE, AUSTIN, JACKIE, JOEY, EVAN, DANA, DONNIE, SHANNON, ANGELO, SHAUN, LYNN, CAMERON, BLAKE, KERRY, JEAN, IRA, RUDY, BENNIE, ROBIN, LOREN, NOEL, DEVIN, KIM, GUADALUPE, CARROLL, SAMMY, MARTY, TAYLOR, ELLIS, DALLAS, LAURENCE, DREW, JODY, FRANKIE, PAT, MERLE, TERRELL, DARNELL, TOMMIE, TOBY, VAN, COURTNEY, JAN, CARY, SANTOS, AUBREY, MORGAN, LOUIE, STACY, MICAH, BILLIE, LOGAN, DEMETRIUS, ROBBIE, KENDALL, ROYCE, MICKEY, DEVON, ASHLEY, CAREY, SON, MARLIN, ALI, SAMMIE, MICHEL, RORY, KRIS, AVERY, ALEXIS, GERRY, STACEY, CARMEN, SHELBY, RICKIE, BOBBIE, OLLIE, DENNY, DION, ODELL, MARY, COLBY, HOLLIS, KIRBY, CRUZ, MERRILL, LANE, CLEO, BLAIR, NUMBERS, CLAIR, BERNIE, JOAN, DOMINIQUE, TRISTAN, JAME, GALE, LAVERNE, ALVA, STEVIE, ERIN, AUGUSTINE, YOUNG, JOHNIE, ARIEL, DUSTY, LINDSEY, TRACEY, SCOTTIE, SANDY, SYDNEY, GAIL, DORIAN, LAVERN, REFUGIO, IVORY, ANDREA, SANG, DEON, CAROL, YONG, BERRY, TRINIDAD, SHIRLEY, MARIA, CHANG, ROSARIO, DANNIE, FRANCES, THANH, CONNIE, TORY, LUPE, DEE, SUNG, CHI, QUINN, MINH, THEO, LOU, CHUNG, VALENTINE, JAMEY, WHITNEY, SOL, CHONG, PARIS, OTHA, LACY, DONG, ANTONIA, KELLEY, CARROL, SHAYNE, VAL, JUDE, BRITT, HONG, LEIGH, GAYLE, JAE, NICKY, LESLEY, MAN, KASEY, JEWELL, PATRICIA, LAUREN, ELISHA, MICHAL, LINDSAY, and JEWEL

are all names that work for both males and females. If a girl's name is Robert and everyone, including your software, keeps on calling her a man, she'd be rather pissed.

link|improve this answer
12  
Lets assume that there exists a girl called Mark (feel free to point one out). If I was her I'd be pissed off at my parents and not at Chas' software... – Darko Z May 14 '09 at 9:39
What if the software never calls her a man, but presents the "masculine" version of the UI? Or she's lumped in with men in an aggregate over a dataset used to develop marketing collateral? She might not even notice. – Chris McCall Mar 16 '10 at 17:58
feedback

Given your stated constraints, your best option is to re-phrase whatever it is you're writing to be gender-neutral unless you know what gender they want to be called in each instance.

If writing in English, remember that singular “they” is grammatically fine as a gender-neutral third-person singular pronoun.

A good example is the title of this question. As is currently:

    … mapping a person's name to his or her sex?

That would be less awkward if written:

    … mapping a person's name to their sex?
link|improve this answer
It's not quite "perfectly" grammatical. Even the Wikipedia article admits that it has been used, particularly in the modern context, as a result of some writers' discomfort with the generic "he". I don't have a big problem with writers that do this (although if gender-neutrality is really important, I prefer to reword the construct so I can use pronouns like "one"), but let's call it what it is. – Ben Collins May 4 '09 at 0:25
I'd argue we're both right. All grammar, especially English grammar, has significant problems; but I'd say any definition of “perfect grammar” that actually applies to anything in English applies here too. Either the singular “they” is perfectly grammatical, or nothing in English is :-) – bignose May 4 '09 at 3:16
Of note, Grammar Girl (author Mignon Fogarty) has been leaning towards acceptance of the singular "they" for a while now. grammar.quickanddirtytips.com/… – Karen Lopez May 12 '09 at 17:43
feedback

Some cultures have unisex names - like mine. What do you do then? I think the answer is plain and simple - don't assume - you could cause offence. Just ask if its needed, otherwise gender neutrality.

link|improve this answer
1  
The question already answered your answer: alex => "A", #ambiguous. Whether or not the question has an answer, your answer isn't it. – Windows programmer May 4 '09 at 0:20
I disagree - My point is that all names are potentially ambiguous. – Preet Sangha May 4 '09 at 0:27
If the names are unisex then they would all be classified as A and I would go for gender neutrality, but if a name is predominately masculine or feminine I can use much more natural language. – Chas. Owens May 4 '09 at 0:30
I see what your reasoning is but I refer you to the latter comment. – Preet Sangha May 4 '09 at 0:34
3  
But if you see a "Preet" on StackOverflow, it's probably a male. – Nosredna Jun 8 '09 at 0:34
show 3 more comments
feedback

It's also poor practice to assume that users must be male or female. There are a small but significant number of "intersex" people, most of whom are heartily sick of not having a box to tick..
bignose: interesting on the "singular they". I didn't realize it had such a long history.

link|improve this answer
feedback

Although databases are probably the most practical solution, if you want to have some fun maybe you could try writing a neural net (or using a neural net library) that takes in the name and outputs one of those 3 options (F,M,A).

You could train it using the datasets that exist in the databases suggested by other answers, as well as with any other data you have.

This solution would allow you to handle names not specifically categorised previously, and also handle different languages. You might want to pass the language (if you know it) as an input to the neural net as well.

I don't know that I can say neural nets (or any other machine learning) would do a good job of categorising though.

link|improve this answer
feedback

I'm pretty sure no such service could exist with an acceptable level of accuracy. Here are the problems which I think are insurmountable:

  • There are plenty of names which are for both men and women.
  • There's a lot of different names in this world, even if you only consider one country.
  • There is the "A Boy Named Sue" issue, raised so eloquently by Johnny Cash :-)
link|improve this answer
1  
A good database would have the percentage male/female for androgynous names by region and when the sample was taken, etc. – uncle brad Apr 28 '10 at 22:03
What about languages such as Japanese? I'm learning Japanese so I might be wrong here, but names <-> Kanji are not a straight forward relationships, there has been puns and misunderstanding on "what" kanji makes up a person's name. – Pharaun May 13 '10 at 15:23
feedback

The idea will clearly not work in most languages.

However if you could tell the nationality beforehand you could have more luck. In most Slav languages (e.g. russian, polish, bulgarian) you could safely assume that all surnames ending with -va -cha -ska (-a in general are feminine) while -v -ch -shi are masculine.

In fact any surname has feminine and masculine form depending on the ending. The same names used in other countries (e.g. US) might use only the masculine form though.

The same could be said for first names (-a -ya are feminine) but it is not 100% accurate.

But in general you would hardly get a library that is sufficiently accurate.

link|improve this answer
feedback

Just ask people, and if they are nice they will give you their 'M's or 'F's , and if they are not then give'em an 'A' .

link|improve this answer
1  
I am not in communication with the people whose names I want to map. – Chas. Owens May 3 '09 at 22:52
feedback

Name-gender maps can work but in multicultural countries it's more like guessing. I can give you one example: Marian in Polish is a typical masculine name, whereas the same name in Great Britain is a female name. In the era of people immigrating all over the world, I'm not sure such database would be very accurate. Good luck!

link|improve this answer
1  
No, but so long as it is better than 50% it beats treating names as always masculine. – Chas. Owens May 3 '09 at 23:37
@Chas, so why cling to that false dichotomy? You have the option of gender-neutrality. – bignose May 3 '09 at 23:42
we even have 2 famous politics who have a second name 'maria' - 'mary' which would be classified in your database as feminine. just for the lols. – zalew May 4 '09 at 4:46
@JZ I am speaking of the firstname not the lastname (or vice versa for the cultures that do the reverse). – Chas. Owens May 4 '09 at 19:02
@bignose, the gender-neutral language looks weird and is convoluted, I would rather produce something that looks nicer when I can. This is not communicated back to the individuals (if they even exist), so there is no chance of offense, I don't know why people are spending so much time arguing this instead of just providing links to databases if they know of a good one. – Chas. Owens May 4 '09 at 19:03
show 1 more comment
feedback

IMHO, it is a generally bad idea to determine sex from an individuals name. A lot of names are intersexual (good grief, is this even a word ?? :-), and also they may be one sex in one culture and another in another.

A few stupid examples, just a few that came to mind (from my part of the world, CE)

Vanja - female, in eastern countries from here, mostly male
Alex - intersex (short for Sandra, female, and Sandro, male)
Robin - in western cultures, can be both

In some parts of the world, a persons sex can be determined by looking at how the name ends. For example, Marija, Sandra, Ivana, Petra, Sara, Lucija, Ana - you can see that most of these female names end in "ja" or "ra". There are other examples as well.

Still, I think it's better just to ask the user for sex.

link|improve this answer
6  
"Still, I think it's better just to ask the user for sex." -- I agree, that would be far better than posting comments on Stack Overflow. – Windows programmer May 4 '09 at 4:08
2  
Ups. Okeey, that didn't come out right :-) – ldigas May 4 '09 at 5:02
It was better before editing :-) – Windows programmer May 4 '09 at 23:17
Hehehe ... yeah :-) – ldigas May 4 '09 at 23:37
feedback

Well, not anymore. IBM patented that idea a while ago.

So if you're looking for any level of flexability (something other than a list of names), you'll either have to (gasp!) ask the user, or simply pay IBM for the rights :)

In any case, such autodetection is annoying for many people who have gender-ambiguous names, or even just mean parents. Let's not make this any harder for them.

link|improve this answer
It looks like IBM patented choosing an avatar based on name. Luckily that is not one of the applications I intend to use this for, so I am not violating their patent. As for asking the user, that assumes I have users to ask as opposed to a list of names. I have said repeatedly that there are no users, no interaction, and no messages going to the people who the names belong to. – Chas. Owens May 8 '09 at 2:11
feedback

It's culture/region dependent: take Andrea, for Italians is only masculine, for Sweden is a female name while Andreas is for men; Shawn is ambiguous in English. If a language has declination, like Latin or Russian, the final letters will change according to grammatical rules,

Another source of ambiguities is Family names identical to Personal names.

In my opinion it's impossibile to solve in general.

link|improve this answer
feedback

It's not free, but this is a nice library that I have used before:

NetGender for .NET allows you to quickly and easily build Name Verification, Parsing and Gender Determination into your custom applications. Accurately verify whether a particular field contains a valid individual or company. NetGender uses a 100,000+, ethnically diverse, Name Dictionary in combination with an 8,000+ Company Name Dictionary to ensure precise gender determination.

http://www.softwarecompany.com/dotnet/netgender.htm

link|improve this answer
feedback

I haven't used it, but IBM has a Global Name Analytics library (for a price!) that seems pretty comprehensive.

link|improve this answer
feedback

It's interesting that you say you have birth date. That could help. I've seen databases of histories of name popularity.

In the film Splash (1984), it was funny that Darryl Hannah's character chooses the name "Madison" from a Madison Avenue street sign, because obviously "Madison" is not a girl's name.

24 years later, Madison is the 4th most popular name for girl babies!


Name history from the gov't. (Check out Mary's sad decline through the last 100 years.)


When I wrote to the White House as a child, Richard Nixon (or, perhaps a secretary) responded to me with some photos of the historic place, addressed to "Miss Rhett Anderson." "Miss Rhett?" It doesn't even make sense! Can we REALLY not tell the difference between Clark Gable's Rhett (with a mustache, in Gone With The Wind!) and Vivian Lee's Scarlett? I shall never forgive him, despite Neil Young's assurance that "even Richard Nixon has got soul."

link|improve this answer
Good point, date definitely comes into play here. – Chas. Owens Jun 7 '09 at 23:30
feedback

Rapleaf has a "utilites api" that is a RESTful web service that does exactly this:

link|improve this answer
feedback

What I would do is make a hack which takes the name and searches it against the facebook api. Then looks at the resulting users and count how many of them are female or male. You then can return a percentage. Not so insurmountable anymore. :)

link|improve this answer
feedback

Check out http://genderchecker.com/

link|improve this answer
feedback

It's not a service, but a little app with a database:
http://www.codeproject.com/KB/cpp/genderizer.aspx

And this tool is in german:
http://www.faq-o-matic.net/2011/06/01/zu-einem-vornamen-das-geschlecht-finden/

And another one in VB:
http://www.vbarchiv.net/tipps/tipp_1925-geschlecht-anhand-des-vornamens-ermitteln.html

I think in combination with some "Most used firstname in 2011" lists you should be able to build something decent.

link|improve this answer
feedback

I think it will be hard to find libraries or databases that covers more than one (or a limited few) cultures. For instance, here in Sweden the name "Maria" is strongly identified as a female name, while (to the best of my understanding) that connection is not at all as strong in spanish-speaking countries.

link|improve this answer
Maria is a female name in Spain – knoopx May 3 '09 at 22:50
Google for José Maria and you will find plenty of men carrying the name Maria. Perhaps not as their primary name, but still. – Fredrik Mörk May 3 '09 at 22:58
Multuple databases/libraries are fine. My assumption is that such a search would be O(1), so even a hundred searches would be trivial. – Chas. Owens May 3 '09 at 23:04
I'm Hispanic and Maria is STRONGLY associated with females. not to say there aren't Jose Maria's out there, but it's not common at all. – Paolo Bergantino May 3 '09 at 23:11
Italy also has some males with Maria as a middle name. English speaking countries have some females with Jean as a first or second name (pronounced differently from the French name Jean). English has Karen as a female name. English vs. English on Leslie. Databases are going to have a lot of A's. – Windows programmer May 4 '09 at 0:29
feedback

This is not really a programming problem - it comes down to getting a probability table.

AFAIK there are no public databases in distilled forms. You could either build this from census data, or buy the data from someone.

For example, this is someone who sells the probability table for Canada.

link|improve this answer
feedback

Got this from hacker news discussion about this

link|improve this answer
feedback

I know of no such service. You can perhaps find the data you are looking for, however. The US government publishes data about the prevalence of names and the gender of the person they're attached to. The Social Security Administration has such a page, and the census may as well, but I haven't taken the time to look. Perhaps other world governments do similar things.

link|improve this answer
feedback

Plus I don't know but what about Asian language, Arabic, and/or one of the thousands of languages out there.

I mean sure I could see a database of names with the percentage that was male versus female, along with additional information such as region, country, and so forth. But ultimately in the end it would be quite a complicated and large database to be able to deal with all of the possible name in the world.

Plus how to deal with names that aren't in the database? etc....

link|improve this answer
feedback

I know of no such service, however ..

  • you could start with a raw list of person names or
  • guess gender according to some rules (e.g. -o => male, -ela, -a => female)

In some countries (e.g. germany) the name a person can be given is limited by law - maybe there are some publications concerning that matter, which could be harvested (but I don't know of any in the moment).

link|improve this answer
feedback

Dont bother attempting to determine a persons sex from an entered name. When you get it wrong your going to really piss someone off, letting users enter their sex is simple so you may as well let them enter it.

link|improve this answer
1  
That would work if I were designing a form to interact with people, but that is not what is going on. – Chas. Owens May 3 '09 at 23:43
2  
If you don't know don't guess - it's extremely rude to assume. If you really need to know ask, there are always ways to really get a definitive answer. – mP. May 4 '09 at 1:44
2  
@mP Really? There is a good way to ask a dead person with no relatives? I am glad you know all of the facts of what I am doing so much better than I do. So, do you hold a seance or what? – Chas. Owens May 4 '09 at 19:07
@Chas Well why bother with a database at all. Why not randomly generate data whenever a query is made for a person. Your boss will be happy, with the savings in DB licenses and no support/admin.... – mP. May 4 '09 at 21:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.