Minor fixes to the component_nn model (#2344)

This commit is contained in:
Ayush Shridhar 2021-05-10 17:55:39 +05:30 коммит произвёл GitHub
Родитель 60f265399c
Коммит 7e58f6d1db
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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):