WO2012141332A1 - Supervised and semi-supervised online boosting algorithm in machine learning framework - Google Patents

Supervised and semi-supervised online boosting algorithm in machine learning framework Download PDF

Info

Publication number
WO2012141332A1
WO2012141332A1 PCT/JP2012/060391 JP2012060391W WO2012141332A1 WO 2012141332 A1 WO2012141332 A1 WO 2012141332A1 JP 2012060391 W JP2012060391 W JP 2012060391W WO 2012141332 A1 WO2012141332 A1 WO 2012141332A1
Authority
WO
WIPO (PCT)
Prior art keywords
samples
statistical model
model
training
sample
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Ceased
Application number
PCT/JP2012/060391
Other languages
French (fr)
Inventor
Fan Wang
Xinyu Xu
Chang YUAN
Petrus J.L. Van Beek
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Sharp Corp
Original Assignee
Sharp Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Sharp Corp filed Critical Sharp Corp
Publication of WO2012141332A1 publication Critical patent/WO2012141332A1/en
Anticipated expiration legal-status Critical
Ceased legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06VIMAGE OR VIDEO RECOGNITION OR UNDERSTANDING
    • G06V10/00Arrangements for image or video recognition or understanding
    • G06V10/70Arrangements for image or video recognition or understanding using pattern recognition or machine learning
    • G06V10/77Processing image or video features in feature spaces; using data integration or data reduction, e.g. principal component analysis [PCA] or independent component analysis [ICA] or self-organising maps [SOM]; Blind source separation
    • G06V10/774Generating sets of training patterns; Bootstrap methods, e.g. bagging or boosting
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F18/00Pattern recognition
    • G06F18/20Analysing
    • G06F18/21Design or setup of recognition systems or techniques; Extraction of features in feature space; Blind source separation
    • G06F18/214Generating training patterns; Bootstrap methods, e.g. bagging or boosting
    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F18/00Pattern recognition
    • G06F18/20Analysing
    • G06F18/21Design or setup of recognition systems or techniques; Extraction of features in feature space; Blind source separation
    • G06F18/217Validation; Performance evaluation; Active pattern learning techniques

