Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

TL/DR: I have logs from an autocomplete form, which I would like to leverage to increase the intelligence of the results it returns.

I have a project that revolves around users selecting opera characters from a database of ~15,000 unique characters. My difficulty is that each character appears in the database as only one name but it may also be known to the public by any number of other colloquial names.

I have had been lucky enough to receive a modest amount of traffic and currently have ~20,000 rows of logs of strings which my users have typed, and the opera character they ended up selecting.

If a user doesn't find the character they are searching for with their first string, they will often try the character by another name. When they are successful, this data correlates the characters' colloquial names with the character it's self. I am hoping to leverage this data to enable my autocomplete form to match against these colloquial names.

Unfortunately along with the useful correlations there are many (perhaps more) random correlations. Often when a user's attempt(s) do not return the result they are looking for, instead of trying the character by another name, they simply try (and locate) a completely different character.

I have read a number of scholarly papers on the subject of using search logs to improve natural language search queries, but none of the methods seem to have much application in this narrow case.

Are there known methods that would be useful for this application?

My project can be viewed at http://fachme.com

share|improve this question
Your interface provides the ability to click on specific characters once returned; do you keep track of which characters have been selected by your users? That could probably be used to filter the completely different character concern. – sarnold Mar 12 '12 at 2:40
sarnold: Yes, I do! But the problem is that when the user does not find the character they are looking for, they don't have anything to click on, so they simply backspace and try again. This process is the same if they are trying another name for the same character, or a different character. – Jordan Eldredge Mar 12 '12 at 2:43
Oh, that makes sense. Hrm. Neat problem. :) – sarnold Mar 12 '12 at 2:53

closed as not a real question by Will Jun 7 at 14:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I don't know what language you're in, but PHP has a multitude of functions for finding more "natural" representations of strings.

For example, soundex (which is in other languages, too, usually as plugins/libraries) would make "andy" match "ahndee".

share|improve this answer
I am in PHP and soundex is a useful tool, but the difficult matches are things like: "Königin der Nacht" = "The Queen of the Night" or "Olympia" = "The Doll" or "Almaviva" = "The Count" – Jordan Eldredge Mar 12 '12 at 2:49
Soundex is probably better when there are full inputs -- it's a bit hard when e.g. I typed Rig and got expected Rigoletto immediately back. Soundex just treats both as Rig (or something very similar; it's been ages) and won't help much if the user asked for reg or rog. – sarnold Mar 12 '12 at 2:52
So trim the opera names down to the same length as the cached search term and perform the soundex on both. – DanRedux Mar 12 '12 at 3:08

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