Struct linfa_preprocessing::tf_idf_vectorization::FittedTfIdfVectorizer[][src]

pub struct FittedTfIdfVectorizer { /* fields omitted */ }
Expand description

Counts the occurrences of each vocabulary entry, learned during fitting, in a sequence of texts and scales them by the inverse document document frequency defined by the method. Each vocabulary entry is mapped to an integer value that is used to index the count in the result.

Implementations

Number of vocabulary entries learned during fitting

Constains all vocabulary entries, in the same order used by the transform method.

Returns the inverse document frequency method used in the tansform method

Given a sequence of n documents, produces an array of size (n, vocabulary_entries) where column j of row i is the number of occurrences of vocabulary entry j in the text of index i, scaled by the inverse document frequency. Vocabulary entry j is the string at the j-th position in the vocabulary.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.