iai-group / MovieBot

IAI MovieBot
https://iai-group.github.io/MovieBot/
MIT License
8 stars 10 forks source link

Improve dialogue modeling #51

Open kbalog opened 1 year ago

kbalog commented 1 year ago

Some particularly problematic parts:

For more robust dialogue modeling, the following solution was proposed. It considers not only the most likely user intent, but a ranked list of predicted user intents.

user_intents = predict_user_intent(user_utterance, conv_history)

for user_intent in user_intents:
  Check if user_intent can be executed  
    Do something
    Break
  Else
    Sorry, I don’t understand
IKostric commented 1 year ago

Depends on #107 and #65.