Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 576 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 576 Bytes

nlp-course

Natural Language Processing (NLP) course materials

See also Machine Learning course:

Environment Configuration

  1. Download requirements.txt
  2. Create environment:
export env_name="bdt-nlp-course"
conda create -n $env_name python=3.10
conda activate $env_name
conda install --file requirements.txt

See available conda environments with the help of:

conda info --envs

If you need to remove environment use the following command:

conda remove --name $env_name --all