d589e89e5a6fe205d4c9f8884bb2a161a43aefc5
[nit.git] / lib / vsm / vsm.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Vector Space Model
16 #
17 # Vector Space Model (VSM) is an algebraic model for representing text documents
18 # (and any objects, in general) as vectors of identifiers, such as, for example,
19 # index terms.
20 #
21 # It is used in information filtering, information retrieval, indexing and
22 # relevancy rankings.
23 module vsm
24
25 import counter
26
27 # A n-dimensions vector
28 #
29 # *n-dimensions* vectors are used to represent a text document or an object.
30 class Vector
31 super HashMap[nullable Object, Float]
32
33 # Cosine similarity of `self` and `other`.
34 #
35 # Gives the proximity in the range `[0.0 .. 1.0]` where 0.0 means that the
36 # two vectors are orthogonal and 1.0 means that they are identical.
37 #
38 # ~~~
39 # var v1 = new Vector
40 # v1["x"] = 1.0
41 # v1["y"] = 2.0
42 # v1["z"] = 3.0
43 #
44 # var v2 = new Vector
45 # v2["x"] = 1.0
46 # v2["y"] = 2.0
47 # v2["z"] = 3.0
48 #
49 # var v3 = new Vector
50 # v3["a"] = 1.0
51 # v3["b"] = 2.0
52 # v3["c"] = 3.0
53 #
54 # print v1.cosine_similarity(v2)
55 # assert v1.cosine_similarity(v2) == 1.0
56 # print v1.cosine_similarity(v3)
57 # assert v1.cosine_similarity(v3) == 0.0
58 # ~~~
59 fun cosine_similarity(other: SELF): Float do
60 # Collect terms
61 var terms = new HashSet[nullable Object]
62 for k in self.keys do terms.add k
63 for k in other.keys do terms.add k
64
65 # Get dot product of two vectors
66 var dot = 0.0
67 for term in terms do
68 dot += self.get_or_default(term, 0.0) * other.get_or_default(term, 0.0)
69 end
70 var cos = dot.to_f / (self.norm * other.norm)
71 if cos.is_nan then return 0.0
72 return cos
73 end
74
75 redef fun [](k) do
76 if not has_key(k) then return 0.0
77 return super
78 end
79
80 # The norm of the vector.
81 #
82 # `||x|| = (x1 ** 2 ... + xn ** 2).sqrt`
83 #
84 # ~~~
85 # var v = new Vector
86 # v["x"] = 1.0
87 # v["y"] = 1.0
88 # v["z"] = 1.0
89 # v["t"] = 1.0
90 # assert v.norm.is_approx(2.0, 0.001)
91 #
92 # v["x"] = 1.0
93 # v["y"] = 2.0
94 # v["z"] = 3.0
95 # v["t"] = 0.0
96 # assert v.norm.is_approx(3.742, 0.001)
97 # ~~~
98 fun norm: Float do
99 var sum = 0.0
100 for v in self.values do sum += v.pow(2.0)
101 return sum.to_f.sqrt
102 end
103
104 redef fun to_s do
105 return "[{join(", ", ":")}]"
106 end
107 end
108
109 # A Document index based on VSM
110 #
111 # Using VSMIndex you can index documents associated with their vector.
112 # Documents can then be matched to query vectors.
113 class VSMIndex
114
115 # Kind of documents stored in this index
116 #
117 # Clients can redefine this type to specialize the index.
118 type DOC: Document
119
120 # Documents index
121 var documents = new HashSet[DOC]
122
123 # Count for all terms in all indexed documents
124 #
125 # Used to compute the `inverse_doc_frequency`.
126 var terms_doc_count = new Vector
127
128 # Inverse document frequency
129 #
130 # The inverse document frequency is a measure of how much information a term
131 # provides, that is, whether the term is common or rare across all documents.
132 var inverse_doc_frequency = new Vector
133
134 # Used to sort matches
135 #
136 # See `IndexMatch`.
137 var sorter = new IndexMatchSorter
138
139 # Match `query` vector to all index document vectors
140 #
141 # Returns an `IndexMatch` for each indexed document.
142 # Results are ordered by descending similarity.
143 fun match_vector(query: Vector): Array[IndexMatch[DOC]] do
144 var matches = new Array[IndexMatch[DOC]]
145 for doc in documents do
146 var sim = query.cosine_similarity(doc.tfidf)
147 if sim == 0.0 then continue
148 matches.add new IndexMatch[DOC](doc, sim)
149 end
150 sorter.sort(matches)
151 return matches
152 end
153
154 # Index a document
155 #
156 # With each new document, the `inverse_doc_frequency` must be updated.
157 # By default, the method `update_index` is called after each call to
158 # `index_document`.
159 #
160 # When processing batch documents, use `auto_update = false` to disable
161 # the auto update of the index.
162 fun index_document(doc: DOC, auto_update: nullable Bool) do
163 for term, count in doc.terms_count do
164 if not terms_doc_count.has_key(term) then
165 terms_doc_count[term] = 1.0
166 else
167 terms_doc_count[term] += 1.0
168 end
169 end
170 documents.add doc
171 if auto_update == null or auto_update then update_index
172 end
173
174 # Update the index
175 #
176 # Recompute the `inverse_doc_frequency` values.
177 # Must be called manually after indexing new document with the option
178 # `auto_update = false`.
179 fun update_index do
180 for doc in documents do
181 for term, ccount in doc.terms_count do
182 inverse_doc_frequency[term] = (documents.length.to_f / terms_doc_count[term]).log
183 end
184 end
185 for doc in documents do
186 for term, freq in doc.terms_frequency do
187 doc.tfidf[term] = freq * inverse_doc_frequency[term]
188 end
189 end
190 end
191 end
192
193 # A VSM index to store strings
194 class StringIndex
195 super VSMIndex
196
197 # Index a new Document from `title`, `uri` and string `string`.
198 #
199 # Return the Document created.
200 #
201 # See `index_document`.
202 fun index_string(title, uri, string: String, auto_update: nullable Bool): DOC do
203 var vector = parse_string(string)
204 var doc = new Document(title, uri, vector)
205 index_document(doc, auto_update)
206 return doc
207 end
208
209 # Match the `query` string against all indexed documents
210 #
211 # See `match_vector`.
212 fun match_string(query: String): Array[IndexMatch[DOC]] do
213 var vector = parse_string(query)
214 var doc = new Document("", "", vector)
215 return match_vector(doc.terms_frequency)
216 end
217
218 # Parse the `string` as a Vector
219 #
220 # Returns a vector containing the terms of `string`.
221 fun parse_string(string: String): Vector do
222 var reader = new StringReader(string)
223 var vector = new Vector
224 loop
225 var token = reader.read_word
226 if token == "" then break
227
228 if not vector.has_key(token) then
229 vector[token] = 1.0
230 else
231 vector[token] += 1.0
232 end
233 end
234 return vector
235 end
236 end
237
238 # A VSMIndex to index files
239 class FileIndex
240 super StringIndex
241
242 # Index a file from its `path`.
243 #
244 # Return the created document or null if `path` is not accepted by `accept_file`.
245 #
246 # See `index_document`.
247 fun index_file(path: String, auto_update: nullable Bool): nullable DOC do
248 if not accept_file(path) then return null
249 var vector = parse_file(path)
250 var doc = new Document(path, path, vector)
251 index_document(doc, auto_update)
252 return doc
253 end
254
255 # Index multiple files
256 #
257 # The recursive method `index_dir` will be called for each directory found
258 # in `paths`.
259 #
260 # See `index_file`
261 fun index_files(paths: Collection[String], auto_update: nullable Bool) do
262 for path in paths do
263 if path.to_path.is_dir then
264 index_dir(path, false)
265 else
266 index_file(path, false)
267 end
268 end
269 if auto_update != null and auto_update then update_index
270 end
271
272 # Index all files in `dir` recursively
273 #
274 # See `index_file`.
275 fun index_dir(dir: String, auto_update: nullable Bool) do
276 if not dir.to_path.is_dir then return
277 for file in dir.files do
278 var path = dir / file
279 if path.to_path.is_dir then
280 index_dir(path, false)
281 else
282 index_file(path, false)
283 end
284 end
285 if auto_update != null and auto_update then update_index
286 end
287
288 # Is `path` accepted depending on `whitelist_exts` and `blacklist_exts`?
289 fun accept_file(path: String): Bool do
290 var ext = path.file_extension
291 if ext != null then
292 ext = ext.to_lower
293 if blacklist_exts.has(ext) then return false
294 if whitelist_exts.not_empty and not whitelist_exts.has(ext) then return false
295 end
296 return whitelist_exts.is_empty
297 end
298
299 # Parse the `file` content as a Vector
300 #
301 # See `parse_string`.
302 fun parse_file(file: String): Vector do
303 return parse_string(file.to_path.read_all)
304 end
305
306 # File extensions white list
307 #
308 # If not empty, only files with these extensions will be indexed.
309 #
310 # If an extension is in both `whitelist_exts` and `blacklist_exts`, the
311 # blacklist will prevail and the file will be ignored.
312 var whitelist_exts = new Array[String] is writable
313
314 # File extensions black list
315 #
316 # Files with these extensions will not be indexed.
317 var blacklist_exts = new Array[String] is writable
318 end
319
320 # A Document to add in a VSMIndex
321 class Document
322
323 # Document title
324 var title: String
325
326 # Document URI
327 var uri: String
328
329 # Count of all terms found in the document
330 #
331 # Used to compute the document `terms_frequency`.
332 var terms_count: Vector
333
334 # Frequency of each term found in the document
335 #
336 # Used to match the document against the `VSMIndex::inverse_doc_frequency`.
337 var terms_frequency: Vector is lazy do
338 var all_terms = 0.0
339 for t, c in terms_count do all_terms += c
340
341 var vector = new Vector
342 for t, c in terms_count do
343 vector[t] = c / all_terms
344 end
345 return vector
346 end
347
348 # Term frequency–Inverse document frequency for each term
349 #
350 # A high weight in tf–idf is reached by a high term frequency
351 # (in the given document) and a low document frequency of the term in the
352 # whole collection of documents
353 var tfidf = new Vector
354
355 redef fun to_s do return "{title}"
356 end
357
358 # A match to a `request` in an `Index`
359 class IndexMatch[DOC: Document]
360 super Comparable
361
362 # Document matching the `request_vector`
363 var document: DOC
364
365 # Similarity between the `request` and the `doc`.
366 #
367 # Result is in the range 0.0 .. 1.1 where 0.0 means no similarity and 1.0
368 # means perfect similarity.
369 var similarity: Float
370
371 redef fun to_s do return "{document} ({similarity})"
372 end
373
374 # Sort matches by similarity
375 class IndexMatchSorter
376 super DefaultComparator
377
378 redef type COMPARED: IndexMatch[Document]
379
380 redef fun compare(a, b) do
381 return b.similarity <=> a.similarity
382 end
383 end