Definitions

  • the present invention relates to online learning of a classifier in a machine learning framework.
  • the present invention relates to online learning of a classifier in a machine learning framework that includes supervised and semi-supervised online learning algorithms in a machine learning framework.
  • Such classifiers may be trained using training samples, and then used in a so-called testing or prediction stage , to classify test samples .
  • such classifiers may be used in an automated factory inspection application to detect defects in an image of a product.
  • a "sample” may consist of a set of data derived from an image or pixels in a region of the image, and the task of the classifier is to classify "sample” as "defect" (positive class) or "non-defect” (negative class) .
  • such classifiers may be used to classify defects into different categories.
  • Machine learning applications usually include two stages: training stage and prediction stage.
  • the training stage traditionally all training samples are available as a batch at the beginning; a statistical model can then be trained based on the training samples.
  • the statistical model obtained from the training stage is then used to classify new samples into different categories.
  • not all the training samples are available at the initial training stage . More samples will be acquired and may be labeled as time goes on . It is desirable to use this new information to refine and improve the classifier for future usage.
  • the data properties might be changing over time, or even not generated from any distribution.
  • the model trained with the initial samples can only accommodate the initial properties, so it might become useless as new samples arrive over time .
  • the classifier including Normal Support Vector Machines, Decision Trees, Boosted Decision Trees and Neural Networks .
  • the Boosted Decision Tree (or Boosting Tree) may be the statistical model of the classifier.
  • each of the types of statistical models may be generally referred to as a respective class.
  • Boosting is based on the use of an ensemble of weak classifiers that is not constrained to specific classifiers.
  • a weak classifier is trained with respect to the samples and the associated weights.
  • a weak classifier is added to form a final strong classifier.
  • the weak classifiers are typically weighted by their accuracy.
  • the samples are reweighted : the weights of the misclassified samples will be increased, and the samples that are classified correctly will have decreased weights.
  • Weak classifiers that are subsequently added will be trained based on the re-weighted samples, focusing more on the misclassified samples .
  • the weak classifier may be in the form of a Decision Tree (DT) .
  • Decision Tree (DT) is a binary tree (i. e. tree where each non-leaf node has exactly 2 child nodes) .
  • the training and prediction of the Decision Tree (DT) is described as follows .
  • the tree is built recursively, starting from the root node .
  • the whole training data feature vectors and the responses
  • the optimum decision rule i. e . the best "primary” split
  • the surrogate splits are found that resemble at the most the results of the primary split on the training data; all data are divided using the primary and the surrogate splits (just like it is done in the prediction procedure) between the left and the right child node .
  • the procedure recursively splits both left and right nodes .
  • the recursive procedure may stop (i.
  • Predicting with DT to reach a leaf node, and thus to obtain a response for the input feature vector, the prediction procedure starts with the root node . From each non-leaf node the procedure goes to the left, or to the right based on the value of a certain variable . If the value of the variable is less the threshold . This pair is called split. Once a leaf node is reached, the value assigned to this node is used as the output of prediction procedure .
  • the trained statistical model and the first statistical model are of the same class because they use the same statistical model type.
  • the trained statistical model and the first statistical model can both be Decision Tree statistical model, or they can both be Support Vector Machine statistical model.
  • Step (a) is a step in which a sample classification apparatus trains an initial statistical model based on a set of initial samples. That is, the initial statistical model is automatically trained with a set of initial samples without user intervention .
  • the initial statistical model can be Decision Tree or Support Vector Machine (or any other machine learning methods) .
  • the high positive recall means that the percentage of true positive samples found by the statistical model with respect to all the ground-truth positive samples is high.
  • FIG. 1 illustrates an off-line and an on-line boosting technique .
  • FIG . 2 illustrates a cascade prediction for on-line boosting.
  • FIG. 3 illustrates an initial training model
  • FIG. 4 illustrates on-line boosting with additional labeled samples.
  • FIG. 5 illustrates on-line boosting with additional un- labeled samples.
  • FIG. 6 illustrates on-line self-training.
  • FIG. 7 illustrates a more comprehensive boosting technique .
  • FIG. 8 illustrates semi-supervised prediction .
  • FIG. 9 illustrates an arrangement of a classification device in accordance with an embodiment of the present invention.
  • the boosting technique may supplement the training on an image by image basis, or group of images by group of images basis, by expanding the model (statistical model) .
  • the statistical model is an algorithm (or a program) for classifying a sample into any of a plurality of predetermined categories .
  • an ensemble of weak classifiers has already been obtained, then this ensemble can be expanded to a larger one as new training c samples arrive .
  • a model 0 (a first statistical model) , which is an ensemble of weak classifiers L i - ⁇ > —M ( j s trained.
  • the prediction of on a testing sample x may be made by a weighted combination of
  • the label of sample x may be given by ⁇ I WI ⁇ which is the sign of the output.
  • the model r trained by the z -th group of samples may be denoted as ' , which is also an ensemble of weak classifiers,
  • the final predicted label C can be made by a weighted combination of all the models available up until the
  • An initial set of samples 100 are trained to determine an initial boosting model (a trained statistical model) CO .
  • an initial boosting model (a trained statistical model) CO .
  • a first group of additional training samples 1 10 are obtained to determine a first boosting model (a first statistical model) C I 1 12 based upon this group of images, and not the initial training samples 100 or initial boosting model CO 102.
  • a second group of additional training samples 120 are obtained to determine a second boosting model (a second statistical model) C2 122 based upon this further group of images, and not the training samples 100 / 1 10 or boosting models C0 / C 1 102 , 1 12. This process may be continued for additional groups of subsequent images .
  • the result of the available boosting models CO, C I , Ck may be combined using a weighted sum 130 to determine a final prediction 140.
  • the weights can be determined by the importance of each group of samples, by the order that each group of samples arrives, removal of selected models determined to be of limited value, or any other suitable manner.
  • This technique may be referred to as a voting mechanism, with each model acting as an expert, with the final results being determined by them together with different weights.
  • the image buffer of the group of images may be cleared when the group is processed to determine a suitable model.
  • the on-line boosting technique may also update the existing model.
  • the optimal model that can be achieved for an online application would be the batch model re-trained with all the training samples available up until the current stage .
  • the online boosting technique may correspond to the batch boosting technique .
  • the model trained with the initial training samples may be updated with the newly added samples, so that the updated model would be approximately the same as the batch model re-trained with all training samples.
  • the input technique may be a group of weak classifiers learned so far ⁇ > ⁇ _ 1> ⁇ ⁇ ⁇ a new training sample s to arrive (with ⁇ as it's ground truth label) , and an incremental learning technique which utilizes the new trainin sample to update the existing weak classifier
  • BaseUpdate L ⁇ s) _ An exernp lary s e t o f details may be as follows .
  • the final prediction of a sample x can be made as
  • ' ' is the summation of the weights of all samples that have been used until the current stage (excluding the weight of new sample s )
  • is the number of all past samples excluding the new sample s .
  • One or more online boosting techniques such as the expanding models technique and/ or the updating the initial model technique may be combined together to achieve improved performance .
  • the expanded model is denoted as ⁇ E and the updated model is denoted as ⁇ u .
  • First Mu 200 is used to make a prediction 2 10. If the sample is predicted as negative 220 , then the system may return - 1 230 as the final output. In this case it is likely that the sample is a defect since tends this way. If the sample is predicted as positive 240 , then model 250 is used to make another prediction 260. In this case, the prediction of
  • ⁇ u is not that accurate so it is preferable to also use ⁇ £ to obtain further characterization .
  • the system determines the weighted combination of the two predictions as the final positive output 270 or final negative output 280.
  • ⁇ u tends to provide results with high recall, which means, most of the positive samples will be included in those samples predicted as positive by ⁇ u . That is to say, if a sample is predicted as negative by ⁇ ⁇ , it's most likely that it is a true negative . If it's predicted as positive, it is not sure whether it's true positive or not; then combine it with the prediction result by model ⁇ E to make further confirmation.
  • the model E may be used primarily when a sample is predicted as positive in the first stage, which is a smaller fraction among all samples . Since the number of negative samples is larger than the number of positive samples, ⁇ u will be enough to make the prediction in many cases, and the time required to go through all weak classifiers in will be saved in many cases.
  • the updating of the existing weak classifier was described.
  • the technique may be specific, if desired, to a particular type of baseline classifier. For example, if the decision tree is trained, and it is desirable to update it with a new sample, the system may first pass the sample from the root to corresponding branch according to the criteria at each internal node, and recalculate the "purity" score for each node . If the purity score of a node is not high enough, it should be re-split based on all previous samples and this new sample . Therefore , some information should be maintained about previous samples so that it's possible to recalculate the purity score of each node .
  • this statistical information can be obtained by counting the number of samples with each value ; however, if the variable is real-valued, to precisely maintain the distribution information, all the previous feature values that have appeared should be stored for future use .
  • online learning when using a decision tree as the base classifier in the boosting model, and the feature of each sample is real-valued, all the feature values that have appeared would normally be stored to update the initial model, which is determined by the characteristics of decision tree . This is highly memory-consuming as the number of samples that must be stored keeps increasing. A more compact representation of the sample features is desirable in a manner that does not result in a significant loss of accuracy to reduce memory usage.
  • the system obtains the representative samples of initial training samples by using a suitable technique, such as a K-means clustering technique on positive and negative samples separately.
  • the cluster centers are selected as the representative samples, denoted as i x i ⁇ ⁇ i
  • the statistical distribution information contained in the entire sample set is dynamically maintained, while the memory footprint and the computational load is controlled as constant, proportional to the number of centers used in the K-means clustering technique.
  • the compact represented is described with respect to updating decision trees, this representation is also useful for other types of classifiers, as long as the classifier is influenced by the data density.
  • training samples may be "labeled” when used to train a statistical model.
  • the " labeled samples” means samples which are classified into one of plurality of categories in advance by human being or by a preset statistical model.
  • the labels of samples are provided by human being.
  • an intelligent statistical model can be used to label the samples, however in this case, it is required that the labels provided by the statistical model conform to the understanding of human being, that is the labels must be "meaningful” and “correct” to human being.
  • a sample may be labeled as either "defect” or “non-defect” in order to "teach" a statistical model/ classifier.
  • the labels may be provided by a human operator or expert. In many applications, obtaining the labeled samples for training are expensive, difficult and/ or time-consuming. If a substantial number of unlabeled samples are available, these unlabeled samples may also be used to assist in improving the model, which reduces the burden associated with labeling the samples.
  • samples that are not labeled e . g. manually by an operator, may be used for training the statistical model of a classifier. This may be beneficial in many applications, since it may be relatively expensive (in terms of time or other resources) to provide labels for the purpose of training statistical classifiers.
  • the technique uses the supervised online boosting model described above, i. e . the initial model is updated and a new model is added. If the incoming group of samples are unlabeled , the system may use two models, namely, a newest added model and/ or an updated initial model. Both models can predict the labels for these unlabeled samples, and the samples with the most confident labels are selected. Supposing the most confident labels are just the pseudo ground truth labels, each model will provide these samples and their labels to update the other model .
  • the samples used for training are usually labeled by experts; however, the labeling might be difficult, expensive or time-consuming, while the unlabeled samples are easier to collect. With limited amount of labeled samples, the obtained classifier might be biased or insufficient to distinguish different classes . Given the limited labeled samples, an effective technique to train a classifier should exploit the information in the large amount of unlabeled samples, which is generally well-known as semi-supervised learning.
  • a semi-supervised online learning boosting tree framework may make use of the information contained in a large amount of unlabeled data. Their distribution gives some information about the intrinsic connections between data points, but this information is hard to exploit using traditional supervised learning techniques, since the samples do not have class labels associated with them.
  • a semi-supervised technique generally referred to as co- training may be utilized .
  • co-training By way of general description there are two different classifiers and trained on labeled samples . Firstly is used to provide (predict) labels for the unlabeled samples . Then, predicted samples with the most confident labels are selected, removed from the unlabeled set, and added to the labeled set associated with the predicted labels. is re-trained with the expanded labeled set. Then, the role of and is changed, and the above steps are repeated. In this stage , is re-trained based on predictions from the updated . This co-training procedure may continue, until some convergence criteria is met.
  • the system has an initial model ⁇ u trained 3 10.
  • one or more techniques may be applied.
  • ⁇ 435 may be updated 430 with these samples .
  • the initial model is updated based upon the subsequent samples, and therefore reflects the total set of available samples.
  • a new boosting model M E ' 440 based upon a set of samples is added 450 to ⁇ 460.
  • new boosting models are determined based upon the labeled images each of which is characteristic of the newly received samples, which are then combined with previous newly determined boosting models. In this manner, the system is more suitable to adjust to changes in the characteristics of the samples .
  • a co- training procedure may be carried out between ⁇ u and the most recently added model in ⁇ E.
  • the technique predicts 5 10 the labels for all of the unlabeled samples .
  • the system selects the samples with the most confident labels 520.
  • the model ⁇ u is updated 530 based upon the selected samples resulting in a set of updated models 540.
  • the system may predict the labels 550 for the unlabeled images
  • the prediction 550 may include the labels and a confidence measure (confidence score) .
  • the prediction value of each tree i denotes a Decision Tree) recited above is regarded as the confidence score .
  • the largest positive prediction value (C_pos) in each tree is found and also the smallest negative prediction value (C_neg) in each tree is found .
  • a confidence ratio as 0.6 is defined, and then the confident samples are selected if its prediction value is larger than 0.6*C_pos or its absolute prediction value is larger than 0.6*abs(C_neg) .
  • the samples with the most confident labels 570 may be selected as likely true labels.
  • the model ⁇ E is updated 580 based upon the selected samples resulting in a set of updated models 590. This process may be repeated for additional unlabeled samples.
  • a self- training procedure may be carried out, which is similar to co- learning, with ⁇ u providing the most confident samples to itself.
  • the system may use a buffer to store the labeled samples until there are enough labeled samples to train a new model to be added . There is no need to hold another buffer for unlabeled samples, since updating the existing model and the co-training framework can handle the samples one by one .
  • FIG. 7 illustrates the resulting technique from combining FIG. 4 , FIG. 5 , and FIG. 6.
  • FIG . 9 illustrates an arrangement of a classification device 1 of the present embodiment.
  • the classification device includes an input section 2 , an information processing section 3 , an output section 4 , and a memory (storage section) 5 (see FIG. 9) .
  • the memory 5 stores plurality of types of statistical models ( a trained statistical model based upon a set of initial (labeled) samples, a first statistical model (the initial boosting model) , and a second statistical model (the second boosting model)) .
  • the information processing section 3 obtains an image of a product to be subj ected to classification (a set of initial, first, and second samples) , and analyzes the image by use of the plurality of types of statistical models stored in the memory 5 , so as to determine whether or not there is a defect in the product in the image .
  • the information processing section 3 outputs a result of the determination via the output section 4.
  • the information processing section 3 is a CPU or a dedicated arithmetic circuit. .
  • the output section 4 is, for example , a display device .
  • the input section 2 is a member which has a function of obtaining the image .
  • the input section 2 is exemplified by a communication device which receives the image and a port which connects a storage medium.
  • the plurality of types of statistical models may be manually supplied to the classification device 1 (stored in the memory 5) by a user.
  • the information processing section 3 trains a statistical model in accordance with the method as described earlier, so as to determine the product by use of the statistical model thus trained.
  • the information processing section 3 may determine the product by combining a plurality of statistical models.
  • the information processing section 3 may receive a set of labeled samples via the input section 2.
  • the labeled samples are samples which are classified into one of a plurality of categories in advance by a preset statistical model.
  • Each tree node value is defined as
  • This poster-probability ratio can be regarded confidence value.
  • Classifier A predicts larger absolute value (more confident) than classifier B .

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Artificial Intelligence (AREA)
  • Computer Vision & Pattern Recognition (AREA)
  • General Physics & Mathematics (AREA)
  • Evolutionary Computation (AREA)
  • Physics & Mathematics (AREA)
  • Life Sciences & Earth Sciences (AREA)
  • Bioinformatics & Cheminformatics (AREA)
  • General Engineering & Computer Science (AREA)
  • Evolutionary Biology (AREA)
  • Bioinformatics & Computational Biology (AREA)
  • Databases & Information Systems (AREA)
  • Computing Systems (AREA)
  • Health & Medical Sciences (AREA)
  • Multimedia (AREA)
  • Software Systems (AREA)
  • General Health & Medical Sciences (AREA)
  • Medical Informatics (AREA)
  • Image Analysis (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

A method for classification of samples comprising providing a trained statistical model based upon a set of initial samples. Receiving a set of first samples and training a first statistical model base upon the first set of samples, where the first statistical model is of the same class as the trained statistical model. Receiving a set of second samples and training a second statistical model base upon the second set of samples, where the second statistical model is of the same class as the trained statistical model. The trained statistical model, the first statistical model, and the second statistical model, being independent of each other and collectively used to classify another sample.

Description

DESCRIPTION
TITLE OF INVENTION : SUPERVISED AND SEMI-SUPERVISED ONLINE BOOSTING ALGORITHM IN MACHINE LEARNING FRAMEWORK
TECHNICAL FIELD
The present invention relates to online learning of a classifier in a machine learning framework.
BACKGROUND ART
The present invention relates to online learning of a classifier in a machine learning framework that includes supervised and semi-supervised online learning algorithms in a machine learning framework.
Such classifiers may be trained using training samples, and then used in a so-called testing or prediction stage , to classify test samples . For example, such classifiers may be used in an automated factory inspection application to detect defects in an image of a product. In this case , a "sample" may consist of a set of data derived from an image or pixels in a region of the image, and the task of the classifier is to classify "sample" as "defect" (positive class) or "non-defect" (negative class) . As another example , such classifiers may be used to classify defects into different categories. Machine learning applications usually include two stages: training stage and prediction stage. In the training stage, traditionally all training samples are available as a batch at the beginning; a statistical model can then be trained based on the training samples. In the prediction stage, the statistical model obtained from the training stage is then used to classify new samples into different categories. However, in some machine learning tasks, not all the training samples are available at the initial training stage . More samples will be acquired and may be labeled as time goes on . It is desirable to use this new information to refine and improve the classifier for future usage. In some other applications, the data properties might be changing over time, or even not generated from any distribution. The model trained with the initial samples can only accommodate the initial properties, so it might become useless as new samples arrive over time .
One way of solving this problem would be re-training the model with all samples including the initial samples and the newly obtained samples. However, re-training from scratch will usually be time-consuming, and it's not efficient to perform the re-training frequently in an online application. Therefore, a mechanism is desirable such that the model can be updated by the newly obtained samples in an online fashion during the prediction stage without complete re- training.
Lots of statistical models can be used as the classifier including Normal Support Vector Machines, Decision Trees, Boosted Decision Trees and Neural Networks . The Boosted Decision Tree (or Boosting Tree) may be the statistical model of the classifier. Thus each of the types of statistical models may be generally referred to as a respective class.
Boosting is based on the use of an ensemble of weak classifiers that is not constrained to specific classifiers. In a boosting algorithm, a weak classifier is trained with respect to the samples and the associated weights. At each iteration, a weak classifier is added to form a final strong classifier. The weak classifiers are typically weighted by their accuracy. After a weak classifier is added, the samples are reweighted : the weights of the misclassified samples will be increased, and the samples that are classified correctly will have decreased weights. Weak classifiers that are subsequently added will be trained based on the re-weighted samples, focusing more on the misclassified samples .
The weak classifier may be in the form of a Decision Tree (DT) . Decision Tree (DT) is a binary tree (i. e. tree where each non-leaf node has exactly 2 child nodes) . The training and prediction of the Decision Tree (DT) is described as follows .
Training Decision Trees. The tree is built recursively, starting from the root node . The whole training data (feature vectors and the responses) are used to split the root node . In each node the optimum decision rule (i. e . the best "primary" split) is found based on some criteria (gini " purity" criteria is used for classification) . Then, if necessary, the surrogate splits are found that resemble at the most the results of the primary split on the training data; all data are divided using the primary and the surrogate splits (just like it is done in the prediction procedure) between the left and the right child node . Then the procedure recursively splits both left and right nodes . At each node the recursive procedure may stop (i. e . stop splitting the node further) . When the tree is built, it may be pruned using cross-validation procedure, if need . That is, some branches of the tree that may lead to the model overfitting are cut off. Normally, this procedure is only applied to standalone decision trees, while tree ensembles usually build small enough trees and use their own protection schemes against overfitting.
Predicting with DT: to reach a leaf node, and thus to obtain a response for the input feature vector, the prediction procedure starts with the root node . From each non-leaf node the procedure goes to the left, or to the right based on the value of a certain variable . If the value of the variable is less the threshold . This pair is called split. Once a leaf node is reached, the value assigned to this node is used as the output of prediction procedure . The foregoing and other objectives, features, and advantages of the invention may be more readily understood upon consideration of the following detailed description of the invention, taken in conjunction with the accompanying drawings .
SUMMARY OF INVENTION
One embodiment of the present invention discloses a method for classification of samples including:
(a) providing a trained statistical model based upon a set of initial samples;
(b) receiving a set of first samples;
(c) training a first statistical model based upon said first set of samples, said first statistical model being of the same class as said trained statistical model;
(d) receiving a set of second samples;
(e) training a second statistical model based upon said second set of samples, said second statistical model being of the same class as said trained statistical model;
(f) wherein said trained statistical model, said first statistical model, and said second statistical model, are independent of each other and collectively used to classify another sample .
The trained statistical model and the first statistical model are of the same class because they use the same statistical model type. For example, the trained statistical model and the first statistical model can both be Decision Tree statistical model, or they can both be Support Vector Machine statistical model.
Step (a) is a step in which a sample classification apparatus trains an initial statistical model based on a set of initial samples. That is, the initial statistical model is automatically trained with a set of initial samples without user intervention . The initial statistical model can be Decision Tree or Support Vector Machine (or any other machine learning methods) .
One embodiment of the present invention discloses a method for classification of samples including:
(a) providing a trained statistical model based upon a set of initial samples;
(b) receiving a first sample;
(c) further training said initial statistical model based upon said first sample ;
(d) wherein said further training of said initial statistical model processes said first sample as if it were already included in said trained statistical model.
One embodiment of the present invention discloses a method for classification of samples including:
(a) providing a first statistical model based upon a set of samples wherein its evaluation on positive samples has high positive recall with low precision;
(b) providing a second statistical model based upon a set of samples wherein its evaluation on positive samples has high precision with low positive recall;
(c) classifying a sample based upon said first statistical model;
(d) selectively based upon said classifying said sample based upon said first statistical model further classifying said sample based upon said second statistical model.
The high positive recall means that the percentage of true positive samples found by the statistical model with respect to all the ground-truth positive samples is high.
One embodiment of the present invention discloses a method for classification of samples including:
(a) providing a trained statistical model based upon a set of initial labeled samples;
(b) receiving a set of first non-labeled samples;
(c) training a first statistical model based upon said first set of non-labeled samples, where said first statistical model is of the same class as said trained statistical model, based upon predicting labels for said non-labeled samples and selecting said non-labeled samples based upon a confidence score . BRIEF DESCRIPTION OF DRAWINGS
FIG. 1 illustrates an off-line and an on-line boosting technique .
FIG . 2 illustrates a cascade prediction for on-line boosting.
FIG. 3 illustrates an initial training model.
FIG. 4 illustrates on-line boosting with additional labeled samples.
FIG. 5 illustrates on-line boosting with additional un- labeled samples.
FIG. 6 illustrates on-line self-training.
FIG. 7 illustrates a more comprehensive boosting technique .
FIG. 8 illustrates semi-supervised prediction .
FIG. 9 illustrates an arrangement of a classification device in accordance with an embodiment of the present invention.
DETAILED DESCRIPTION OF TH E PREFERRED EMBODIMENT
The boosting technique may supplement the training on an image by image basis, or group of images by group of images basis, by expanding the model (statistical model) . The statistical model is an algorithm (or a program) for classifying a sample into any of a plurality of predetermined categories . Suppose with the batch of initial training samples, an ensemble of weak classifiers has already been obtained, then this ensemble can be expanded to a larger one as new training c samples arrive . With the initial training samples, a model 0 (a first statistical model) , which is an ensemble of weak classifiers L i - ^>—M ( js trained. The prediction of on a testing sample x may be made by a weighted combination of
M
the prediction of each weak classifier: i=1 , in which ; , l,...M are wejghi-s 0f e ac classifier. The label of sample x may be given by ^I WI ^ which is the sign of the output.
In the online stage, the new training samples are collected and stored until there are a sufficient number of samples to effectively train another new model. The model r trained by the z -th group of samples may be denoted as ' , which is also an ensemble of weak classifiers,
Figure imgf000011_0001
The final predicted label C can be made by a weighted combination of all the models available up until the
current stage as follows
Figure imgf000011_0002
, where β; is the weight for each model C;.
Referring to FIG. 1 , an exemplary framework for an online boosting technique described above is illustrated. An initial set of samples 100 are trained to determine an initial boosting model (a trained statistical model) CO . As another group of images are obtained as a result of subsequent processing, a first group of additional training samples 1 10 are obtained to determine a first boosting model (a first statistical model) C I 1 12 based upon this group of images, and not the initial training samples 100 or initial boosting model CO 102. As a further group of images are obtained as a result of further subsequent processing, a second group of additional training samples 120 are obtained to determine a second boosting model (a second statistical model) C2 122 based upon this further group of images, and not the training samples 100 / 1 10 or boosting models C0 / C 1 102 , 1 12. This process may be continued for additional groups of subsequent images . The result of the available boosting models CO, C I , Ck may be combined using a weighted sum 130 to determine a final prediction 140.
Accordingly, all the models C i - 0,...,K may ke trained with disj ointed sets of training samples to utilize the models in a flexible manner. The weights can be determined by the importance of each group of samples, by the order that each group of samples arrives, removal of selected models determined to be of limited value, or any other suitable manner. This technique may be referred to as a voting mechanism, with each model acting as an expert, with the final results being determined by them together with different weights. The image buffer of the group of images may be cleared when the group is processed to determine a suitable model.
The on-line boosting technique may also update the existing model. In many cases, the optimal model that can be achieved for an online application would be the batch model re-trained with all the training samples available up until the current stage . To approach this goal, the online boosting technique may correspond to the batch boosting technique . The model trained with the initial training samples may be updated with the newly added samples, so that the updated model would be approximately the same as the batch model re-trained with all training samples.
By way of example, the input technique may be a group of weak classifiers learned so far Α>Ζ _ 1>·· ^ ^ a new training sample s to arrive (with ^ as it's ground truth label) , and an incremental learning technique which utilizes the new trainin sample to update the existing weak classifier
Figure imgf000013_0001
BaseUpdate L^s) _ An exernp lary s e t o f details may be as follows .
Set the new sample's weight as λ s = 1 ;
For each weak classifier L],i = \,...M .
Generate
Figure imgf000013_0002
Do k times: L = BaseUpdate^^s) . Set
Figure imgf000014_0001
, in which
Update the new sample's weight:
Update the summation of all samples' weights: . wt = wt + , .
The final prediction of a sample x can be made as
Figure imgf000014_0002
'' is the summation of the weights of all samples that have been used until the current stage (excluding the weight of new sample s ) , and ^ is the number of all past samples excluding the new sample s . When the new sample is misclassified by a weak classifier -yJ ) would be positive , so the weight J associated with this sample is increased when presented to the next weak classifier; otherwise, the weight λ will be decreased . The principal idea of the online boosting technique is to process the new sample as if it were already included in the initial training set, i. e. , also passing it from the first weak classifier to the last, and modifying the sample's weight at each step before passing to the next classifier. By using such a technique the updating technique does not require the samples to arrive in a group; instead, it can process the samples one by one.
One or more online boosting techniques, such as the expanding models technique and/ or the updating the initial model technique may be combined together to achieve improved performance . In the following, the expanded model is denoted as ^E and the updated model is denoted as ^u .
If the positive samples and negative samples are unbalanced, the two models will focus on different aspects of the classification . Without losing generality, it is assumed that the number of negative samples is much larger than the number of positive samples, and that finding positive samples is more valuable . Then two different kinds of performance evaluation on positive samples may be defined: ( 1 ) recall is defined as the percentage of true positive samples found by the model in all the ground-truth positive samples; (2) precision is defined as the percentage of true positive samples found by the model in all the positive samples predicted by the model. In other words, the true defects are classified properly but also include a lot of non-defects classified improperly. Also, in other words, a lot of the true defects are improperly classified as non-defects and only a few true defects are classified as defects.
Experimental results have shown that ^u will provide results with high positive recall but low precision, and ^E will provide results with high precision and low recall. To get both high positive recall and high precision, these two models may be combined together. It is desirable to make a prediction of a test sample using and ^u separately, and take their weighted sum as the final prediction S ME{X)+ MU(X)) . As the online stage proceeds, ^E will be expanded, so that there will be more and more base weak classifiers in ^E .
To make a prediction with ^E , all weak classifiers may be used to make the prediction, which might be time-consuming.
Therefore , the use of a cascaded prediction may be used , which saves a lot of computational burden by avoiding using M E m■ many unnecessary cases .
The joint technique is further described referring to FIG.
2. First Mu 200 is used to make a prediction 2 10. If the sample is predicted as negative 220 , then the system may return - 1 230 as the final output. In this case it is likely that the sample is a defect since tends this way. If the sample is predicted as positive 240 , then model 250 is used to make another prediction 260. In this case, the prediction of
^u is not that accurate so it is preferable to also use ^£ to obtain further characterization . The system then determines the weighted combination of the two predictions as the final positive output 270 or final negative output 280.
^u tends to provide results with high recall, which means, most of the positive samples will be included in those samples predicted as positive by ^u . That is to say, if a sample is predicted as negative by ^υ , it's most likely that it is a true negative . If it's predicted as positive, it is not sure whether it's true positive or not; then combine it with the prediction result by model ^E to make further confirmation. The model E may be used primarily when a sample is predicted as positive in the first stage, which is a smaller fraction among all samples . Since the number of negative samples is larger than the number of positive samples, ^u will be enough to make the prediction in many cases, and the time required to go through all weak classifiers in will be saved in many cases.
In the aforementione techniques, the updating of the existing weak classifier
Figure imgf000017_0001
was described. The technique may be specific, if desired, to a particular type of baseline classifier. For example, if the decision tree is trained, and it is desirable to update it with a new sample, the system may first pass the sample from the root to corresponding branch according to the criteria at each internal node, and recalculate the "purity" score for each node . If the purity score of a node is not high enough, it should be re-split based on all previous samples and this new sample . Therefore , some information should be maintained about previous samples so that it's possible to recalculate the purity score of each node . For variables with discrete value, this statistical information can be obtained by counting the number of samples with each value ; however, if the variable is real-valued, to precisely maintain the distribution information, all the previous feature values that have appeared should be stored for future use . In online learning, when using a decision tree as the base classifier in the boosting model, and the feature of each sample is real-valued, all the feature values that have appeared would normally be stored to update the initial model, which is determined by the characteristics of decision tree . This is highly memory-consuming as the number of samples that must be stored keeps increasing. A more compact representation of the sample features is desirable in a manner that does not result in a significant loss of accuracy to reduce memory usage.
In the initial stage, the system obtains the representative samples of initial training samples by using a suitable technique, such as a K-means clustering technique on positive and negative samples separately. The cluster centers are selected as the representative samples, denoted as i x i ~ †i
1 " > , and their weights are taken as the number of is i— 1 fi samples in the corresponding cluster, denoted as 1 " > .
In the online stage, the new training samples are added
\ x i— 1 \
to the previous representative sample set 1 '' ' with each new training sample assigned a weight of 1 . A weighted k- means is performed on this enlarged set as follows:
( 1 ) Randomly select n points as the initial cluster centers {^nter = \,...n} .
(2) Assign each sample x to the nearest cluster center: = argmin||x- cente^ ||2 x <= c
if ' , then ' . (3) Re-calculate the cluster center by taking the weighted average of all samples in the cluster: center =
Figure imgf000019_0001
, and the weight associated with the center
Figure imgf000019_0002
(4) Calculate the cluster error: .
(5) If the error is below some threshold, or doesn't change a lot compared with previous iteration, exit the
and the associated weights
Figure imgf000019_0003
as the final compact representation of all samples;
(6) If the error doesn't converge, replace the old centers {center^ = \,...n) with new centers {center^ = 1,...^ &nd b¾ck tQ step
2.
Using this technique, the statistical distribution information contained in the entire sample set is dynamically maintained, while the memory footprint and the computational load is controlled as constant, proportional to the number of centers used in the K-means clustering technique. Although the compact represented is described with respect to updating decision trees, this representation is also useful for other types of classifiers, as long as the classifier is influenced by the data density.
In supervised learning as previously described, training samples may be "labeled" when used to train a statistical model. The " labeled samples " means samples which are classified into one of plurality of categories in advance by human being or by a preset statistical model. Typically, the labels of samples are provided by human being. Occasionally, an intelligent statistical model can be used to label the samples, however in this case, it is required that the labels provided by the statistical model conform to the understanding of human being, that is the labels must be "meaningful" and "correct" to human being.
This means that the "ground-truth" class label of each sample is available at the time of training. For example , in a defect detection context, a sample may be labeled as either "defect" or "non-defect" in order to "teach" a statistical model/ classifier. The labels may be provided by a human operator or expert. In many applications, obtaining the labeled samples for training are expensive, difficult and/ or time-consuming. If a substantial number of unlabeled samples are available, these unlabeled samples may also be used to assist in improving the model, which reduces the burden associated with labeling the samples.
For applications where a limited number of labeled samples are available, but a large number of unlabeled samples are available, it may be desirable to use semi- supervised learning to exploit the useful information embedded in unlabeled samples. This means that samples that are not labeled, e . g. manually by an operator, may be used for training the statistical model of a classifier. This may be beneficial in many applications, since it may be relatively expensive (in terms of time or other resources) to provide labels for the purpose of training statistical classifiers.
In the online stage(s) , if the incoming group of samples are labeled, the technique uses the supervised online boosting model described above, i. e . the initial model is updated and a new model is added. If the incoming group of samples are unlabeled , the system may use two models, namely, a newest added model and/ or an updated initial model. Both models can predict the labels for these unlabeled samples, and the samples with the most confident labels are selected. Supposing the most confident labels are just the pseudo ground truth labels, each model will provide these samples and their labels to update the other model .
The samples used for training are usually labeled by experts; however, the labeling might be difficult, expensive or time-consuming, while the unlabeled samples are easier to collect. With limited amount of labeled samples, the obtained classifier might be biased or insufficient to distinguish different classes . Given the limited labeled samples, an effective technique to train a classifier should exploit the information in the large amount of unlabeled samples, which is generally well-known as semi-supervised learning.
A semi-supervised online learning boosting tree framework may make use of the information contained in a large amount of unlabeled data. Their distribution gives some information about the intrinsic connections between data points, but this information is hard to exploit using traditional supervised learning techniques, since the samples do not have class labels associated with them.
A semi-supervised technique, generally referred to as co- training may be utilized . By way of general description there are two different classifiers and trained on labeled samples . Firstly is used to provide (predict) labels for the unlabeled samples . Then, predicted samples with the most confident labels are selected, removed from the unlabeled set, and added to the labeled set associated with the predicted labels. is re-trained with the expanded labeled set. Then, the role of and is changed, and the above steps are repeated. In this stage , is re-trained based on predictions from the updated . This co-training procedure may continue, until some convergence criteria is met.
Referring to FIG . 3, with the initial training samples 300, the system has an initial model ^u trained 3 10. In the subsequent stages, depending on the nature of the received samples, one or more techniques may be applied.
Referring to FIG. 4, if the incoming group of samples 4 10 ,
420 is labeled, Μυ 435 may be updated 430 with these samples . In this manner, the initial model is updated based upon the subsequent samples, and therefore reflects the total set of available samples. A new boosting model M E' 440 based upon a set of samples is added 450 to ^460. In this manner, new boosting models are determined based upon the labeled images each of which is characteristic of the newly received samples, which are then combined with previous newly determined boosting models. In this manner, the system is more suitable to adjust to changes in the characteristics of the samples .
Referring to FIG . 5, if the incoming group of samples is unlabeled 500 , and the system has two models ^u and } then a co- training procedure may be carried out between ^u and the most recently added model in ^E. In general, the technique predicts 5 10 the labels for all of the unlabeled samples . Based upon the prediction, the system selects the samples with the most confident labels 520. The model ^u is updated 530 based upon the selected samples resulting in a set of updated models 540. Based upon the models 540 the system may predict the labels 550 for the unlabeled images
560. The prediction 550 may include the labels and a confidence measure (confidence score) . The prediction value of each tree
Figure imgf000024_0001
(i denotes a Decision Tree) recited above is regarded as the confidence score . Then the largest positive prediction value (C_pos) in each tree is found and also the smallest negative prediction value (C_neg) in each tree is found . Next, a confidence ratio as 0.6 is defined, and then the confident samples are selected if its prediction value is larger than 0.6*C_pos or its absolute prediction value is larger than 0.6*abs(C_neg) .
The samples with the most confident labels 570 may be selected as likely true labels. The model ^E is updated 580 based upon the selected samples resulting in a set of updated models 590. This process may be repeated for additional unlabeled samples.
Referring to FIG . 6 , if the subsequent group of samples is unlabeled and the system only has model ^u , a self- training procedure may be carried out, which is similar to co- learning, with ^u providing the most confident samples to itself.
If the online samples are arriving one by one instead of group by group, the system may use a buffer to store the labeled samples until there are enough labeled samples to train a new model to be added . There is no need to hold another buffer for unlabeled samples, since updating the existing model and the co-training framework can handle the samples one by one .
FIG. 7 illustrates the resulting technique from combining FIG. 4 , FIG. 5 , and FIG. 6.
In the prediction of semi-supervised online learning, the initial model ^u and each of ^ produce a prediction label. Then these labels are combined by a weighted summation to generate the final predicted label . This prediction procedure is illustrated in FIG. 8.
FIG . 9 illustrates an arrangement of a classification device 1 of the present embodiment. The classification device includes an input section 2 , an information processing section 3 , an output section 4 , and a memory (storage section) 5 (see FIG. 9) . The memory 5 stores plurality of types of statistical models ( a trained statistical model based upon a set of initial (labeled) samples, a first statistical model (the initial boosting model) , and a second statistical model (the second boosting model)) .
The information processing section 3 obtains an image of a product to be subj ected to classification (a set of initial, first, and second samples) , and analyzes the image by use of the plurality of types of statistical models stored in the memory 5 , so as to determine whether or not there is a defect in the product in the image . The information processing section 3 outputs a result of the determination via the output section 4. The information processing section 3 is a CPU or a dedicated arithmetic circuit. . The output section 4 is, for example , a display device . The input section 2 is a member which has a function of obtaining the image . The input section 2 is exemplified by a communication device which receives the image and a port which connects a storage medium.
The plurality of types of statistical models may be manually supplied to the classification device 1 (stored in the memory 5) by a user.
The information processing section 3 trains a statistical model in accordance with the method as described earlier, so as to determine the product by use of the statistical model thus trained. The information processing section 3 may determine the product by combining a plurality of statistical models.
The information processing section 3 may receive a set of labeled samples via the input section 2. The labeled samples are samples which are classified into one of a plurality of categories in advance by a preset statistical model.
The following description discusses how to select samples in co-training.
Predict the labels of unlabeled samples and select the most confident samples : Each tree node value is defined as
Figure imgf000027_0001
The summation of M trees' results:
- Suppose trees are independent, the posteriori-
M
p(x) = Π pm (x) probability of the sample being positive is: m=l
M
M
M
nΠ(l- m( ^ \-p{x)
m=l
This poster-probability ratio can be regarded confidence value.
• Fixed number:
- 5000 Samples with largest absolute predicted value; · Confidence ratio:
- Get the largest possible value(positive) _pos suppose in each tree the sample will be classified into the node with larger value, as well as the smallest possible value (negative) C_neg;
- Define a confidence ratio as 0.6, the confident samples are selected as:
a positive sample with its label C_x > 0.6 * C_pos
a negative sample with label C_x and abs(C_x) > 0.6
• abs(C_neg)
· Max difference:
- Selecting samples from classifier A for classifier B:
Classifier A and Classifier B have agreed on the sign;
Classifier A predicts larger absolute value (more confident) than classifier B .
The terms and expressions which have been employed in the foregoing specification are used therein as terms of description and not of limitation, and there is no intention, in the use of such terms and expressions, of excluding equivalents of the features shown and described or portions thereof, it being recognized that the scope of the invention is defined and limited only by the claims which follow.

Claims

1 . A method for classification of samples comprising:
(a) providing a trained statistical model based upon a set of initial samples;
(b) receiving a set of first samples;
(c) training a first statistical model based upon said first set of samples, said first statistical model being of the same class as said trained statistical model;
(d) receiving a set of second samples;
(e) training a second statistical model based upon said second set of samples, said second statistical model being of the same class as said trained statistical model;
(f) wherein said trained statistical model, said first statistical model, and said second statistical model, are independent of each other and collectively used to classify another sample .
2. The method of claim 1 wherein said trained statistical model is a boosting model.
3. A method for classification of samples comprising:
(a) providing a trained statistical model based upon a set of initial samples ;
(b) receiving a first sample ; (c) further training said initial statistical model based upon said first sample;
(d) wherein said further training of said initial statistical model processes said first sample as if it were already included in said trained statistical model.
4. The method of claim 3 wherein said processing is from a first weak classifier to a last weak classifier, and modifying a sample's weight at each step before passing to the next classifier.
5. A method for classification of samples comprising:
(a) providing a first statistical model based upon a set of samples wherein its evaluation on positive samples has high positive recall with low precision;
(b) providing a second statistical model based upon a set of samples wherein its evaluation on positive samples has high precision with low positive recall;
(c) classifying a sample . based upon said first statistical model;
(d) selectively based upon said classifying said sample based upon said first statistical model further classifying said sample based upon said second statistical model.
6. The method of claim 5 wherein said classifying said sample based upon said first statistical model includes a first output indicating it is likely a defect and a second output indicating it is likely not a defect.
7. The method of claim 6 wherein said selectively based upon said second statistic model is based upon said second output.
8. The method of claim 1 wherein said training said first statistical model is based upon a compact representation of said first set of samples .
9. The method of claim 1 wherein said training said further training said initial statistical model is based upon a compact representation of said first sample.
10. A method for classification of samples comprising:
(a) providing a trained statistical model based upon a set of initial labeled samples;
(b) receiving a set of first non-labeled samples;
(c) training a first statistical model based upon said first set of non-labeled samples, where said first statistical model is of the same class as said trained statistical model, based upon predicting labels for said non-labeled samples and selecting said non-labeled samples based upon a confidence score .
1 1 . The method of claim 10 wherein said first on- labeled samples is more than two samples.
12. The method of claim 1 1 wherein said trained statistical model is a boosting model.
13. The method of claim 3 wherein said trained statistical model is a boosting model.
14. The method of claim 10 wherein said training is based upon at least two different statistical models , each of which are updated .
PCT/JP2012/060391 2011-04-12 2012-04-11 Supervised and semi-supervised online boosting algorithm in machine learning framework Ceased WO2012141332A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US13/085,329 US9053391B2 (en) 2011-04-12 2011-04-12 Supervised and semi-supervised online boosting algorithm in machine learning framework
US13/085,329 2011-04-12

Publications (1)

Publication Number Publication Date
WO2012141332A1 true WO2012141332A1 (en) 2012-10-18

Family

ID=47006416

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/JP2012/060391 Ceased WO2012141332A1 (en) 2011-04-12 2012-04-11 Supervised and semi-supervised online boosting algorithm in machine learning framework

Country Status (2)

Country Link
US (1) US9053391B2 (en)
WO (1) WO2012141332A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10796241B2 (en) 2015-10-30 2020-10-06 International Business Machines Corporation Forecastable supervised labels and corpus sets for training a natural-language processing system

Families Citing this family (44)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2009117741A1 (en) 2008-03-21 2009-09-24 The Trustees Of Columbia University In The City Of New York Decision support control centers
WO2010096783A1 (en) 2009-02-20 2010-08-26 The Trustees Of Columbia University In The City Of New York Dynamic contingency avoidance and mitigation system
AU2012203348B2 (en) 2011-06-08 2013-11-07 Accenture Global Services Limited High-risk procurement analytics and scoring system
US9031897B2 (en) 2012-03-23 2015-05-12 Nuance Communications, Inc. Techniques for evaluation, building and/or retraining of a classification model
WO2014075108A2 (en) * 2012-11-09 2014-05-15 The Trustees Of Columbia University In The City Of New York Forecasting system using machine learning and ensemble methods
CN103186775B (en) * 2013-03-27 2016-01-20 西安电子科技大学 Based on the human motion identification method of mix description
US20150278707A1 (en) * 2014-03-31 2015-10-01 International Business Machines Corporation Predictive space aggregated regression
US20160267396A1 (en) * 2015-03-09 2016-09-15 Skytree, Inc. System and Method for Using Machine Learning to Generate a Model from Audited Data
US10210464B2 (en) 2015-03-11 2019-02-19 Qualcomm Incorporated Online training for object recognition system
US10122762B2 (en) * 2016-06-15 2018-11-06 Empow Cyber Security Ltd. Classification of security rules
US11228610B2 (en) 2016-06-15 2022-01-18 Cybereason Inc. System and method for classifying cyber security threats using natural language processing
JP6633462B2 (en) * 2016-06-29 2020-01-22 株式会社東芝 Information processing apparatus and information processing method
CN106548210B (en) * 2016-10-31 2021-02-05 腾讯科技(深圳)有限公司 Credit user classification method and device based on machine learning model training
US11049026B2 (en) * 2017-03-20 2021-06-29 Micro Focus Llc Updating ground truth data in a security management platform
WO2018187948A1 (en) * 2017-04-12 2018-10-18 邹霞 Local repairing method for machine learning model
US10482000B2 (en) 2017-04-24 2019-11-19 Microsoft Technology Licensing, Llc Machine learned decision guidance for alerts originating from monitoring systems
CN107292330B (en) * 2017-05-02 2021-08-06 南京航空航天大学 An Iterative Label Noise Recognition Algorithm Based on Dual Information of Supervised Learning and Semi-Supervised Learning
CN107977668A (en) * 2017-07-28 2018-05-01 北京物灵智能科技有限公司 A kind of robot graphics' recognition methods and system
US10904276B2 (en) 2017-09-14 2021-01-26 Nokia Technologies Oy Systems and methods for anomaly detection
KR102782965B1 (en) 2017-11-13 2025-03-18 삼성전자주식회사 Method and apparatus of artificial neural network quantization
CN108108351B (en) * 2017-12-05 2020-05-22 华南理工大学 A Text Sentiment Classification Method Based on Deep Learning Combination Model
JP7054436B2 (en) * 2017-12-14 2022-04-14 オムロン株式会社 Detection system, information processing device, evaluation method and program
CN112836792A (en) 2017-12-29 2021-05-25 华为技术有限公司 A kind of training method and device of neural network model
CN109325525A (en) * 2018-08-31 2019-02-12 阿里巴巴集团控股有限公司 Sample attribute evaluation model training method, device and server
US11151410B2 (en) 2018-09-07 2021-10-19 International Business Machines Corporation Generating and augmenting transfer learning datasets with pseudo-labeled images
CN109376240A (en) * 2018-10-11 2019-02-22 平安科技(深圳)有限公司 A text analysis method and terminal
CN109543727B (en) * 2018-11-07 2022-12-20 复旦大学 A semi-supervised anomaly detection method based on competitive reconstruction learning
US10699192B1 (en) * 2019-01-31 2020-06-30 StradVision, Inc. Method for optimizing hyperparameters of auto-labeling device which auto-labels training images for use in deep learning network to analyze images with high precision, and optimizing device using the same
CN110032606B (en) * 2019-03-29 2021-05-14 创新先进技术有限公司 A kind of sample clustering method and device
US12051187B2 (en) * 2019-08-19 2024-07-30 Lg Electronics Inc. AI-based new learning model generation system for vision inspection on product production line
KR102885556B1 (en) 2019-09-16 2025-11-13 한국전자통신연구원 clustering method and apparatus using ranking-based network embedding
CN110705630A (en) * 2019-09-27 2020-01-17 聚时科技(上海)有限公司 Semi-supervised learning type target detection neural network training method, device and application
JP7363407B2 (en) * 2019-11-21 2023-10-18 オムロン株式会社 Additional learning devices, methods and programs
KR102364881B1 (en) * 2020-03-24 2022-02-18 주식회사 에스아이에이 Training method for model that imitates expert and apparatus thereof
EP3885989A1 (en) * 2020-03-26 2021-09-29 Another Brain Anomaly detection based on an autoencoder and clustering
GB202008030D0 (en) * 2020-05-28 2020-07-15 Samsung Electronics Co Ltd Learning the prediction distribution for semi-supervised learning with normalising flows
US11995566B2 (en) 2020-06-02 2024-05-28 Nec Corporation Machine learning knowledge management based on lifelong boosting in presence of less data
WO2022119811A1 (en) * 2020-12-02 2022-06-09 Innsightful, Inc. Health monitoring system
CN112528030A (en) * 2021-02-09 2021-03-19 中关村科学城城市大脑股份有限公司 Semi-supervised learning method and system for text classification
DE112021001736T5 (en) * 2021-03-26 2023-01-05 Beijing Zhongxiangying Technology Co., Ltd. DATA PROCESSING METHODS AND DEVICES, ELECTRONIC DEVICE AND STORAGE MEDIA
CN113723467A (en) * 2021-08-05 2021-11-30 武汉精创电子技术有限公司 Sample collection method, device and equipment for defect detection
US20230359928A1 (en) * 2022-05-03 2023-11-09 Adobe Inc. Transfer learning using decision tree based machine learning models
US12482242B1 (en) * 2022-07-29 2025-11-25 Landingai Inc. Data centric mislabel detection
CN118537034A (en) * 2023-02-14 2024-08-23 华为云计算技术有限公司 Potential customer mining method, device and computing equipment

Family Cites Families (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7024033B2 (en) 2001-12-08 2006-04-04 Microsoft Corp. Method for boosting the performance of machine-learning classifiers
US7292982B1 (en) 2003-05-29 2007-11-06 At&T Corp. Active labeling for spoken language understanding
US7533019B1 (en) 2003-12-23 2009-05-12 At&T Intellectual Property Ii, L.P. System and method for unsupervised and active learning for automatic speech recognition
US7587064B2 (en) 2004-02-03 2009-09-08 Hrl Laboratories, Llc Active learning system for object fingerprinting
JP2008529067A (en) 2005-01-21 2008-07-31 フォトン・ダイナミクス・インコーポレーテッド Automatic defect repair system
US20070053563A1 (en) 2005-03-09 2007-03-08 Zhuowen Tu Probabilistic boosting tree framework for learning discriminative models
US7562060B2 (en) 2006-03-31 2009-07-14 Yahoo! Inc. Large scale semi-supervised linear support vector machines
CN101325691B (en) 2007-06-14 2010-08-18 清华大学 Tracking method and tracking device for fusing multiple observation models with different lifetimes

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
NAONORI UEDA: "Ensemble Learning", IPSJ TRANSACTIONS ON COMPUTER VISION AND IMAGE MEDIA, vol. 46, 15 October 2005 (2005-10-15), pages 11 - 20 *
R. POLIKAR ET AL.: "LEARN++: an incremental learning algorithm for multilayer perceptron networks", PROCEEDINGS OF 2000 IEEE INTERNATIONAL CONFERENCE ON ACOUSTICS, SPEECH, AND SIGNAL PROCESSING 2000, vol. 6, 2000, pages 3414 - 3417, XP010505630 *
TAKUYA KIDERA ET AL.: "An Incremental Learning Algorithm of Ensemble Classifier Systems", PROCEEDINGS OF INTERNATIONAL JOINT CONFERENCE ON NEURAL NETWORKS 2006, 2006, pages 3423 *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10796241B2 (en) 2015-10-30 2020-10-06 International Business Machines Corporation Forecastable supervised labels and corpus sets for training a natural-language processing system

Also Published As

Publication number Publication date
US9053391B2 (en) 2015-06-09
US20120263376A1 (en) 2012-10-18

Similar Documents

Publication Publication Date Title
US9053391B2 (en) Supervised and semi-supervised online boosting algorithm in machine learning framework
US10719780B2 (en) Efficient machine learning method
TWI466037B (en) Multiple-instance pruning for learning efficient cascade detectors
CN106951825B (en) Face image quality evaluation system and implementation method
US9053358B2 (en) Learning device for generating a classifier for detection of a target
KR20200012334A (en) Method for detecting defects in semiconductor device
CN112529210A (en) Model training method, device and computer readable storage medium
CN112819065A (en) Unsupervised pedestrian sample mining method and unsupervised pedestrian sample mining system based on multi-clustering information
US20100290700A1 (en) Information processing device and method, learning device and method, programs, and information processing system
CN104966105A (en) Robust machine error retrieving method and system
EP4162408A1 (en) Method and apparatus for enhancing performance of machine learning classification task
JP6955233B2 (en) Predictive model creation device, predictive model creation method, and predictive model creation program
JP6988995B2 (en) Image generator, image generator and image generator
CN105069483B (en) A method for testing on categorical datasets
CN112883990A (en) Data classification method and device, computer storage medium and electronic equipment
CN114333040B (en) A multi-level target detection method and system
CN112200862B (en) Training method of target detection model, target detection method and device
CN112201300A (en) A method for protein subcellular localization based on deep image features and threshold learning strategy
CN117876383A (en) A road surface strip crack detection method based on yolov5l
Speth et al. Automated Label Noise Identification for Facial Attribute Recognition.
CN115201394A (en) Multi-component transformer oil chromatography online monitoring method and related device
CN119474785A (en) Visual real-time monitoring method and system for unbalanced bending moment of bridge rotation
CN112309375B (en) Training and testing methods, devices, equipment and storage media for speech recognition models
CN116502093B (en) Target detection data selection method and device based on active learning
Chen et al. Online vehicle logo recognition using Cauchy prior logistic regression

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 12771860

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 12771860

Country of ref document: EP

Kind code of ref document: A1