apache / lucene

Apache Lucene open-source search software
https://lucene.apache.org/
Apache License 2.0
2.61k stars 1.02k forks source link

Extended spell checker with phrase support and adaptive user session analysis. [LUCENE-626] #1701

Open asfimport opened 18 years ago

asfimport commented 18 years ago

Extensive javadocs available in patch, but I also try to keep it compiled here: http://ginandtonique.org/\~kalle/javadocs/didyoumean/org/apache/lucene/search/didyoumean/package-summary.html#package_description

A semi-retarded reinforcement learning thingy backed by algorithmic second level suggestion schemes that learns from and adapts to user behavior as queries change, suggestions are accepted or declined, etc.

Except for detecting spelling errors it considers context, composition/decomposition and a few other things.

heroes of light and magik -> heroes of might and magic vinci da code -> da vinci code java docs -> javadocs blacksabbath -> black sabbath

Depends on #1628


Migrated from LUCENE-626 by Karl Wettin, 4 votes, updated Jun 11 2010 Attachments: LUCENE-626_20071023.txt

asfimport commented 17 years ago

Karl Wettin (migrated from JIRA)

All of the old comments was obsolete, so I re-initialized the whole issue.

asfimport commented 17 years ago

Karl Wettin (migrated from JIRA)

NgramPhraseSuggester is now decoupled from the adaptive layer, but I would like to refactor it even more so it is easy to replace the SpellChecker with any other single token suggester.

asfimport commented 17 years ago

Karl Wettin (migrated from JIRA)

Patch in this issue have no dependencies to anything out of the ordinary.

However, a large refactor and well documented version dependent to #1628 is available.

asfimport commented 17 years ago

Karl Wettin (migrated from JIRA)

Patch depends on #1628.

asfimport commented 17 years ago

Nicolas Lalevée (migrated from JIRA)

This feature looks interesting, but why should it depend on #1628 ?

asfimport commented 17 years ago

Karl Wettin (migrated from JIRA)

Nicolas Lalevée [03/Mar/07 01:04 PM] > This feature looks interesting, but why should it depend on #1628 ?

It use the Index (notification, unison index factory methods, et c.) and IndexFacade (cache, fresh reader/searcher et c.) available in that patch. And by doing that, it also enables me to use InstantiatedIndex for the a priori corpus and ngram index to speed up the response time even more.

asfimport commented 17 years ago

Karl Wettin (migrated from JIRA)

As the phrase-suggestion layer on top of contrib/spell in this patch was noted in a bunch of forums the last weeks, I've removed the 550-dependency and brought it up to date with the trunk.

Second level suggesting (ngram token, phrase) can run stand alone. See TestTokenPhraseSuggester. However, I recommend the adaptive dictonary as it will act as a cache on top of second level suggestions. (See docs.)

Output from using adaptive layer only, i.e. suggestions based on how users previously behaved. About half a million user queries analyed to build the dictionary (takes 30 seconds to build on my dual core):

3ms pirates ofthe caribbean -> pirates of the caribbean 2ms pirates of the carribbean -> pirates of the caribbean 0ms pirates carricean -> pirates caribbean 1ms pirates of the carriben -> pirates of the caribbean 0ms pirates of the carabien -> pirates of the caribbean 0ms pirates of the carabbean -> pirates of the caribbean 1ms pirates og carribean -> pirates of the caribbean 0ms pirates of the caribbean music -> pirates of the caribbean soundtrack 0ms pirates of the caribbean soundtrack -> pirates of the caribbean score 0ms pirate of carabian -> pirate of caribbean 0ms pirate of caribbean -> pirates of caribbean 0ms pirates of caribbean -> pirates of caribbean 0ms homm 4 -> homm iv 0ms the pilates -> null

Using the phrase ngram token suggestion using token matrices checked against an apriori index. A lot of queries required for one suggestion. Instantiated index as apriori saves plenty of millis. This is expensive stuff, but works pretty good.

72ms the pilates -> the pirates 440ms heroes of fight and magic -> heroes of might and magic 417ms heroes of right and magic -> heroes of might and magic 383ms heroes of magic and light -> heroes of might and magic 20ms heroesof lightand magik -> null 385ms heroes of light and magik -> heroes of might and magic 0ms heroesof lightand magik -> heroes of might and magic 385ms heroes of magic and might -> heroes of might and magic

(That 0ms is becase previous was cached. One does not have to use this cache.)

asfimport commented 17 years ago

Karl Wettin (migrated from JIRA)

RAMDirectory vs. InstantiatedIndex as apriori index: the latter is 5 to 25 times faster (leave first out).

