Skip to content

Commit a9e9828

Browse files
pazzo83storopoli
andauthored
Update src/tfidf_transformer.jl - spacing
Co-authored-by: Jose Storopoli <[email protected]>
1 parent 38a33ed commit a9e9828

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tfidf_transformer.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ containing every term in the collection exactly once, which prevents
3535
zero divisions: `idf(t) = log [ (1 + n) / (1 + df(t)) ] + 1`.
3636
3737
The parameters `max_doc_freq` and `min_doc_freq` restrict the vocabulary
38-
that the transformer will consider. `max_doc_freq` indicates that terms in only
38+
that the transformer will consider. `max_doc_freq` indicates that terms in only
3939
up to the specified percentage of documents will be considered. For example, if
4040
`max_doc_freq` is set to 0.9, terms that are in more than 90% of documents
4141
will be removed. Similarly, the `min_doc_freq` parameter restricts terms in the

0 commit comments

Comments
 (0)