we use rasa 2.8.26 in our project. we trained a model by below training data:
nlu:
- intent: 9489fc71-bb03-4d65-9e14-e8bc8200d317
examples: |
- Wireless connection drops every 5 minutes
- No connection to the internet with my PDA
- Wireless is not very stable
- Wireless connection unavailable
- Wireless connection isn't working
- No wireless connection
- Wireless connects with message "limited or no connectivity"
- intent: 32bc13ef-b92e-42ac-a01a-4736468d3d76
examples: |
- I have problem using AWS service
- AWS service issue
- We have some issues for AWS
but when we try to parse, and type any text , for example : {“text”:“abcdefg”}
you could see " abcdefg" never appear in training sample data above.
but rasa gives a very high confiendence return value , for example:
{
"text": "abcdefg",
"intent":{
"id": 8652920554070762147,
"name": "32bc13ef-b92e-42ac-a01a-4736468d3d76",
"confidence": 0.9999998807907104
},
"entities":[],
"intent_ranking":[
{
"id": 8652920554070762147,
"name": "32bc13ef-b92e-42ac-a01a-4736468d3d76",
"confidence": 0.9999998807907104
},
{
"id": 1744349216196580737,
"name": "9489fc71-bb03-4d65-9e14-e8bc8200d317",
"confidence": 1.4354384347825544e-7
}
],
"response_selector":{
"all_retrieval_intents":[],
"default":{
"response":{"id": null, "responses": null, "response_templates": null, "confidence": 0.0, "intent_response_key": null,…},
"ranking":[]
}
},
"project": "555500001-en",
"model": "555500001-en.tar.gz"
}
we dont think this is make any sense.
if anyone could help us on this situation ? thanks in advanced.
here is our config, we copied from offical document.
recipe: default.v1
language: en
pipeline:
- name: WhitespaceTokenizer
- name: RegexFeaturizer
- name: LexicalSyntacticFeaturizer
- name: CountVectorsFeaturizer
- name: CountVectorsFeaturizer
analyzer: char_wb
min_ngram: 1
max_ngram: 4
- name: DIETClassifier
epochs: 500
constrain_similarities: true
- name: EntitySynonymMapper
- name: ResponseSelector
epochs: 500
constrain_similarities: true
- name: FallbackClassifier
threshold: 0.3
ambiguity_threshold: 0.1