fixing the test
This commit is contained in:
parent
7d24ae772f
commit
aaadcecbd2
@ -134,7 +134,7 @@ class Janet:
|
|||||||
self.nlg = NLG(self.acts, self.arguments)
|
self.nlg = NLG(self.acts, self.arguments)
|
||||||
self.dp = DP(self.acts, self.arguments)
|
self.dp = DP(self.acts, self.arguments)
|
||||||
self.dst = DST(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):
|
def test(self, command):
|
||||||
out = self.nlu.test_nlu(command)
|
out = self.nlu.test_nlu(command)
|
||||||
@ -147,7 +147,7 @@ class Janet:
|
|||||||
return self.nlg.change_to_text(dest_act)
|
return self.nlg.change_to_text(dest_act)
|
||||||
|
|
||||||
janet = Janet()
|
janet = Janet()
|
||||||
janet.test('witam')
|
print(janet.test('chciałbym zarezerwować stolik na jutro na godzinę dziesiątą dla trzech osób'))
|
||||||
while(1):
|
while(1):
|
||||||
text = input("Wpisz tekst: ")
|
text = input("Wpisz tekst: ")
|
||||||
print(janet.test(text))
|
print(janet.test(text))
|
@ -1,6 +1,6 @@
|
|||||||
import jsgf
|
import jsgf
|
||||||
|
|
||||||
book_grammar = jsgf.parse_grammar_file('book.jsgf')
|
book_grammar = jsgf.parse_grammar_file('test_book.jsgf')
|
||||||
book_grammar
|
book_grammar
|
||||||
|
|
||||||
utterance = 'chciałbym zarezerwować stolik na jutro na godzinę dwunastą trzydzieści na cztery osoby'
|
utterance = 'chciałbym zarezerwować stolik na jutro na godzinę dwunastą trzydzieści na cztery osoby'
|
||||||
@ -33,4 +33,4 @@ def nlu(utterance):
|
|||||||
else:
|
else:
|
||||||
return {'act': 'null', 'slots': []}
|
return {'act': 'null', 'slots': []}
|
||||||
|
|
||||||
nlu('chciałbym zarezerwować stolik na jutro na godzinę dziesiątą dla trzech osób')
|
print(nlu('chciałbym zarezerwować stolik na jutro na godzinę dziesiątą dla trzech osób'))
|
Loading…
Reference in New Issue
Block a user