These are the exercises from the lecture Information Retrieval FS 2021 by Ghislain Fourny. Since all the exercises are on a remote Jupyter server, I copied them here for convenience, that I can access them even after the lecture. I take no responsibility for any errors I may have introduced.
All credit goes to the TA team and Mr. Fourny for providing not only this code, but also a fantastic lecture. link
I assume that you have Anaconda installed on your computer if not go to anaconda.com. Then after that follow these steps. If you are using pip instead the installation process should be similar.
- Open your command window and set the current directory to the root folder containing all the files
- use
conda env create -f environment.yml
to create a new environment - type
conda activate ir
- then
jupyter notebook
to start your jupyter coding environment
Happy Coding!
You may have to add
import sys
sys.path.append("../../")
at the beginning of a notebook to import the stuff in the root.