Datasets:
Upload domains/machine-learning-textbook/learning-graph.csv with huggingface_hub
Browse files
domains/machine-learning-textbook/learning-graph.csv
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
ConceptID,ConceptLabel,Dependencies,TaxonomyID
|
| 2 |
+
1,Machine Learning,,FOUND
|
| 3 |
+
2,Supervised Learning,1,FOUND
|
| 4 |
+
3,Unsupervised Learning,1,FOUND
|
| 5 |
+
4,Classification,2,FOUND
|
| 6 |
+
5,Regression,2,FOUND
|
| 7 |
+
6,Training Data,1,FOUND
|
| 8 |
+
7,Test Data,6,FOUND
|
| 9 |
+
8,Validation Data,6,FOUND
|
| 10 |
+
9,Feature,1,FOUND
|
| 11 |
+
10,Label,2,FOUND
|
| 12 |
+
11,Instance,9,FOUND
|
| 13 |
+
12,Feature Vector,9|11,FOUND
|
| 14 |
+
13,Model,1,FOUND
|
| 15 |
+
14,Algorithm,1,FOUND
|
| 16 |
+
15,Hyperparameter,13|14,FOUND
|
| 17 |
+
16,K-Nearest Neighbors,2|14,KNN
|
| 18 |
+
17,Distance Metric,9,KNN
|
| 19 |
+
18,Euclidean Distance,17,KNN
|
| 20 |
+
19,Manhattan Distance,17,KNN
|
| 21 |
+
20,K Selection,15|16,KNN
|
| 22 |
+
21,Decision Boundary,4,KNN
|
| 23 |
+
22,Voronoi Diagram,16|21,KNN
|
| 24 |
+
23,Curse of Dimensionality,9|17,KNN
|
| 25 |
+
24,KNN for Classification,16|4,KNN
|
| 26 |
+
25,KNN for Regression,16|5,KNN
|
| 27 |
+
26,Lazy Learning,16,KNN
|
| 28 |
+
27,Decision Tree,2|14,TREE
|
| 29 |
+
28,Tree Node,27,TREE
|
| 30 |
+
29,Leaf Node,27|28,TREE
|
| 31 |
+
30,Splitting Criterion,27,TREE
|
| 32 |
+
31,Entropy,30,TREE
|
| 33 |
+
32,Information Gain,31,TREE
|
| 34 |
+
33,Gini Impurity,30,TREE
|
| 35 |
+
34,Pruning,27|35,TREE
|
| 36 |
+
35,Overfitting,13|6,TREE
|
| 37 |
+
36,Underfitting,13|6,TREE
|
| 38 |
+
37,Tree Depth,27|28,TREE
|
| 39 |
+
38,Categorical Features,9,FOUND
|
| 40 |
+
39,Continuous Features,9,FOUND
|
| 41 |
+
40,Feature Space Partitioning,27|9,FOUND
|
| 42 |
+
41,Logistic Regression,2|14|4,MISC
|
| 43 |
+
42,Sigmoid Function,41,LOGREG
|
| 44 |
+
43,Log-Loss,98|41,LOGREG
|
| 45 |
+
44,Binary Classification,4,LOGREG
|
| 46 |
+
45,Multiclass Classification,4,LOGREG
|
| 47 |
+
46,Maximum Likelihood,41,LOGREG
|
| 48 |
+
47,One-vs-All,45|41,LOGREG
|
| 49 |
+
48,One-vs-One,45|41,LOGREG
|
| 50 |
+
49,Softmax Function,45,LOGREG
|
| 51 |
+
50,Regularization,35,REG
|
| 52 |
+
51,L1 Regularization,50,REG
|
| 53 |
+
52,L2 Regularization,50,REG
|
| 54 |
+
53,Ridge Regression,52|5,REG
|
| 55 |
+
54,Lasso Regression,51|5,REG
|
| 56 |
+
55,Support Vector Machine,2|14|4,SVM
|
| 57 |
+
56,Hyperplane,55,SVM
|
| 58 |
+
57,Margin,55|56,SVM
|
| 59 |
+
58,Support Vectors,55|57,SVM
|
| 60 |
+
59,Margin Maximization,57,SVM
|
| 61 |
+
60,Hard Margin SVM,55|57,SVM
|
| 62 |
+
61,Soft Margin SVM,55|57,SVM
|
| 63 |
+
62,Slack Variables,61,SVM
|
| 64 |
+
63,Kernel Trick,55,SVM
|
| 65 |
+
64,Linear Kernel,63,SVM
|
| 66 |
+
65,Polynomial Kernel,63,SVM
|
| 67 |
+
66,Radial Basis Function,63,SVM
|
| 68 |
+
67,Gaussian Kernel,63|66,SVM
|
| 69 |
+
68,Dual Formulation,55,SVM
|
| 70 |
+
69,Primal Formulation,55,SVM
|
| 71 |
+
70,K-Means Clustering,3|14,CLUST
|
| 72 |
+
71,Centroid,70,CLUST
|
| 73 |
+
72,Cluster Assignment,70|71,CLUST
|
| 74 |
+
73,Cluster Update,70|71,CLUST
|
| 75 |
+
74,K-Means Initialization,70,CLUST
|
| 76 |
+
75,Random Initialization,74,CLUST
|
| 77 |
+
76,K-Means++ Initialization,74,CLUST
|
| 78 |
+
77,Elbow Method,70|15,CLUST
|
| 79 |
+
78,Silhouette Score,70,CLUST
|
| 80 |
+
79,Within-Cluster Variance,70|71,CLUST
|
| 81 |
+
80,Convergence Criteria,70,CLUST
|
| 82 |
+
81,Inertia,70|79,CLUST
|
| 83 |
+
82,Neural Network,2|14,NN
|
| 84 |
+
83,Artificial Neuron,82,NN
|
| 85 |
+
84,Perceptron,83,NN
|
| 86 |
+
85,Activation Function,83,NN
|
| 87 |
+
86,ReLU,85,NN
|
| 88 |
+
87,Tanh,85,NN
|
| 89 |
+
88,Sigmoid Activation,85,LOGREG
|
| 90 |
+
89,Leaky ReLU,85|86,NN
|
| 91 |
+
90,Weights,83,NN
|
| 92 |
+
91,Bias,83,NN
|
| 93 |
+
92,Forward Propagation,82|83,NN
|
| 94 |
+
93,Backpropagation,82|92,NN
|
| 95 |
+
94,Gradient Descent,93,NN
|
| 96 |
+
95,Stochastic Gradient Descent,94,NN
|
| 97 |
+
96,Mini-Batch Gradient Descent,94,NN
|
| 98 |
+
97,Learning Rate,94|15,NN
|
| 99 |
+
98,Loss Function,13,NN
|
| 100 |
+
99,Mean Squared Error,98|5,NN
|
| 101 |
+
100,Cross-Entropy Loss,98|4,TREE
|
| 102 |
+
101,Epoch,6|82,NN
|
| 103 |
+
102,Batch Size,6|82,NN
|
| 104 |
+
103,Vanishing Gradient,93|94,NN
|
| 105 |
+
104,Exploding Gradient,93|94,NN
|
| 106 |
+
105,Weight Initialization,82|90,NN
|
| 107 |
+
106,Xavier Initialization,105,NN
|
| 108 |
+
107,He Initialization,105,NN
|
| 109 |
+
108,Fully Connected Layer,82,NN
|
| 110 |
+
109,Hidden Layer,82|108,NN
|
| 111 |
+
110,Output Layer,82|108,NN
|
| 112 |
+
111,Input Layer,82|108,NN
|
| 113 |
+
112,Network Architecture,82,NN
|
| 114 |
+
113,Deep Learning,82,NN
|
| 115 |
+
114,Multilayer Perceptron,82|109,NN
|
| 116 |
+
115,Universal Approximation,82,NN
|
| 117 |
+
116,Convolutional Neural Network,113|14,CNN
|
| 118 |
+
117,Convolution Operation,116,CNN
|
| 119 |
+
118,Filter,117,CNN
|
| 120 |
+
119,Kernel Size,118|15,SVM
|
| 121 |
+
120,Stride,117,CNN
|
| 122 |
+
121,Padding,117,CNN
|
| 123 |
+
122,Valid Padding,121,CNN
|
| 124 |
+
123,Same Padding,121,CNN
|
| 125 |
+
124,Feature Map,117|118,FOUND
|
| 126 |
+
125,Receptive Field,116|117,CNN
|
| 127 |
+
126,Pooling Layer,116,NN
|
| 128 |
+
127,Max Pooling,126,CNN
|
| 129 |
+
128,Average Pooling,126,CNN
|
| 130 |
+
129,Spatial Hierarchies,116|124,CNN
|
| 131 |
+
130,Translation Invariance,116|117,CNN
|
| 132 |
+
131,Local Connectivity,116|117,CNN
|
| 133 |
+
132,Weight Sharing,116|90,CNN
|
| 134 |
+
133,CNN Architecture,116,CNN
|
| 135 |
+
134,LeNet,133,CNN
|
| 136 |
+
135,AlexNet,133,CNN
|
| 137 |
+
136,VGG,133,CNN
|
| 138 |
+
137,ResNet,133,CNN
|
| 139 |
+
138,Inception,133,CNN
|
| 140 |
+
139,Transfer Learning,113|14,TL
|
| 141 |
+
140,Pre-Trained Model,139,FOUND
|
| 142 |
+
141,Fine-Tuning,139|140,TL
|
| 143 |
+
142,Feature Extraction,139|140,FOUND
|
| 144 |
+
143,Domain Adaptation,139,TL
|
| 145 |
+
144,ImageNet,116|140,TL
|
| 146 |
+
145,Model Zoo,140,FOUND
|
| 147 |
+
146,Freezing Layers,141,NN
|
| 148 |
+
147,Learning Rate Scheduling,97|139,NN
|
| 149 |
+
148,Bias-Variance Tradeoff,35|36,NN
|
| 150 |
+
149,Training Error,6|13,EVAL
|
| 151 |
+
150,Validation Error,8|13,FOUND
|
| 152 |
+
151,Test Error,7|13,EVAL
|
| 153 |
+
152,Generalization,148|149|150,EVAL
|
| 154 |
+
153,Cross-Validation,8|13,FOUND
|
| 155 |
+
154,K-Fold Cross-Validation,153,FOUND
|
| 156 |
+
155,Stratified Sampling,153,EVAL
|
| 157 |
+
156,Holdout Method,6|7|8,EVAL
|
| 158 |
+
157,Confusion Matrix,4,EVAL
|
| 159 |
+
158,True Positive,157,EVAL
|
| 160 |
+
159,False Positive,157,EVAL
|
| 161 |
+
160,True Negative,157,EVAL
|
| 162 |
+
161,False Negative,157,EVAL
|
| 163 |
+
162,Accuracy,157,EVAL
|
| 164 |
+
163,Precision,158|159,EVAL
|
| 165 |
+
164,Recall,158|161,EVAL
|
| 166 |
+
165,F1 Score,163|164,EVAL
|
| 167 |
+
166,ROC Curve,4,EVAL
|
| 168 |
+
167,AUC,166,EVAL
|
| 169 |
+
168,Sensitivity,164,EVAL
|
| 170 |
+
169,Specificity,160|159,EVAL
|
| 171 |
+
170,Data Preprocessing,6,EVAL
|
| 172 |
+
171,Normalization,170,PREP
|
| 173 |
+
172,Standardization,170,PREP
|
| 174 |
+
173,Min-Max Scaling,171,PREP
|
| 175 |
+
174,Z-Score Normalization,172,PREP
|
| 176 |
+
175,One-Hot Encoding,170|38,PREP
|
| 177 |
+
176,Label Encoding,170|10,FOUND
|
| 178 |
+
177,Feature Engineering,9|170,FOUND
|
| 179 |
+
178,Feature Selection,177,FOUND
|
| 180 |
+
179,Dimensionality Reduction,9|23,PREP
|
| 181 |
+
180,Data Augmentation,170|116,PREP
|
| 182 |
+
181,Computational Complexity,14,OPT
|
| 183 |
+
182,Time Complexity,181,OPT
|
| 184 |
+
183,Space Complexity,181,OPT
|
| 185 |
+
184,Scalability,181,OPT
|
| 186 |
+
185,Batch Processing,6|102,NN
|
| 187 |
+
186,Online Learning,1|6,OPT
|
| 188 |
+
187,Optimizer,94,OPT
|
| 189 |
+
188,Adam Optimizer,187,OPT
|
| 190 |
+
189,RMSprop,187,OPT
|
| 191 |
+
190,Momentum,94|187,OPT
|
| 192 |
+
191,Nesterov Momentum,190,OPT
|
| 193 |
+
192,Gradient Clipping,104,OPT
|
| 194 |
+
193,Dropout,50|82,OPT
|
| 195 |
+
194,Early Stopping,50|150,OPT
|
| 196 |
+
195,Model Evaluation,13|7,FOUND
|
| 197 |
+
196,Model Selection,13|195,FOUND
|
| 198 |
+
197,Hyperparameter Tuning,15|196,FOUND
|
| 199 |
+
198,Grid Search,197,OPT
|
| 200 |
+
199,Random Search,197,OPT
|
| 201 |
+
200,Bayesian Optimization,197,OPT
|