DASMI Algorithms Flashcards
An unsupervised artificial neural network.
learns how to efficiently compress and encode data then
learns how to reconstruct the data back from the reduced encoded representation to a representation that is as close to the original input as possible.
Autoencoder
A series of algorithms that endeavors to recognize underlying relationships in a set of data through a process that mimics the way the HUMAN BRAIN operates
neural network
An algorithm that decides how to take a set of other (typically, though not necessarily non-meta) “algorithms” (which might be as dumb as a constant output, for example), and CONSTRUCTS A NEW ALGORITHM OUT OF THOSE TWO, often by combining or weighting the outputs of the component algorithms.
Meta-Algorithm
Tiered Series of Meta Algorithms
DASMI Intelligence Model
Top algorithm - classification and regression
Support Vector Machine (SVM) Algorithm
It works by classifying the data into different classes by finding a line (hyperplane) which separates the training data set into classes.
Support Vector Machine (SVM) Algorithm
A statistical method used in finance, investing, and other disciplines that attempts to determine the strength and character of the relationship between one dependent variable (usually denoted by Y) and a series of other variables (known as independent variables).
regression
Algorithm that renders more efficiency for correct classification of the future data.
Does not make any strong assumptions on data.
Does not over-fit the data.
Support Vector Machine (SVM) Algorithm
Algorithm used for association analysis on healthcare data like-the drugs taken by patients, characteristics of each patient, adverse ill-effects patients experience, initial diagnosis, etc.
This analysis produces association rules that help identify the combination of patient characteristics and medications that lead to adverse side effects of the drugs.
Apriori algorithm
An algorithm for frequent item set mining and association rule learning over relational databases. It proceeds by identifying the frequent individual items in the database and extending them to larger and larger item sets as long as those item sets appear sufficiently often in the database.
Apriori algorithm
Algorithm principle can reduce the number of itemsets we need to examine. Put simply, the apriori principle states that. if an itemset is infrequent, then all its supersets must also be infrequent. This means that if {beer} was found to be infrequent, we can expect {beer, pizza} to be equally or even more infrequent.
Apriori algorithm
2 step process of this algorithm
Join Step: This step generates (K+1) itemset from K-itemsets by joining each item with itself.
•Prune Step: This step scans the count of each item in the database. If the candidate item does not meet minimum support, then it is regarded as infrequent and thus it is removed. This step is performed to reduce the size of the candidate itemsets.
Apriori algorithm
Algorithm - Develop prediction performance and risk factors:
Random Forest Algorithm
A go-to machine learning algorithm that uses a BAGGING approach to create a bunch of DECISION TREES with random subset of the data.
A model is trained several times on RANDOM SAMPLE of the dataset to achieve good prediction performance
Random Forest Algorithm
Ensemble learning method, the output of all the decision trees is combined to make the final prediction.
Random Forest Algorithm