├── .gitignore ├── LICENSE ├── README.md ├── collect_data.py ├── data ├── keyword │ └── .gitignore ├── not-keyword │ └── .gitignore └── test │ ├── keyword │ └── .gitignore │ └── not-keyword │ └── .gitignore ├── model └── .gitignore ├── mycroft_keyword.py ├── requirements.txt ├── test_keyword.py └── train_keyword.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | src/ 3 | env/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-precise-python-experiments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-precise-python-experiments/HEAD/README.md -------------------------------------------------------------------------------- /collect_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-precise-python-experiments/HEAD/collect_data.py -------------------------------------------------------------------------------- /data/keyword/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /data/not-keyword/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /data/test/keyword/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /data/test/not-keyword/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /model/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /mycroft_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-precise-python-experiments/HEAD/mycroft_keyword.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-precise-python-experiments/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-precise-python-experiments/HEAD/test_keyword.py -------------------------------------------------------------------------------- /train_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/mycroft-precise-python-experiments/HEAD/train_keyword.py --------------------------------------------------------------------------------