diff --git a/Makiety.py b/Makiety.py index 77491f2..c7ad1ae 100644 --- a/Makiety.py +++ b/Makiety.py @@ -134,7 +134,7 @@ class Janet: self.nlg = NLG(self.acts, self.arguments) self.dp = DP(self.acts, self.arguments) self.dst = DST(self.acts, self.arguments) - self.nlu = NLU(self.acts, self.arguments, jsgf.parse_grammar_file('book.jsgf')) + self.nlu = NLU(self.acts, self.arguments, jsgf.parse_grammar_file('test_book.jsgf')) def test(self, command): out = self.nlu.test_nlu(command) @@ -147,7 +147,7 @@ class Janet: return self.nlg.change_to_text(dest_act) janet = Janet() -janet.test('witam') +print(janet.test('chciałbym zarezerwować stolik na jutro na godzinę dziesiątą dla trzech osób')) while(1): text = input("Wpisz tekst: ") print(janet.test(text)) \ No newline at end of file diff --git a/Test_nlu.py b/Test_nlu.py index 3a013f7..15b1bc2 100644 --- a/Test_nlu.py +++ b/Test_nlu.py @@ -1,6 +1,6 @@ import jsgf -book_grammar = jsgf.parse_grammar_file('book.jsgf') +book_grammar = jsgf.parse_grammar_file('test_book.jsgf') book_grammar utterance = 'chciałbym zarezerwować stolik na jutro na godzinę dwunastą trzydzieści na cztery osoby' @@ -33,4 +33,4 @@ def nlu(utterance): else: return {'act': 'null', 'slots': []} -nlu('chciałbym zarezerwować stolik na jutro na godzinę dziesiątą dla trzech osób') \ No newline at end of file +print(nlu('chciałbym zarezerwować stolik na jutro na godzinę dziesiątą dla trzech osób')) \ No newline at end of file