docker コンテナーで rasa-nlu を実行しています。私のデータでそれをトレーニングしようとしてから、http サーバーへのリクエストを実行すると、常に次のようになります。
"intent": { "confidence": 1.0, "name": "None" }
次のように構成ファイルを実行しています。
{
"name": null,
"pipeline": "mitie",
"language": "en",
"num_threads": 4,
"max_training_processes": 1,
"path": "./models",
"response_log": "logs",
"config": "config.json",
"log_level": "INFO",
"port": 5000,
"data": "./data/test/demo-rasa.json",
"emulate": null,
"log_file": null,
"mitie_file": "./data/total_word_feature_extractor.dat",
"spacy_model_name": null,
"server_model_dirs": null,
"token": null,
"cors_origins": [],
"aws_endpoint_url": null,
"max_number_of_ngrams": 7,
"duckling_dimensions": null,
"entity_crf_BILOU_flag": true,
"entity_crf_features": [
["low", "title", "upper", "pos", "pos2"],
["bias", "low", "word3", "word2", "upper", "title", "digit", "pos", "pos2", "p
attern"],
["low", "title", "upper", "pos", "pos2"]]
}
その行動の理由は何ですか?
models フォルダーには、別のネストされたフォルダー内にトレーニング済みのモデルが含まれていますが、問題ありませんか?
ありがとう。