Skip to content
This repository has been archived by the owner on Dec 22, 2019. It is now read-only.

Tutorial on Natural Language Processing with Python Presented at ODSC East on May 3, 2017

Notifications You must be signed in to change notification settings

mlgill/ODSC_East_2017_PythonNLP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning from Text: Introduction to Natural Language Processing with Python

ODSC East
May 3, 2017

Michelle L. Gill, Ph.D.
Senior Data Scientist
Metis


Software Installation Instructions

Tested on Mac OS X 10.12 and Ubuntu 14.04

  1. Download the Anaconda distribution for Python 3.6 (Python 2.7 will not work) from this link and configure your environment as described at the end of the installation process. This will install the following necessary libraries: Jupyter notebook, Numpy, Scipy, Pandas, Scikit-Learn, Matplotlib, and Seaborn.

  2. With the above Anaconda environment activated, install the following additional libraries using the commands listed:

    conda install -y -c anaconda gensim nltk
    conda install -y -c conda-forge textblob
    pip install pyldavis

    Packages can also installed with pip the conda installation does not work.

  3. Download the corpora associated with nltk using the following command from a terminal:

    python -m nltk.downloader -d $HOME/nltk_data all

    This will create a folder "nltk_data" in your home directory that is large (~ 4 GB) when expanded.

  4. Download Google's pre-trained word2vec files from this link. Note that this file is also somewhat large (~ 1.5 GB). This file can be downloaded to a preferred location and left there.

  5. Clone this GitHub repo. Note that the materials associated with this workshop are being updated, so this step should be performed (or updated) the evening before the workshop.

About

Tutorial on Natural Language Processing with Python Presented at ODSC East on May 3, 2017

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published