Rasa NLU is deployed on ubuntu server using docker

I deployed rasa till part where i can give the intent for the sentence. I am using the following pipeline:

  • name: “nlp_spacy” # loads the spacy language model
  • name: “tokenizer_spacy” # splits the sentence into tokens
  • name: “ner_crf” # uses the pretrained spacy NER model
  • name: “intent_featurizer_spacy” # transform the sentence into a vector representation
  • name: “intent_classifier_sklearn” # uses the vector representation to classify using SVM
  • name: “ner_synonyms”
  • name: “CountVectorsFeaturizer”
  • name: “DIETClassifier” intent_tokenization_flag: true intent_split_symbol: “+”

my ubuntu server is hanging up every day with out a reason.