helper/main.py

29 lines
753 B
Python
Raw Normal View History

2022-01-13 20:23:35 +04:00
#!/usr/bin/env python3
import sys
2022-01-25 16:08:20 +04:00
from typing import List
2022-01-13 20:23:35 +04:00
2022-01-25 16:08:20 +04:00
from src.myontology import MyOntology
2022-01-24 17:04:54 +04:00
from src.nlp import NLP
2022-01-25 16:08:20 +04:00
from src.parse_tree.parse_tree import ParseTree
from src.speech import Speech
from src.syntax import Syntax
2022-01-13 20:23:35 +04:00
def _main(wav_file: str):
text: str = Speech().run_recognition(wav_file)
2022-01-14 16:58:50 +04:00
print(f'Text: {text}')
parse_tree: ParseTree = Syntax().get_parse_tree(text)
2022-01-14 17:43:40 +04:00
print(f'Parse tree:\n{parse_tree}')
2022-01-25 16:08:20 +04:00
nouns: List[str] = NLP().get_nouns(parse_tree)
print(f'Nouns:\n{" ".join(nouns)}')
2022-01-25 16:08:20 +04:00
result: str = MyOntology().get_event_description(nouns)
print(f'Test:\n{result}')
2022-01-13 20:23:35 +04:00
if __name__ == '__main__':
if len(sys.argv) < 2:
print(f'Usage: {sys.argv[0]} FILE')
exit(1)
_main(sys.argv[1])