зеркало из https://github.com/mozilla/bugbug.git
Minor fixes to the component_nn model (#2344)
This commit is contained in:
Родитель
60f265399c
Коммит
7e58f6d1db
|
@ -326,7 +326,7 @@ class ComponentNNModel(ComponentModel):
|
|||
(
|
||||
"bug_reporter",
|
||||
make_pipeline(
|
||||
DictExtractor("bug_reporter"),
|
||||
DictExtractor("Bug reporter"),
|
||||
MissingOrdinalEncoder(),
|
||||
),
|
||||
"data",
|
||||
|
|
|
@ -22,6 +22,7 @@ except ImportError:
|
|||
class KerasTextToSequences(BaseEstimator, TransformerMixin):
|
||||
def __init__(self, maxlen, vocab_size):
|
||||
self.maxlen = maxlen
|
||||
self.vocab_size = vocab_size
|
||||
self.tokenizer = Tokenizer(num_words=vocab_size)
|
||||
|
||||
def fit(self, x, y=None):
|
||||
|
|
Загрузка…
Ссылка в новой задаче