Skip to content

Commit 82bb335

Browse files
committed
DOC Fix GapEncoder ngram_range description
1 parent 10bfa91 commit 82bb335

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

skrub/_gap_encoder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ class GapEncoder(TransformerMixin, SingleColumnTransformer):
8787
n-grams counts.
8888
max_iter : int, default=5
8989
Maximum number of iterations on the input data.
90-
ngram_range : int 2-tuple, default=(2, 4)
91-
The lower and upper boundaries of the range of n-values for different
90+
ngram_range : int 2-tuple (min_n, max_n), default=(2, 4)
91+
The lower and upper boundaries of the range of n-values for different
9292
n-grams used in the string similarity. All values of `n` such
9393
that ``min_n <= n <= max_n`` will be used.
9494
analyzer : {'word', 'char', 'char_wb'}, default='char'

0 commit comments

Comments
 (0)