replace "is not" with !=

This commit is contained in:
Lukas Winkler 2021-03-18 21:09:11 +01:00
parent 61472e7cb3
commit 3c362ac520
No known key found for this signature in database
GPG Key ID: 54DE4D798D244853

View File

@ -142,7 +142,7 @@ def create_pretraining_model(nlp, pretrain_config):
# If the config referred to a Tok2VecListener, grab the original model instead
if type(tok2vec).__name__ == "Tok2VecListener":
original_tok2vec = (
tok2vec.upstream_name if tok2vec.upstream_name is not "*" else "tok2vec"
tok2vec.upstream_name if tok2vec.upstream_name != "*" else "tok2vec"
)
tok2vec = nlp.get_pipe(original_tok2vec).model
try: