├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── BLU.py ├── CODE_OF_CONDUCT.md ├── CORE ├── RESPONSE_NET.py ├── STT.py ├── TTS.py ├── UTILS.py ├── WOLFRAM_query.py └── __pycache__ │ ├── RESPONSE_NET.cpython-37.pyc │ ├── STT.cpython-37.pyc │ ├── TTS.cpython-37.pyc │ ├── UTILS.cpython-37.pyc │ └── WOLFRAM_query.cpython-37.pyc ├── DATA-FOLDER ├── NEURAL_NET │ ├── Tokenizer.dat │ ├── create_text_category_NN_model.py │ ├── query_category_predictor.neuralNET │ │ ├── saved_model.pb │ │ └── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ └── training_text.txt ├── RESPONSE DATA │ ├── New Text Document.py │ ├── response.dat │ └── sigdevoice.wav └── Temporary Fetched Images │ └── tmp ├── DEMO ├── ss1.png └── ss2.png ├── IMAGES ├── AboutDir ├── BLU-DEMO.gif ├── BLU-LOGO.png ├── ss1.png └── ss2.png ├── README.md ├── UI ├── action_tab.ui └── config_ui.ui ├── _config.yml ├── config_setup.py ├── install_deps.sh └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.* linguist-language=Python 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /BLU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/BLU.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CORE/RESPONSE_NET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/RESPONSE_NET.py -------------------------------------------------------------------------------- /CORE/STT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/STT.py -------------------------------------------------------------------------------- /CORE/TTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/TTS.py -------------------------------------------------------------------------------- /CORE/UTILS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/UTILS.py -------------------------------------------------------------------------------- /CORE/WOLFRAM_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/WOLFRAM_query.py -------------------------------------------------------------------------------- /CORE/__pycache__/RESPONSE_NET.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/__pycache__/RESPONSE_NET.cpython-37.pyc -------------------------------------------------------------------------------- /CORE/__pycache__/STT.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/__pycache__/STT.cpython-37.pyc -------------------------------------------------------------------------------- /CORE/__pycache__/TTS.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/__pycache__/TTS.cpython-37.pyc -------------------------------------------------------------------------------- /CORE/__pycache__/UTILS.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/__pycache__/UTILS.cpython-37.pyc -------------------------------------------------------------------------------- /CORE/__pycache__/WOLFRAM_query.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/CORE/__pycache__/WOLFRAM_query.cpython-37.pyc -------------------------------------------------------------------------------- /DATA-FOLDER/NEURAL_NET/Tokenizer.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/NEURAL_NET/Tokenizer.dat -------------------------------------------------------------------------------- /DATA-FOLDER/NEURAL_NET/create_text_category_NN_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/NEURAL_NET/create_text_category_NN_model.py -------------------------------------------------------------------------------- /DATA-FOLDER/NEURAL_NET/query_category_predictor.neuralNET/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/NEURAL_NET/query_category_predictor.neuralNET/saved_model.pb -------------------------------------------------------------------------------- /DATA-FOLDER/NEURAL_NET/query_category_predictor.neuralNET/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/NEURAL_NET/query_category_predictor.neuralNET/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /DATA-FOLDER/NEURAL_NET/query_category_predictor.neuralNET/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/NEURAL_NET/query_category_predictor.neuralNET/variables/variables.index -------------------------------------------------------------------------------- /DATA-FOLDER/NEURAL_NET/training_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/NEURAL_NET/training_text.txt -------------------------------------------------------------------------------- /DATA-FOLDER/RESPONSE DATA/New Text Document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/RESPONSE DATA/New Text Document.py -------------------------------------------------------------------------------- /DATA-FOLDER/RESPONSE DATA/response.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/RESPONSE DATA/response.dat -------------------------------------------------------------------------------- /DATA-FOLDER/RESPONSE DATA/sigdevoice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DATA-FOLDER/RESPONSE DATA/sigdevoice.wav -------------------------------------------------------------------------------- /DATA-FOLDER/Temporary Fetched Images/tmp: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /DEMO/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DEMO/ss1.png -------------------------------------------------------------------------------- /DEMO/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/DEMO/ss2.png -------------------------------------------------------------------------------- /IMAGES/AboutDir: -------------------------------------------------------------------------------- 1 | # This Directory contains Screenshots of BLU. 2 | -------------------------------------------------------------------------------- /IMAGES/BLU-DEMO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/IMAGES/BLU-DEMO.gif -------------------------------------------------------------------------------- /IMAGES/BLU-LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/IMAGES/BLU-LOGO.png -------------------------------------------------------------------------------- /IMAGES/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/IMAGES/ss1.png -------------------------------------------------------------------------------- /IMAGES/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/IMAGES/ss2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/README.md -------------------------------------------------------------------------------- /UI/action_tab.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/UI/action_tab.ui -------------------------------------------------------------------------------- /UI/config_ui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/UI/config_ui.ui -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/_config.yml -------------------------------------------------------------------------------- /config_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/config_setup.py -------------------------------------------------------------------------------- /install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/install_deps.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilCodes/VirtualBLU/HEAD/requirements.txt --------------------------------------------------------------------------------