Error training nlu with mitie pipeline

I’m trying to run nlu with the following pipeline.

language: “zh”

pipeline:

  • name: “nlp_mitie” model: “data/total_word_feature_extractor_zh.dat”
  • name: “tokenizer_jieba” default_dict: “./default_dict.big”
  • name: “ner_mitie”
  • name: “ner_synonyms”
  • name: “intent_entity_featurizer_regex”
  • name: “intent_featurizer_mitie”
  • name: “intent_classifier_sklearn”

I try to run the training using: python -m rasa_nlu.train -c sample_configs/config_jieba_mitie_sklearn.yml --data data/examples/rasa/ --path models_zh

I’ve installed mitie following all the guidelines on mietie github.

But still I keep getting below error msgs: `Traceback (most recent call last): File “D:\python\py35\lib\runpy.py”, line 193, in _run_module_as_main “main”, mod_spec)

File “D:\python\py35\lib\runpy.py”, line 85, in _run_code exec(code, run_globals)

File “D:\python\project\Rasa_NLU_Chi\rasa_nlu\train.py”, line 174, in num_threads=cmdline_args.num_threads)

File “D:\python\project\Rasa_NLU_Chi\rasa_nlu\train.py”, line 143, in do_train trainer = Trainer(cfg, component_builder)

File “D:\python\project\Rasa_NLU_Chi\rasa_nlu\model.py”, line 146, in init components.validate_requirements(cfg.component_names)

File “D:\python\project\Rasa_NLU_Chi\rasa_nlu\components.py”, line 63, in validate_requirements “Please install {}”.format(", ".join(failed_imports)))

Exception: Not all required packages are installed. To use this pipeline, you need to install the missing dependencies. Please install mitie`

Can anybody help on this issue? Many thanks.

problem solved. needs to run cmake in x64 mode.