Please enable JavaScript.
Coggle requires JavaScript to display documents.
Machine Learning (Methods (Decision Trees (Creation of a tree (Start at…
Machine Learning
Methods
-
Curves
Precision / Recall Tradeoff curve, when positive class is rare, or when you care more about FP than FN.
ROC Curve (Recall vs. 1-TN/(TN + FN)), sensitivity vs specifcity
Classifiers
Multiclass
One Versus All (OvA), one binary classifier for each class
One versus One (OvO), one classifier to distinguish between two classes.
-
Multilabel
Output of 1, 0, 1, ... to assign multiple classes
-
Linear
-
Perzeptron
-
Training
Iterative
Random start weights
Gradual improvement of error, gradient descent
-
-
Data Augmentation
-
-
similarity function, landmarks
Decision Trees
Gini impurity, 0 = all samples of a node of same class
-
-
-
Pruning: Unlimited tree, then cleaning=pruning by removing superfluous nodes
-
-
-
-
Data Exploration
-
-
-
Data Representation
-
Histogram to represent "data-bins", f.ex. to understand criteria intensity for different classifications
Scatterplot for relationships between variables, f.ex. to understand criteria relationship for specific classifications
-
-
Kinds of learning
Supervised learning
-
-
Regression
Scatter plots, suggest / predict relationship between x and y
-
-
Linear regression, linear function r = th0 + th1 * x1
Measuring error, error residual
Training Data, Program ("Learner"), Learning algorithm telling Learner how to learn
-
Semi-supervised
-
-
Lot of data, but not enough time to hand-label it
Reinforcement Learning
-
-
Poker, sequence of actions, bedding, raising, not concrete answers to actions
-
Subfield of AI
Intelligent Agents
Autonomous Behaviour, Autonomous Cars
-
Multi-Agent Dynamics, Robot Soccer
-
-