Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Inside the models package there is a __init__.py file which exposes the Model Classes to the server. Any new class needs to be added to this files, and example can be seen below with the Test class

Code Block
languagepy
themeFadeToGrey
from .latent_semantic_indexing import LatentSemanticIndexing
from .bert import Bert
from .sentiment_analysis_vader import SentimentAnalysisVader
from .sentiment_analysis_text_blob import SentimentAnalysisTextBlob
from .model_wrapper import ModelWrapper

from .test import Test

...