nlp-course
Natural Language Processing (NLP) course materials
See also Machine Learning course:
Environment Configuration
- Download requirements.txt
- Create environment:
export env_name="bdt-nlp-course"
conda create -n $env_name python=3.7
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