Chapter 1 : Natural Language Programming Basics
Ch01 - Natural Language Processing Basics
#(Windows)> conda install -c conda-forge spacy
# (Linus or Mac)> sudo pip3 install -U spacy
OSError: [E050] Can't find model 'en_core'
!python3 -m spacy download en_core_web_sm
!python -m spacy download en
https://www.nltk.org/data.html
nltk.pos_tag => https://www.itread01.com/content/1547007495.html

NLTK was unable to find the gs file!
=> # Overview of how to install Ghostscript https://www.ghostscript.com/download/gsdnld.html
=> add path "C:\Program Files\gs\gs9.52\bin"
=> You need to close the orginal ipython and reopen ipython

#stanford-parser-4.0.0.zip
#https://nlp.stanford.edu/software/lex-parser.shtml#Download

NLTK was unable to find the java file!
=>import os
#java_path = "C:\Program Files\Java\jdk1.8.0_152\bin\java.exe"
java_path = "C:/Program Files/Java/jdk1.8.0_152/bin/java.exe"
os.environ['JAVAHOME'] = java_path

https://www.nltk.org/book/ch02.html
https://nlp.stanford.edu/software/lex-parser.shtml
nltk.download('averaged_perceptron_tagger')



Ch02 Python for Natural Language Progressing


Ch03 Processing and Understandign Text
Text Wrangling
Project Gutenberg EBook The Bible, King James, Book 1: Genesis
https://stackoverflow.com/questions/63322706/cant-find-model-en-core
https://www.youtube.com/watch?v=wDZm-6ikg74 (adminstrator> python -m spacy download en_core_web_md)(python -m spacy download en)
# Stanford Parser https://nlp.stanford.edu/software/lex-parser.shtml
# Installation and Configuration of Ghostscript https://wiki.scribus.net/canvas/Installation_and_Configuration_of_Ghostscript



Ch04 - Feature Engineering for Text Representation


Ch05 - Text Classification


Ch06 - Text Summarization and Topic Models

Gutenberg project(Free ebooks)
Gutenberg project(Frequently Viewed or Downloaded)

Ch07 - Text Similarity and Clustering

TMDB 5,000 movies

Ch08 - Semantic Analysis

WordNet
WordNet Search - 3.1

movie_reviews.csv.bz2

Ch09 - Sentiment Analysis

vader_lexicon.txt

Ch10 - The Promise of Deep Learning