2023-05-25 12:14:33 +02:00
|
|
|
import jsgf
|
|
|
|
from pathlib import Path
|
|
|
|
import os
|
|
|
|
|
|
|
|
__location__ = Path().resolve()
|
|
|
|
|
|
|
|
book_grammar = jsgf.parse_grammar_file(os.path.join(__location__, "grammar1.jsgf"))
|
|
|
|
book_grammar
|
|
|
|
|
|
|
|
|
|
|
|
def get_dialog_act(rule):
|
|
|
|
slots = []
|
|
|
|
get_slots(rule.expansion, slots)
|
|
|
|
return {'act': rule.grammar.name, 'slots': slots}
|
|
|
|
|
|
|
|
def get_slots(expansion, slots):
|
|
|
|
if expansion.tag != '':
|
|
|
|
slots.append((expansion.tag, expansion.current_match))
|
|
|
|
return
|
|
|
|
|
|
|
|
for child in expansion.children:
|
|
|
|
get_slots(child, slots)
|
|
|
|
|
|
|
|
if not expansion.children and isinstance(expansion, jsgf.NamedRuleRef):
|
|
|
|
get_slots(expansion.referenced_rule.expansion, slots)
|
|
|
|
|
|
|
|
def nlu(utterance):
|
|
|
|
matched = book_grammar.find_matching_rules(utterance)
|
|
|
|
|
|
|
|
if matched:
|
|
|
|
return get_dialog_act(matched[0])
|
|
|
|
else:
|
|
|
|
return {'act': 'null', 'slots': []}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
utterance = 'dzień dobry chcę kupić mięso wołowe'
|
|
|
|
matched = book_grammar.find_matching_rules(utterance)
|
|
|
|
matched
|
|
|
|
|
|
|
|
nlu('dzień dobry chcę kupić mięso wołowe')
|
|
|
|
|
2023-05-03 21:42:35 +02:00
|
|
|
get_dialog_act(matched[0])
|