Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 479 Bytes

File metadata and controls

15 lines (9 loc) · 479 Bytes

Tokens-n-Embeddings

This is the official repository for the course on Tokens and Embeddings for NLP

Configuring the environment

This repository has been developed and tested with Python 3.9, we advise to install a virtual environment where all packages can be installed, the dependencies are provided in requirements.txt file.

python -m venv tkns-n-emb
.\tkns-n-emb\Scripts\activate   # This will activate the environment
pip install -r requirements.txt