# Synonym dictionaries of person names

**URL:** https://discuss.elastic.co/t/synonym-dictionaries-of-person-names/21892
**Category:** Elasticsearch
**Created:** [January 29, 2015, 5:28am UTC](https://discuss.elastic.co/t/synonym-dictionaries-of-person-names/21892 "2015-01-29T05:28:33Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![davidbkemp](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/davidbkemp/32/594_2.png) [@davidbkemp](https://discuss.elastic.co/u/davidbkemp)
#### Post date: [January 29, 2015, 5:28am UTC](https://discuss.elastic.co/t/synonym-dictionaries-of-person-names/21892/1 "2015-01-29T05:28:33Z")

</div>

I am looking for synonym dictionaries of person names that I can use with  
the Elasticsearch synonym analyser.  
e.g. dictionaries that map "Ted" to "Edward", and "Bill" to "William".  
I am curious to know what others are using.  
So far I have found these two possible sources:

> **[carltonnorthern/nickname-and-diminutive-names-lookup](https://github.com/carltonnorthern/nickname-and-diminutive-names-lookup)**
>
> nickname-and-diminutive-names-lookup - A CSV file that containing US given names (first name) and their associated nicknames or diminutive names.

  
[https://github.com/DallanQ/Names/wiki/Name-variant-files](https://github.com/DallanQ/Names/wiki/Name-variant-files)

And perhaps  
[http://www.behindthename.com](http://www.behindthename.com)

Thanks,  
David

--  
You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/7898de0d-9aaa-456c-9e36-fffd41ff65cc%40googlegroups.com](https://groups.google.com/d/msgid/elasticsearch/7898de0d-9aaa-456c-9e36-fffd41ff65cc%40googlegroups.com).  
For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

---

<div class="post-metadata">

### Author: ![Mark\_Harwood\_2](https://avatars.discourse-cdn.com/v4/letter/m/c77e96/32.png) [@Mark\_Harwood\_2](https://discuss.elastic.co/u/Mark_Harwood_2)
#### Post date: [January 29, 2015, 1:34pm UTC](https://discuss.elastic.co/t/synonym-dictionaries-of-person-names/21892/2 "2015-01-29T13:34:21Z")

</div>

I've built one before from raw data but you need:

1. a _lot_ of data
2. a unique ID per person
3. some noise/variation in the names recorded for each person

The input is of this form:

personID recorded\_name  
======= =============  
1 Rob  
1 Robert  
1 Bob  
2 Dave  
2 David  
2 Alice  
...

The output is a weighted graph of name\<-\>variant e.g Robert== Bob with a  
strong confidence rating.  
Using this I know not just real names but also typos e.g. that "Janes" is  
more likely to be "James" than "Jane" (a common typo due to key locations  
on keyboard).

On Thursday, January 29, 2015 at 5:28:33 AM UTC, David Kemp wrote:

> I am looking for synonym dictionaries of person names that I can use with  
> the Elasticsearch synonym analyser.  
> e.g. dictionaries that map "Ted" to "Edward", and "Bill" to "William".  
> I am curious to know what others are using.  
> So far I have found these two possible sources:
> 
> [https://code.google.com/p/nickname-and-diminutive-names-lookup/downloads/list](https://code.google.com/p/nickname-and-diminutive-names-lookup/downloads/list)  
> [https://github.com/DallanQ/Names/wiki/Name-variant-files](https://github.com/DallanQ/Names/wiki/Name-variant-files)
> 
> And perhaps  
> [http://www.behindthename.com](http://www.behindthename.com)
> 
> Thanks,  
> David

--  
You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/6a473177-7fdd-49d9-95e3-538b51df57f1%40googlegroups.com](https://groups.google.com/d/msgid/elasticsearch/6a473177-7fdd-49d9-95e3-538b51df57f1%40googlegroups.com).  
For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

---

<div class="post-metadata">

### Author: ![Itamar\_Syn\_Hershko](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/itamar_syn_hershko/32/725_2.png) [@Itamar\_Syn\_Hershko](https://discuss.elastic.co/u/Itamar_Syn_Hershko)
#### Post date: [February 2, 2015, 7:26am UTC](https://discuss.elastic.co/t/synonym-dictionaries-of-person-names/21892/3 "2015-02-02T07:26:36Z")

</div>

Was it raw POS tagged data or just raw data? can you share the code /  
process you used?

--

Itamar Syn-Hershko  
[http://code972.com](http://code972.com) | @synhershko [https://twitter.com/synhershko](https://twitter.com/synhershko)  
Freelance Developer & Consultant  
[Lucene.NET](http://Lucene.NET) committer and PMC member

On Thu, Jan 29, 2015 at 3:34 PM, Mark Harwood \<  
[mark.harwood@elasticsearch.com](mailto:mark.harwood@elasticsearch.com)\> wrote:

> I've built one before from raw data but you need:
> 
> 1. a _lot_ of data
> 2. a unique ID per person
> 3. some noise/variation in the names recorded for each person
> 
> The input is of this form:
> 
> personID recorded\_name  
> ======= =============  
> 1 Rob  
> 1 Robert  
> 1 Bob  
> 2 Dave  
> 2 David  
> 2 Alice  
> ...
> 
> The output is a weighted graph of name\<-\>variant e.g Robert== Bob with a  
> strong confidence rating.  
> Using this I know not just real names but also typos e.g. that "Janes" is  
> more likely to be "James" than "Jane" (a common typo due to key locations  
> on keyboard).
> 
> On Thursday, January 29, 2015 at 5:28:33 AM UTC, David Kemp wrote:
> 
> > I am looking for synonym dictionaries of person names that I can use with  
> > the Elasticsearch synonym analyser.  
> > e.g. dictionaries that map "Ted" to "Edward", and "Bill" to "William".  
> > I am curious to know what others are using.  
> > So far I have found these two possible sources:
> > 
> > [Google Code Archive - Long-term storage for Google Code Project Hosting.](https://code.google.com/p/nickname-and-diminutive-names-)  
> > lookup/downloads/list  
> > [https://github.com/DallanQ/Names/wiki/Name-variant-files](https://github.com/DallanQ/Names/wiki/Name-variant-files)
> > 
> > And perhaps  
> > [http://www.behindthename.com](http://www.behindthename.com)
> > 
> > Thanks,  
> > David
> 
> --  
> You received this message because you are subscribed to the Google Groups  
> "elasticsearch" group.  
> To unsubscribe from this group and stop receiving emails from it, send an  
> email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
> To view this discussion on the web visit  
> [https://groups.google.com/d/msgid/elasticsearch/6a473177-7fdd-49d9-95e3-538b51df57f1%40googlegroups.com](https://groups.google.com/d/msgid/elasticsearch/6a473177-7fdd-49d9-95e3-538b51df57f1%40googlegroups.com)  
> [https://groups.google.com/d/msgid/elasticsearch/6a473177-7fdd-49d9-95e3-538b51df57f1%40googlegroups.com?utm\_medium=email&utm\_source=footer](https://groups.google.com/d/msgid/elasticsearch/6a473177-7fdd-49d9-95e3-538b51df57f1%40googlegroups.com?utm_medium=email&utm_source=footer)  
> .
> 
> For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

--  
You received this message because you are subscribed to the Google Groups "elasticsearch" group.  
To unsubscribe from this group and stop receiving emails from it, send an email to [elasticsearch+unsubscribe@googlegroups.com](mailto:elasticsearch+unsubscribe@googlegroups.com).  
To view this discussion on the web visit [https://groups.google.com/d/msgid/elasticsearch/CAHTr4Zup6FroPitENCjBohH8Zxjtcs\_H4fCvWmL1nQeD8zZL7w%40mail.gmail.com](https://groups.google.com/d/msgid/elasticsearch/CAHTr4Zup6FroPitENCjBohH8Zxjtcs_H4fCvWmL1nQeD8zZL7w%40mail.gmail.com).  
For more options, visit [https://groups.google.com/d/optout](https://groups.google.com/d/optout).

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 6, 2017, 12:35am UTC](https://discuss.elastic.co/t/synonym-dictionaries-of-person-names/21892/4 "2017-07-06T00:35:24Z")

</div>


