This is the supplemental material to the paper "DRL for IoT Interoperability" found on: https://www.researchgate.net/publication/341641724_Deep_Reinforcement_Learning_for_IoT_Interoperability
Follow these steps to setup the repository:
- Create a new virtual env using python 3.6
- Install requirements:
pip install -r requirements.txt
- Install NLTK data:
python -c "import nltk; nltk.download('punkt')"
- Download GloVe pre-trained word vectors and extract in weights directory:
Linux:
wget -c http://nlp.stanford.edu/data/wordvecs/glove.6B.zip -P weights
unzip weights/glove.6B.zip -d weights
Step by Step training example can be found in Training.ipynb notebook.