@@ -608,7 +608,6 @@ def __init__(
608608 min_term_freq : int | None = None ,
609609 max_query_terms : int | None = None ,
610610 min_doc_freq : int | None = None ,
611- max_term_freq : int | None = None ,
612611 max_doc_freq : int | None = None ,
613612 min_word_length : int | None = None ,
614613 max_word_length : int | None = None ,
@@ -623,7 +622,6 @@ def __init__(
623622 self .min_term_freq = min_term_freq
624623 self .max_query_terms = max_query_terms
625624 self .min_doc_freq = min_doc_freq
626- self .max_term_freq = max_term_freq
627625 self .max_doc_freq = max_doc_freq
628626 self .min_word_length = min_word_length
629627 self .max_word_length = max_word_length
@@ -706,7 +704,6 @@ def _validate_numeric_params(self) -> None:
706704 "min_term_freq" : self .min_term_freq ,
707705 "max_query_terms" : self .max_query_terms ,
708706 "min_doc_freq" : self .min_doc_freq ,
709- "max_term_freq" : self .max_term_freq ,
710707 "max_doc_freq" : self .max_doc_freq ,
711708 "min_word_length" : self .min_word_length ,
712709 "max_word_length" : self .max_word_length ,
@@ -740,7 +737,6 @@ def _render_more_like_this_call(
740737 "min_term_frequency" : term .min_term_freq ,
741738 "max_query_terms" : term .max_query_terms ,
742739 "min_doc_frequency" : term .min_doc_freq ,
743- "max_term_frequency" : term .max_term_freq ,
744740 "max_doc_frequency" : term .max_doc_freq ,
745741 "min_word_length" : term .min_word_length ,
746742 "max_word_length" : term .max_word_length ,
0 commit comments