| 
    speech_recognition
    
   | 
 
Variables | |
| dummy_model_path = os.path.dirname(os.path.realpath(__file__)) | |
| grammar_file = sys.argv[1] | |
| k = Grammar(dummy_model_path, grammar_file, target) | |
| s1 = k.parse(test_sentence_1) | |
| s2 = k.parse(test_sentence_2) | |
| subprocess_exit_status | |
| target = sys.argv[2] | |
| string | test_sentence_1 = "bring me the coke" | 
| string | test_sentence_2 = "bring the coke to the kitchen" | 
| grammar.dummy_model_path = os.path.dirname(os.path.realpath(__file__)) | 
Definition at line 22 of file grammar.py.
| string grammar.grammar_file = sys.argv[1] | 
Definition at line 16 of file grammar.py.
| grammar.k = Grammar(dummy_model_path, grammar_file, target) | 
Definition at line 24 of file grammar.py.
| grammar.s1 = k.parse(test_sentence_1) | 
Definition at line 36 of file grammar.py.
| grammar.s2 = k.parse(test_sentence_2) | 
Definition at line 37 of file grammar.py.
| grammar.subprocess_exit_status | 
Definition at line 27 of file grammar.py.
| string grammar.target = sys.argv[2] | 
Definition at line 17 of file grammar.py.
| string grammar.test_sentence_1 = "bring me the coke" | 
Definition at line 33 of file grammar.py.
| string grammar.test_sentence_2 = "bring the coke to the kitchen" | 
Definition at line 34 of file grammar.py.
 1.8.17