A brief description of every exported name in every library of the nltk namespace of r7rs-libs.
(nltk dfsa)
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
(nltk lang-en)
- Definition
-
stopwords-list-en
- Description
-
List of English stopwords.
- Definition
-
stopwords-hash-en
- Description
-
Hash-table representation of English stopwords.
(nltk lang-hr)
- Definition
-
stopwords-list-hr
- Description
-
List of Croatian stopwords.
- Definition
-
stopwords-hash-hr
- Description
-
Hash-table representation of Croatian stopwords.
(nltk n-grams)
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
(nltk sequence)
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
- Definition
-
()
- Description
-
TODO
(nltk vectorspace)
- Definition
-
(make-vs)
- Description
-
Returns a newly created vector space instance.
- Definition
-
(vs? obj)
- Description
-
-
obj
- any value
-
Returns #t
if obj
is an instance of a vector space, or #f
otherwise.
- Definition
-
(vs-columnlabels vs)
- Description
-
-
vs
- a vector space instance
-
Returns the column labels of given vector space.
- Definition
-
(vs-columnlabels-set! vs obj)
- Description
-
-
vs
- a vector space instance -
obj
- a set of column labels
-
Updates the column labels in given vector space to the value of obj
.
- Definition
-
(vs-rowlabels vs)
- Description
-
-
vs
- a vector space instance
-
Returns the row labels of given vector space.
- Definition
-
(vs-rowlabels-set! vs obj)
- Description
-
-
vs
- a vector space instance -
obj
- a set of row labels
-
Updates the row labels in given vector space to the value of obj
.
- Definition
-
(vs-cells vs)
- Description
-
-
vs
- a vector space instance
-
Returns the cells of given vector space.
- Definition
-
(vs-cells-set! vs obj)
- Description
-
-
vs
- a vector space instance -
obj
- a set of cell values
-
Updates the cells in given vector space to the value of obj
.
- Definition
-
(relativize-vectorspace vs)
- Description
-
-
vs
- a vector space instance
-
Divides each element in the vector space by the total value.
- Definition
-
(euclidean-distance s1 s2)
- Description
-
-
s1
- a sequence of numbers -
s2
- a second sequence of numbers
-
Returns the Euclidean distance between the two sequences.
- Definition
-
(dot-product s1 s2)
- Description
-
-
s1
- a sequence of numbers -
s2
- a second sequence of numbers
-
Returns the dot product of the two sequences.
- Definition
-
(vector-magnitude s)
- Description
-
-
s
- a sequence of numbers
-
Returns the vector magnitude of given sequence.
- Definition
-
(cosine-similarity s1 s2)
- Description
-
-
s1
- a sequence of numbers -
s2
- a second sequence of numbers
-
Returns the cosine similarity between the two sequences.
- Definition
-
(vectorspace→centroid vs)
- Description
-
-
vs
- a vector space instance
-
Returns the centroid of given vector space.
- Definition
-
(ngrams→vectorspace ngram-models)
- Description
-
-
ngram-models
- list of ngram models, each model being a hash-table of ngrams→counts
-
Returns a list of vectors, each vector showing the count of ngrams in that ngram-model.