MindMap Gallery Machine learning algorithm classification
The following mind map is related to machine learning, including the classification of machine learning algorithms and an introduction to each algorithm. For example, random forest, neural network, decision tree, linear regression, logistic regression and singular value analysis, etc. If you like it, please like and collect it!
Edited at 2019-03-05 01:34:58Avatar 3 centers on the Sully family, showcasing the internal rift caused by the sacrifice of their eldest son, and their alliance with other tribes on Pandora against the external conflict of the Ashbringers, who adhere to the philosophy of fire and are allied with humans. It explores the grand themes of family, faith, and survival.
This article discusses the Easter eggs and homages in Zootopia 2 that you may have discovered. The main content includes: character and archetype Easter eggs, cinematic universe crossover Easter eggs, animal ecology and behavior references, symbol and metaphor Easter eggs, social satire and brand allusions, and emotional storylines and sequel foreshadowing.
[Zootopia Character Relationship Chart] The idealistic rabbit police officer Judy and the cynical fox conman Nick form a charmingly contrasting duo, rising from street hustlers to become Zootopia police officers!
Avatar 3 centers on the Sully family, showcasing the internal rift caused by the sacrifice of their eldest son, and their alliance with other tribes on Pandora against the external conflict of the Ashbringers, who adhere to the philosophy of fire and are allied with humans. It explores the grand themes of family, faith, and survival.
This article discusses the Easter eggs and homages in Zootopia 2 that you may have discovered. The main content includes: character and archetype Easter eggs, cinematic universe crossover Easter eggs, animal ecology and behavior references, symbol and metaphor Easter eggs, social satire and brand allusions, and emotional storylines and sequel foreshadowing.
[Zootopia Character Relationship Chart] The idealistic rabbit police officer Judy and the cynical fox conman Nick form a charmingly contrasting duo, rising from street hustlers to become Zootopia police officers!
machine learning algorithm
Supervised Learning: Classification
Support Vector Machines
Linear SVM: Find a line dividing the data set into two parts that minimizes the error
Nonlinear SVM: uses kernel function to map data to a higher dimensional space to make it linearly separable
random forest
Random forest: An algorithm that combines multiple decision trees to integrate the classification results of each tree and vote for the final category result.
Neural Networks
Neural network: Similar to biological neurons, it constructs input layer, output layer, and hidden layer to implement model training from input to output and obtain corresponding results.
decision tree
Desicion tree: Construct visual classification rules and generate an interpretable model
logistic regression
Logistic regression: Transform the dependent variable y of the linear function through a logistic function so that its probability distribution is between 0 and 1
Bayesian classification
bayesian classifier: Calculate the conditional probability of occurrence of each category to determine the classification result
gradient boosted tree
GBDT: A technology for learning from mistakes that integrates a bunch of poor learning algorithms for learning
Supervised learning: regression
random forest
Random forest: An algorithm that combines multiple decision trees to integrate the classification results of each tree and vote for the final category result.
Neural Networks
Neural network: Similar to biological neurons, it constructs input layer, output layer, and hidden layer to implement model training from input to output and obtain corresponding results.
decision tree
Desicion tree: Construct visual classification rules and generate an interpretable model
linear regression
Univariate linear regression: Construct a linear model to express the relationship between a dependent variable and an independent variable to minimize the error
Multiple linear regression: Construct a linear model to express the relationship between a dependent variable and multiple independent variables
gradient boosted tree
GBDT: A technology for learning from mistakes that integrates a bunch of poor learning algorithms for learning
Unsupervised Learning: Dimensionality Reduction
Principal component analysis
PCA: Convert a set of potentially correlated variables into a set of linearly uncorrelated variables through orthogonal transformation
linear discriminant analysis
LDA: Project the data set onto a straight line so that projection points of the same type are as close as possible and projection points of different types are as far away as possible
singular value decomposition
SVD: A complex matrix is represented by the multiplication of several smaller and simpler submatrices, and these small matrices express the important characteristics of the matrix.
Unsupervised Learning: Clustering
BDSCAN
A density clustering algorithm suitable for convex and non-convex sample sets, assuming that the category of the sample can be determined by the tightness of the sample distribution
K-means
K-MEAN: For K categories in a given data set, the center of each category is obtained by calculating the mean value of all values in the category, and distance is used as the similarity index to perform clustering.
hierarchical clustering
Hierarchical clustering: Calculate the similarity between nodes through a certain degree of similarity, and form a tree diagram hierarchy according to the network nodes to perform hierarchical splitting