RAMDirectory: 72ms the pilates -> the pirates 440ms heroes of fight and magic -> heroes of might and magic 417ms heroes of right and magic -> heroes of might and magic 383ms heroes of magic and light -> heroes of might and magic 20ms heroesof lightand magik -> null 385ms heroes of light and magik -> heroes of might and magic 0ms heroesof lightand magik -> heroes of might and magic 385ms heroes of magic and might -> heroes of might and magic

InstantiatedIndex: 171ms the pilates -> the pirates 66ms heroes of fight and magic -> heroes of might and magic 36ms heroes of right and magic -> heroes of might and magic 14ms heroes of magic and light -> heroes of might and magic 6ms heroesof lightand magik -> null 15ms heroes of light and magik -> heroes of might and magic 0ms heroesof lightand magik -> heroes of might and magic 16ms heroes of magic and might -> heroes of might and magic

asfimport commented 16 years ago

Karl Wettin (migrated from JIRA)

New in this patch:

Next patch will probably focus on:

asfimport commented 16 years ago

Karl Wettin (migrated from JIRA)

In this patch:

SuggestionFacade facade = new SuggestionFacade(new File("data"));
facade.getDictionary().getPrioritesBySecondLevelSuggester().putAll(facade.secondLevelSuggestionFactory());
...
QuerySession session = facade.getQuerySessionManager().sessionFactory();
...
String query = "heros of mght and magik";
Hits hits = searcher.search(queryFactory(query));
String suggested = facade.didYouMean(query);
session.query(query, hits.length(), suggested);
...
facade.getQuerySessionManager().getSessionsByID().put(session);
...
facade.trainExpiredSessions();
...
facade.close();
asfimport commented 16 years ago

Karl Wettin (migrated from JIRA)

If anyone have some rather large query logs with session id, time stamp and preferably click through data that I can test on this, that would be great. It really needs to be adjusted to more than one.

asfimport commented 14 years ago

Mikkel Kamstrup Erlandsen (migrated from JIRA)

FYI: I started working on updating on Karl's patch. The code is not yet in a compilable state, but can be found on GitHub: http://github.com/mkamstrup/lucene-didyoumean

My plans for this is to:

Thanks for the great work Karl!

asfimport commented 14 years ago

Mikkel Kamstrup Erlandsen (migrated from JIRA)

@Karl: The test sources refer a file http://ginandtonique.org/\~kalle/LUCENE-626/queries_grouped.txt.gz which is not online anymore, is this resource still available somewhere?

asfimport commented 14 years ago

Mikkel Kamstrup Erlandsen (migrated from JIRA)

Status update: All tests except two are passing since commit 7e4eb7989d81e50cc81b6f33ac5fa188467f5d3e on http://github.com/mkamstrup/lucene-didyoumean :

1) TestTokenPhraseSuggester gives me a ArrayIndexOutOfBoundsException roughly half way through the test cases (which otherwise pass) 2) Missing the sample query log to import from the resource http://ginandtonique.org/\~kalle/LUCENE-626/queries_grouped.txt.gz

![ But be aware that this is still work in progress ]( But be aware that this is still work in progress )

asfimport commented 14 years ago

Mikkel Kamstrup Erlandsen (migrated from JIRA)

Status update: All tests pass now, since the tag 'milestone3'

Missing essentials:

Missing nice-to-haves:

asfimport commented 14 years ago

Karl Wettin (migrated from JIRA)

Hej Mikkel,

the test case data set is on an HDD hidden away on an attic 600km away from me, but I've asked for someone in the vicinity to fetch it for me. Might take a little while. Sorry!

However extremely cool that you're working with this old beast! I'm super busy as always but I promise to follow your progress in case there is something you wonder about. It's been a few years since I looked at the code though.

asfimport commented 14 years ago

Mikkel Kamstrup Erlandsen (migrated from JIRA)

Hej Karl,

Super that you are still around! :-) Even more sweet that you are willing to try on turn up these files!

Development is going pretty well, and I am finally feeling that I can wrap my head around it, but it is most valuable to have you in the back hand!

asfimport commented 14 years ago

Henrik Bitsch Kirk (migrated from JIRA)

I have forked Mikkels project, this is now availeble at (also at GitHup): http://github.com/hkirk/lucene-didyoumean

The plan for this is more or less the same as Mikkel:

Running projects:

Menahali commented 2 weeks ago

Karl Wettin (migrated from JIRA)

Nicolas Lalevée [03/Mar/07 01:04 PM] > This feature looks interesting, but why should it depend on #1628 ?

It use the Index (notification, unison index factory methods, et c.) and IndexFacade (cache, fresh reader/searcher et c.) available in that patch. And by doing that, it also enables me to use InstantiatedIndex for the a priori corpus and ngram index to speed up the response time even more.

I can't mack any thing in my program the baker closed every thing in my githup program