A custom OpenAI gym environment simulating patients behaviour.
Install Anaconda, download our environment.yml and install using the following command (from Anaconda documentation):
> conda env create -f environment.ymlThe environment name is rl. You can activate by executing the following command:
(Windows)
> activate rl
(Linux and macOS)
> source activate rl
You can run in docker container. This might first require installation of docker:
(Linux)
> curl https://get.docker.com | sh \
&& sudo systemctl --now enable docker
Than building an image
sudo docker build -t exp .
To explore experimental notebooks run
sudo docker run -p 8899:8899 exp:latest jupyter notebook --port=8899 --allow-root --no-browser --ip=0.0.0.0