Path9.Mod1.d - Selecting Text Analyics and Recommender Algorithms for Azure ML Flashcards

Augmented learning https://learn.microsoft.com/en-us/azure/machine-learning/algorithm-cheat-sheet?WT.mc_id=docs-article-lazzeri&view=azureml-api-1 https://learn.microsoft.com/en-us/azure/machine-learning/media/algorithm-cheat-sheet/machine-learning-algorithm-cheat-sheet.png?view=azureml-api-1#lightbox

1
Q

When you want to Extract information from text after having performed cleaning operations like Stop-Word Removal and Case Normalization

A

Preprocess Text (Know this for the exam!)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

When you want to Extract information from text by converting words to values used by NLP tasks like Recommenders, NER and Machine Translation

A

Word2Vector…naturally since most all NLP tasks require words be translated to decimal vectors for plotting…

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

When you want to Extract information from text by grouping similar text through Unsupervised Topic Modeling

A

Latent Dirichlet Allocation

Pronouced “Dur-ish-lay”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

When you want to Extract information from text using N-Grams

What N-Grams are…

A

Extract N-Gram Features From Text

N-Grams: Continous symbols or words, or tokens in documents. the N is the number of tokens in the series or grouping:

N | Name | Sample
1 |Unigram | [“green”,”eggs”,”and”,”ham”]
2 | Bigram | [“green eggs”,”eggs and”,”and ham”]
3 | Trigram |	[“green eggs and”, “eggs and ham”]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

When you want to Extract information from text using the Vowpal Wabbit library to convert text to Integer-Encoded Features

A

Feature Hashing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

When you want to Generate Recommendations based on a collaborative filtering and content approach, using a hybrid recommender

A

Wide & Deep Recommender

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

When you want to Generate Recommendations using collaborative filtering, better performance and with lower cost through reducing dimensionality

Explain the algorithm this Recommender is based on…

A

SVD Recommender

SVD: Singular Value Decomposition. Basically a matrix factorization technique, which decomposes any matrix into 3 generic and familiar matrices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly