This notebook is focused on vector embeddings.
Create the environment:
> cd embeddings > python -m venv .venv > .venv\Scripts\activate.bat Install the required packages using pip:
(.env) pip install -r requirements.txt NOTE: By default PyTorch packages are installed for CPU. To make use of CUDA, please refer to Install Pytorch and update requirements.txt accordingly.
Go to the environment:
> cd embeddings > python -m venv .venv > .venv\Scripts\activate.bat Uninstall the required packages using pip:
pip uninstall -r requirements.txt -y