多标签分类
文章平均质量分 69
Randolph_Lee
活在当下
展开
-
Basic Introduction of Multi-label Learning
Traditional supervised learning is one of the mostly-studied machine learning paradigms, where each object is represented by a single feature vector and associated with a single label. The fundamental原创 2017-04-05 09:31:42 · 495 阅读 · 0 评论 -
KNN for Multi-label learning
ML-kNN is adjusted for the multi-label learning tasks by introducing the maximum post probability to the prediction of unseen instances' labels. It is a lazy learning algorithm, and belong to the algo原创 2017-04-05 09:40:36 · 684 阅读 · 0 评论 -
Threshold function with BP neural network
Threshold function is a common practice in multi-label learning to return as the learned model. In this case, in order to decide the proper label set for unseen instance, the real-valued ouput f(x, y)原创 2017-04-06 10:02:54 · 518 阅读 · 0 评论 -
Multi-label learning for BP
# -*- coding: utf-8 -*-"""Created on 2017/4/5 9:52 2017@author: Randolph.Lee"""from __future__ import divisionfrom pybrain.structure import *from Evaluation_metrics import *from Threshold_fun原创 2017-04-06 10:06:11 · 537 阅读 · 2 评论