Download Instructions -
- Download glove.6B.zip from https://nlp.stanford.edu/projects/glove/
- Add GloVe directory path for glove.6B.100d.txt in testBaseline.config file.
- Download training and testing data from the location shared by organizers.
- Update paths of train and test data in testBaseline.config file.
NOTE: Path should have '/' or '\'
- Install Conda in python 3.5 or above from https://conda.io/miniconda.html
- Run below command to create and activate Keras environment
conda create --name kerasEnv python=3.5
activate kerasEnv
- Install CNTK followed by Keras using below command
(kerasEnv) pip install cntk
(kerasEnv) pip install keras
(kerasEnv) set "KERAS_BACKEND=cntk"
(kerasEnv) python baseline.py -config /path/to/configFile
NOTE: All above Instructions are tested on WINDOWS machines.