diff --git a/README.md b/README.md index 6bbab03..e30adf7 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,10 @@ To change the audio source, simply delete the ```config.ini``` that was generate It will re-do the setup and allow you to select a new device. ### To-Do +- [ ] Get more training data for WillieTimer + - [ ] Use the ```Phrases.txt``` file as the random seed? + - [ ] Figure out a way to give the model a suggestion +- [ ] Add command line args with argparse - [ ] Add method for user to change audio device without redoing entire config file - [ ] Interact with soapysdr directly from the bot - [ ] Allow chat interaction with soapysdr diff --git a/modules/WillieTimer/.gitignore b/modules/WillieTimer/.gitignore new file mode 100644 index 0000000..0463bf6 --- /dev/null +++ b/modules/WillieTimer/.gitignore @@ -0,0 +1,3 @@ + *.hdf5 + *.json + *.txt diff --git a/requirements.txt b/requirements.txt index 1c9f3ee..72f7344 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,8 @@ discord~=1.7.3 -sounddevice~=0.4.3 \ No newline at end of file +sounddevice~=0.4.3 + + +//For WillieTimer +keras~=2.7.0 +nltk~=3.6.5 +tensorflow~=2.7.0 \ No newline at end of file