forked from s151636/Generic_DialogSystem
fix and start interaction
This commit is contained in:
parent
a1b0d7a8eb
commit
031fdff757
10
system3.py
10
system3.py
@ -102,7 +102,7 @@ class NLU:
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def extract_acts_and_slots(text):
|
def extract_acts_and_slots(self, text):
|
||||||
doc = nlp(text)
|
doc = nlp(text)
|
||||||
acts = []
|
acts = []
|
||||||
|
|
||||||
@ -131,14 +131,14 @@ class NLU:
|
|||||||
|
|
||||||
return acts
|
return acts
|
||||||
|
|
||||||
def find_product_type(product):
|
def find_product_type(self, product):
|
||||||
for product_type, products in product_type_rules.items():
|
for product_type, products in product_type_rules.items():
|
||||||
if product in products:
|
if product in products:
|
||||||
return product_type, product
|
return product_type, product
|
||||||
|
|
||||||
return None, None
|
return None, None
|
||||||
|
|
||||||
text = "Cześć, chciałbym kupić mleko, sok oraz chleb"
|
text = "Cześć, chciałbym kupić mleko, płatki oraz owoce"
|
||||||
nlu = NLU()
|
nlu = NLU()
|
||||||
acts = nlu.extract_acts_and_slots(text)
|
acts = nlu.extract_acts_and_slots(text)
|
||||||
for act in acts:
|
for act in acts:
|
||||||
@ -149,7 +149,7 @@ for act in acts:
|
|||||||
|
|
||||||
dst = DialogStateTracker()
|
dst = DialogStateTracker()
|
||||||
|
|
||||||
text = "Cześć, chciałbym kupić mleko, sok oraz chleb"
|
text = "Cześć, chciałbym kupić mleko, płatki oraz owoce"
|
||||||
acts = nlu.extract_acts_and_slots(text)
|
acts = nlu.extract_acts_and_slots(text)
|
||||||
|
|
||||||
|
|
||||||
@ -160,3 +160,5 @@ dialog_state = dst.get_state()
|
|||||||
|
|
||||||
print("Dialog State:")
|
print("Dialog State:")
|
||||||
print(dialog_state)
|
print(dialog_state)
|
||||||
|
dm = DialogManager(nlu ,dst)
|
||||||
|
dm.start_dialog()
|
Loading…
Reference in New Issue
Block a user