Skip to content

Instantly share code, notes, and snippets.

@rayshih
Created August 23, 2020 17:47
Show Gist options
  • Save rayshih/f4883b678f8055f8326db4fe94507d34 to your computer and use it in GitHub Desktop.
Save rayshih/f4883b678f8055f8326db4fe94507d34 to your computer and use it in GitHub Desktop.
digraph G {
subgraph cluster_gc {
label = "general concepts";
training_vs_testing -> overfitting_and_verification;
regularization
}
linear_regression -> persception_learning;
logistic_regression -> linear_regression;
regularization -> logistic_regression;
NN -> linear_regression;
subgraph cluster_nn {
label = "neural network"
CNN -> NN;
RNN -> NN;
word_embeding -> RNN;
attention -> RNN;
GRU -> RNN;
LSTM -> RNN;
GAN -> auto_encoder -> NN;
}
subgraph cluster_dr {
label = "dimensionality reduction";
auto_encoder
PCA;
word_embedding;
}
SVM -> logistic_regression;
subgraph cluster_clustering {
label = "clustering";
K_means;
}
subgraph cluster_blending {
label = "blending and boosting";
adaptive_boosting -> blending_bagging;
}
subgraph cluster_dt {
label = "decision tree";
GBDT -> adaptive_boosting;
GBDT -> random_forest -> decision_tree;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment