Coverage report: /home/ellis/comp/core/lib/nlp/pkg.lisp
Kind | Covered | All | % |
expression | 0 | 10 | 0.0 |
branch | 0 | 0 | nil |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
9
(defpackage :nlp/stem/porter
13
(defpackage :nlp/tokenize
14
(:use :cl :std :cl-ppcre :nlp/data :nlp/stem/porter)
15
(:export :word-tokenize :sentence-tokenize))
18
(:use :cl :std :nlp/data :nlp/tokenize)
28
:inverse-document-frequency
29
:tf-idf-vectorize-documents
35
:tf-vectorize-documents
38
(defpackage :nlp/textrank
39
(:use :cl :std :nlp/doc :nlp/tokenize)
41
:summarize-text :edges :document-vertex))
43
(defpackage :nlp/dbscan
44
(:use :cl :std :nlp/doc :nlp/textrank :nlp/tokenize)
46
:document-cluster :clusters :get-cluster :distance
47
:generate-document-distance-vectors
48
:cluster :neighbors :clusters
51
(defpackage :nlp/section
52
(:use :cl :std :nlp/doc :nlp/dbscan :nlp/tokenize)
53
(:export :extract-sections))
55
(defpackage :nlp/string
62
#:norm-damerau-levenshtein
68
(defpackage :nlp/fuzzy
70
(:export :fuzzy-match))