Data Science Course Syllabus
Data Science Course Syllabus
COURSE SYLLABUS
Module 1 : Fundamentals of Programming
Chapter 1 : Real world problem: Predict rating given product reviews on Amazon.
18.1 Dataset overview: Amazon Fine Food reviews(EDA)
18.2 Data Cleaning: Deduplication.
18.3 Why convert text to a vector?
18.4 Bag of Words (BoW)
18.5 Text Preprocessing: Stemming, Stop-word
removal, Tokenization,Lemmatization
18.6 uni-gram, bi-gram, n-grams.
18.7 tf-idf (term frequency- inverse document frequency)
18.8 Why use the log in IDF?
18.9 Word2Vec.
18.10 Avg-Word2Vec, tf-idf weighted Word2Vec
18.11 Bag of Words(code sample)
18.12 Text Preprocessing(code sample)
18.13 Bi-Grams and n-grams(code sample)
18.14 TF-IDF(code sample)
18.15 Word2Vec(code sample)
18.16 Avg-Word2Vec and TFIDF-Word2Vec(Code Sample)