File: spelling.rst

package info (click to toggle)
xapian-core 1.4.3-2%2Bdeb9u3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 21,412 kB
  • sloc: cpp: 113,868; ansic: 8,723; sh: 4,433; perl: 836; makefile: 566; tcl: 317; python: 40
file content (190 lines) | stat: -rw-r--r-- 7,631 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190

.. Copyright (C) 2007,2008,2009,2010,2011 Olly Betts

==========================
Xapian Spelling Correction
==========================

.. contents:: Table of contents

Introduction
============

Xapian provides functionality which can suggest corrections for misspelled
words in queries, or in other situations where it might be useful.  The
suggestions can be generated dynamically from the data that has been indexed,
so the correction facility isn't tied to particular languages, and can suggest
proper nouns or specialist technical terms.

Indexing
========

The spelling dictionary can be built with words from indexed text, or by adding
words from a static word list, or a combination of the two.

Static spelling data
--------------------

If ``db`` is a Xapian::WritableDatabase, you can add to the spelling dictionary
using::

    db.add_spelling(word, frequency_inc);

The ``frequency_inc`` parameter is optional, and defaults to 1.

And the corresponding way to remove from the spelling dictionary is::

    db.remove_spelling(word, frequency_dec);

The ``frequency_dec`` parameter is optional and defaults to 1.  If you try to
decrement the frequency of a word by more than its current value, it's just
removed.

Dynamic spelling data
---------------------

``Xapian::TermGenerator`` can be configured to automatically add words from
indexed documents to the spelling dictionary::

    Xapian::TermGenerator indexer;
    indexer.set_database(db);
    indexer.set_flags(indexer.FLAG_SPELLING);

Note that you must call the ``set_database()`` method as well as setting
``FLAG_SPELLING`` so that Xapian knows where to add the spelling dictionary
entries.

If a document is removed or replaced, any spelling dictionary entries that
were added when it was originally indexed won't be automatically removed.
This might seem like a flaw, but in practice it rarely causes problems, and
spellings in documents which were in the database, or in older versions of
documents, are still interesting.  You can think of this as using the history
of the document collection as a source of spelling data.

If you really want these entries removed, you can run through the termlist of
each document you are about to remove or replace (if you indexed terms
unstemmed) and call ``remove_spelling()`` for each word.

Searching
=========

QueryParser Integration
-----------------------

If FLAG_SPELLING_CORRECTION is passed to QueryParser::parse_query() and
QueryParser::set_database() has been called, the QueryParser will look for
corrections for words in the query.  In Xapian 1.2.2 and earlier, it only
did this for terms which aren't found in the database.

If a correction is found, then a modified version of the query string will be
generated which can be obtained by calling
QueryParser::get_corrected_query_string().  However, the original query string
will still be parsed, since you'll often want to ask the user "Did you mean:
[...] ?" - if you want to automatically use the corrected form, just call
QueryParser::parse_query() on it.

Omega
=====

As of Omega 1.1.1, omindex and scriptindex support indexing spelling correction
data and omega supports suggesting corrected spellings at search time.  See the
`Omega documentation <https://xapian.org/docs/omega/>`_ for more details.

Algorithm
=========

A list of candidate words is generated by matching trigrams (groups of 3
adjacent characters) in the candidates against those in the misspelled
word.  As well as groups of adjacent characters, "starts" and "ends"
are generated with the first two and last two characters respectively
(e.g. "FISH" generates: "<start>FI", "FIS", "ISH", and "SH<end>").

This technique alone would missing many single-edit errors in two and three
character words, so we handle these specially as follows:

For a three character word (e.g. "ABC"), we generate trigrams for the two
transposed forms too ("BAC" and "ACB"), in addition to "<start>AB", "ABC",
and "BC<end>".

For a two character word (e.g. "AB"), we generate the special start and end
trigrams for the reversed form (i.e. "BA"), so the trigrams are "<start>AB",
"AB<end>", "<start>BA", and "BA<end>".

And for two, three, and four character words, we generate "bookend" bigrams
consisting of the prefix 'B' followed by the first and last letters.  This
allows us to handle transposition of the middle two characters of a four
letter word, substitution or deletion of the middle character of a three
letter word, or insertion in the middle of a two letter word.

Note that we don't attempt to suggest corrections for single character words
at all, since the suggestions are unlikely to be of good quality (we'd always
suggest the same correction for a given database, probably "a" for English).
We also don't currently attempt to suggest substitution corrections for two
character words, though this would perhaps be useful in some cases.

Those candidates with the better trigram matches are compared to the misspelled
word by calculating the "edit distance" - that's the smallest number of
operations required to turn one word into another.  The allowed operations
are: insert a character; delete a character; change a character to another;
transpose two adjacent characters.  The candidate with the smallest edit
distance is found, and if more than one word has the smallest edit distance,
that which occurs the most times is chosen.  If there's a tie of this too,
it's essentially arbitrary which is chosen.

If the word passed in is in the spelling dictionary, then a candidate will
still be returned if one is found with the same or greater frequency.

The maximum edit distance to consider can be specified as an optional parameter
to Xapian::Database::get_spelling_suggestion().  If not specified, the default
is 2, which generally does a good job.  3 is also a reasonable choice in many
cases.  For most uses, 1 is probably too low, and 4 or more probably too high.

Unicode Support
---------------

Trigrams are generated at the byte level, but the edit distance calculation
currently works with Unicode characters, so get_spelling_suggestion() should
suggest suitable spelling corrections respecting the specified (or default)
edit distance threshold.

Current Limitations
===================

Exactness
---------

Because Xapian only tests the edit distance for terms which match
well (or at all!) on trigrams, it may not always suggest the same answer that
would be found if all possible words were checked using the edit distance
algorithm.  However, the best answer will usually be found, and an exhaustive
search would be prohibitively expensive for many uses.

Backend Support
---------------

Currently spelling correction is supported by glass and chert
databases.  It works with a single database or multiple databases (use
Database::add_database() as usual).  We've no plans to support it for the
InMemory backend, but we do intend to support it for
the remote backend in the future.

Prefixed Terms
--------------

Currently spelling correction ignores prefixed terms.

QueryParser changed word locations
----------------------------------

The QueryParser doesn't currently report the locations of changed words in
the query string, so it's a bit fiddly to mark up the altered words specially
in HTML output, for example.

References
==========

The algorithm used to calculate the edit distance is based on that described in
the paper "An extension of Ukkonen's enhanced dynamic programming ASM
algorithm" by Hal Berghel, University of Arkansas, and David Roach, Acxiom
Corporation.  It's available online at:
http://berghel.net/publications/asm/asm.php