This repository contains data and code used to produce the paper "Episodic memory: mental time travel or quantum 'memory wave' function?" by Jeremy R. Manning. The repository is organized as follows:
root
└── code : all code used in the paper
└── notebooks : jupyter notebooks for paper analyses
└── data : all data used in the paper
├── raw : raw data before processing
└── processed : all processed data
└── paper : all files to generate paper
└── figs : pdf copies of each figure
I also include a Dockerfile to reproduce our computational environment. Instruction for use are below (copied and modified from this project):
- Install Docker on your computer using the appropriate guide below:
- Launch Docker and adjust the preferences to allocate sufficient resources (e.g. > 4GB RAM)
- Build the docker image by opening a terminal in this repo folder and enter
docker build -t qwave .
- Use the image to create a new container for the workshop
- The command below will create a new container that will map your local copy of the repository to
/mnt
within the container, so that all the files in the repo are shared between your host OS and the container. The command will also share port9999
with your host computer so any jupyter notebooks launched from within the container will be accessible atlocalhost:9999
in your web browser docker run -it -p 9999:9999 --name qwave -v $PWD:/mnt qwave
- You should now see the
root@
prefix in your terminal, if so you've successfully created a container and are running a shell from inside!
- The command below will create a new container that will map your local copy of the repository to
- To launch any of the notebooks:
jupyter notebook --port=9999 --no-browser --ip=0.0.0.0 --allow-root
- You can always fire up the container by typing the following into a terminal
docker start --attach qwave
- When you see the
root@
prefix, letting you know you're inside the container
- Close a running container with
ctrl + d
from the same terminal you used to launch the container, ordocker stop qwave
from any other terminal