For example, I trained two models: one with SVM and one with KNN.
Final Prediction = 0.4*KNN + 0.6*SVM
Is this considered blending?
For example, I trained two models: one with SVM and one with KNN.
Final Prediction = 0.4*KNN + 0.6*SVM
Is this considered blending?
Yes, you can call that blending. You could also call it a weighted average of two models.