Geometry Worked in Trading IT Graduate of Galvanize Data Science Bootcamp in San Francisco Community manager and consultant at RaRe Technologies. NLP consulting and open-source development of Natural Language Processing packages in Python.
run a movie studio. Every day you receive thousands of proposals for movies to make. Need to send them to the right department for consideration! One department per genre. Need to classify plots by genre.
word by the company it keeps” -J. R. Firth 1957 Richard Socher’s NLP course http://cs224d.stanford.edu/lectures/CS224d-Lecture2.pdf How to come up with an embedding?
of seeing the context words given the word over. P(the|over) P(fox|over) P(jumped|over) P(the|over) P(lazy|over) P(dog|over) word2vec algorithm Used with permission from @chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec
from @chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec P(fox|over) P(v fox |v over )
from @chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN
@chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN v OUT = P(v THE |v OVER )
@chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN v OUT
@chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN v OUT
@chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN v OUT
@chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN v OUT
@chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN v OUT
@chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN v OUT
@chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec Should depend on whether it’s the input or the output. P(v OUT |v IN ) “The fox jumped over the lazy dog” v IN v OUT
similarity. How similar are two vectors? Just dot product for unit length vectors v OUT * v IN Used with permission from @chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec
1] Normalization term over all out words Used with permission from @chrisemoody http://www.slideshare.net/ChristopherMoody3/word2vec-lda-and- introducing-a-new-hybrid-algorithm-lda2vec
world devastated by disease, a convict is sent back in time to gather information about the man-made virus that wiped out most of the human population on the planet.
her three daughters are left in straitened circumstances. When Elinor forms an attachment for the wealthy Edward Ferrars, his family disapproves and separates them. And though Mrs. Jennings tries to match the worthy (and rich) Colonel Brandon to her, Marianne finds the dashing and fiery John Willoughby more to her taste.
of his estate to the son by his first marriage, which leaves his second wife and their three daughters (Elinor, Marianne, and Margaret) in straitened circumstances. They are taken in by a kindly cousin, but their lack of fortune affects the marriageability of both practical Elinor and romantic Marianne. When Elinor forms an attachment for the wealthy Edward Ferrars, his family disapproves and separates them. And though Mrs. Jennings tries to match the worthy (and rich) Colonel Brandon to her, Marianne finds the dashing and fiery John Willoughby more to her taste. Both relationships are sorely tried.
his estate to the son by his first marriage, which leaves his second wife and their three daughters (Elinor, Marianne, and Margaret) in straitened circumstances. They are taken in by a kindly cousin... romance In a future world devastated by disease, a convict is sent back in time to gather information about the man- made virus that wiped out most of the human population on the planet. sci-fi The text is very different so should be some signal there
to run these models without tuning: - Bag of words - Character n-grams - TF-IDF - Averaging word2vec vectors - doc2vec - Deep IR - Word Mover's Distance - No tuning today. To show how to tune them will require 7 more talks!
adjusting for doc length, word frequency and word-doc frequency Counting words, char n-grams are similar: 42, 44. Embedding Classifier Accuracy Train time,s Predict time, s Baseline tf-idf bag of words Logistic 47 2 1 TfidfVectorizer( min_df=2, tokenizer=nltk.word_tokenize, preprocessor=None,stop_words='english') Disclaimer: First run, “out of the box” performance. No tuning.
power our favourite classifier (logistic regression/KNN) We have vectors for words but need vectors for documents. How to create a document classifier out of a set of word vectors? For KNN, how similar is one sequence of words to another sequence of words?
vectors together! All words in a book ‘A tale of two cities’ Should add up to ‘class-struggle’ Mike Tamir https://www.linkedin.com/pulse/short-introduction-using-word2vec-text-classification-mike
archive into memory wv = Word2Vec.load_word2vec_format( "GoogleNews-vectors-negative300.bin.gz") X_train_naive_dv = naived2v_conversion_np(wv,flat_list_train) logreg = linear_model.LogisticRegression(n_jobs=-1, C=1e5) logreg = logreg.fit(X_train_naive_dv, train_data['tag']) Embedding Classifier Accuracy Train time,s Predict time 250 docs, s Averaging word vectors from pre- trained Google News Logistic 52 2 (thanks to Google!) 1 Disclaimer: First run, “out of the box” performance. No tuning.
is ‘a word that is in every context in the doc’ P(v OUT |v IN ,COMEDY) “The fox jumped over the lazy dog. (COMEDY)” v IN v OUT = P(v FOX |v OVER ,v COMEDY )
is ‘a word that is in every context in the doc’ P(v OUT |v IN ,COMEDY) “The fox jumped over the lazy dog. (COMEDY)” v IN v OUT = P(v JUMPED |v OVER ,v COMEDY )
Doc2Vec( trainsent, workers=2, size=100, iter=20, dm=1) train_targets, train_regressors = zip(*[ (doc.tags[0], model.infer_vector(doc.words, steps=20)) for doc in trainsent]) Embedding Classifier Accuracy Train time,s Predict time, s Doc2vec Logistic 52 25 1 Disclaimer: First run, “out of the box” performance. No tuning.
s Baseline tf-idf bag of words Logistic 47 2 1 Averaging word vectors from pre- trained Google News Logistic 52 2 (thanks to Google!) 1 Doc2vec Logistic 52 25 1 Bayesian Inversion Max likelihood 30 120 1 Word Movers Distance on Google News KNN 42 1 (thanks to Google!) 1800 Comparing “Hello-worlds”. Rough, first run, “out of the box” performance. No tuning.
tf-idf bag of words Logistic 47 2 1 Easy Averaging word vectors from pre- trained Google News Logistic 52 2 (thanks to Google!) 1 Hard Doc2vec Logistic 52 25 1 Hard Bayesian Inversion Max likelihood 30 120 1 Hard Word Movers Distance on Google News KNN 42 1 (thanks to Google!) 1800 Hard Comparing “Hello-worlds”. Rough, first run, “out of the box” performance. No tuning.
teams of 5-15 developers, engineers, analysts and data scientists •2-day intensives include Python Best Practices and Practical Machine Learning, and 1-day intensive Topic Modelling RNDr. Radim Řehůřek, Ph.D. Gordon Mohr, BA in CS & Econ industry-leading instructors for more information email training@rare-technologies. com