Master Thesis project on Question Answering
- Download PuTTY
- Open PuTTY and type 'thinlinc.compute.dtu.dk' in hostname.
- Open connection and type in DTU credentials
- Once connected open an ssh tunnel to one of the DTU GPU clusters. Names can be found under Cluster Machines - Hostname. Example: 'ssh themis'.
- Enter DTU password again. You are now connected to the DTU cluster.
- Activate conda development environment (see step 2 under First time setup (Break))
- First we need to setup a new conda environment for development. This can be done using the command 'conda create --name $name_of_choosing python=3.6.8'. The Break code is developed on python version 3.6.8.
- Activate environment with 'conda activate $name_of_choosing'
- Clone Break code and download the Break dataset. It might be a good idea to create a seperat project folder for this.
- Navigate to ./Break/qdmr_parsing/ and install the required packages with 'pip install -r requirements.txt'. This might take a couple of minutes.
- Next download spacy 'python -m spacy download en_core_web_sm'.
Follow instructions on QMDR Parsing Github page.