File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -825,6 +825,10 @@ class CountVectorizer(BaseEstimator, VectorizerMixin):
825
825
vocabulary_ : dict
826
826
A mapping of terms to feature indices.
827
827
828
+ fixed_vocabulary_: boolean
829
+ True if a fixed vocabulary of term to indices mapping
830
+ is provided by the user
831
+
828
832
stop_words_ : set
829
833
Terms that were ignored because they either:
830
834
@@ -1497,6 +1501,10 @@ class TfidfVectorizer(CountVectorizer):
1497
1501
vocabulary_ : dict
1498
1502
A mapping of terms to feature indices.
1499
1503
1504
+ fixed_vocabulary_: boolean
1505
+ True if a fixed vocabulary of term to indices mapping
1506
+ is provided by the user
1507
+
1500
1508
idf_ : array, shape (n_features)
1501
1509
The inverse document frequency (IDF) vector; only defined
1502
1510
if ``use_idf`` is True.
You can’t perform that action at this time.
0 commit comments