|
|
|
|
|
by abhinai
1019 days ago
|
|
Fully connected neural networks are hierarchies of logistic regression nodes. Transformers are networks of SVM nodes. I guess we can expect networks of other kinds of classifiers in the future. Perhaps networks of Decision Tree nodes? Mix and match? |
|
Or, maybe more clearly: imagine taking any classification algorithm and drawing the graph of all of its predictions across it's domain. Then just construct a decision tree which "draws splits" along the original alg's decision edges.
Likewise, all ML is equivalent to a KNN parameterised on an averaging operation.
Everything here is eqv to everything else. ML is just computing an expectation over a training dataset, weighted by the model parameters.
The "value" comes from the (copyright laundering/) data. The only question is: can you find useful weights by which to control the expectation you're taking?
Various ML approaches weight the training data differently. The most successful of the latest round of AI manages to compute weights across everything ever written --- hence more useful than naive KNN which wouldnt terminate on 1PB of text.