You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, whenever users are going to run the pipeline, even if they do not need a specific model in a specific layer, they need to install the libraries before running the pipeline, otherwise, they will get an error from the interpreter that does not recognize some libraries. For example, although users only want the LDA.mallet model in Topic Modeling Layer and they have not entered the gensim model as a choice in the running command, they need to install both gensim and LDA.mallet.
For handling this, we need to do two things:
As a comment, remind them that install the libraries of requirements.txt and environment.yml which they need to use, not all of the libraries which are there.
Relocate the importing codes to the specific methods which are called by parameters to prevent importing the libraries which are not necessary.
The text was updated successfully, but these errors were encountered:
farinamhz
changed the title
Fixed the need to install libraries when they are not given in the input
Fixing the need to install libraries when they are not given in the input
Oct 7, 2022
Now, whenever users are going to run the pipeline, even if they do not need a specific model in a specific layer, they need to install the libraries before running the pipeline, otherwise, they will get an error from the interpreter that does not recognize some libraries. For example, although users only want the LDA.mallet model in Topic Modeling Layer and they have not entered the gensim model as a choice in the running command, they need to install both gensim and LDA.mallet.
For handling this, we need to do two things:
The text was updated successfully, but these errors were encountered: