Search code examples
pythonfusion

Late Fusion of text features


I am new in this domain. I am looking for codes for late fusion. I have text features but I don't know how to implement late fusion. I read articles on this but a working code will help me to understand the implementation properly.


Solution

  • I solved this problem. I am not expecting an answer to this question. If any of you face a similar situation for them I am explaining here. Let you have texture features of two classes. Classify those features based on two/multiple different classifiers, for example, SVM, KNN, RF, Adaboost, etc. Compute probability scores using each classifier. Now, concatenate the probability scores of all classifiers and finally again classify the using any classifiers. In this step, you may use previously used classifiers.