Boolean retrieval and vector space model scripts (indexing and searching)
git clone https://github.com/jia1/cs3245-boolean-retrieval.git
cd cs3245-boolean-retrieval
python3 -m venv .
. bin/activate
pip3 install -r requirements.txt
python3 download.py
. index.sh
. search.sh
If you are using Windows, replace . bin/activate
with Scripts\activate.bat
.
To deactivate the virtual environment:
deactivate
If you are using Windows, enter Scripts\deactivate.bat
instead.