[go: up one dir, main page]

CN104408129A - Classifier model establishment method based on distance from point to local feature space - Google Patents

Classifier model establishment method based on distance from point to local feature space Download PDF

Info

Publication number
CN104408129A
CN104408129A CN201410699884.4A CN201410699884A CN104408129A CN 104408129 A CN104408129 A CN 104408129A CN 201410699884 A CN201410699884 A CN 201410699884A CN 104408129 A CN104408129 A CN 104408129A
Authority
CN
China
Prior art keywords
category
unknown
feature space
local feature
point
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.)
Pending
Application number
CN201410699884.4A
Other languages
Chinese (zh)
Inventor
李波
王运庆
张晓龙
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.)
Wuhan University of Science and Technology WHUST
Original Assignee
Wuhan University of Science and Technology WHUST
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 Wuhan University of Science and Technology WHUST filed Critical Wuhan University of Science and Technology WHUST
Priority to CN201410699884.4A priority Critical patent/CN104408129A/en
Publication of CN104408129A publication Critical patent/CN104408129A/en
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/30Information retrieval; Database structures therefor; File system structures therefor of unstructured textual data
    • G06F16/35Clustering; Classification
    • G06F16/355Creation or modification of classes or clusters

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

本发明涉及一种基于点到局部特征空间距离的分类器模型建立方法。其技术方案是:对于任一未知类别的样本点Xi,采用K近邻方法确定任一未知类别的样本点Xi的K个已知类别为cj(j=1,2,...L)的近邻点,再分别组成类别为cj(j=1,2,...L)的局部特征空间,计算未知类别的样本点Xi到每一个具有不同类别的局部特征空间的欧氏距离,然后选择到未知类别样本点Xi欧氏距离最小的局部特征空间的类别,作为未知类别样本点Xi的类别。本发明能有效地抑制噪声或奇异点对数据类别预测的干扰,增强了分类器模型的鲁棒性能,提高了未知类别的样本点的类别预测效果。The invention relates to a method for establishing a classifier model based on the distance from a point to a local feature space. The technical solution is: for any sample point X i of unknown category, use the K nearest neighbor method to determine the K known categories of sample point X i of any unknown category as c j (j=1,2,...L ), and then form a local feature space of category c j (j=1,2,...L ) , and calculate the Euclidean distance, and then select the category of the local feature space with the smallest Euclidean distance to the sample point X i of the unknown category as the category of the sample point X i of the unknown category. The invention can effectively suppress the interference of noise or singular points on data category prediction, enhance the robust performance of the classifier model, and improve the category prediction effect of unknown category sample points.

Description

基于点到局部特征空间距离的分类器模型建立方法Classifier model building method based on distance from point to local feature space

所属领域Field

本发明属于分类器技术领域。具体涉及一种基于点到局部特征空间距离的分类器模型建立方法。The invention belongs to the technical field of classifiers. Specifically, it relates to a method for establishing a classifier model based on the distance from a point to a local feature space.

背景技术Background technique

数据挖掘的主要任务有分类分析、聚类分析、关联规则分析、序列模式分析等,其中分类分析由于其特殊地位,一直是数据挖掘研究的热点。对于数据分类问题,通常采取的流程是首先对数据进行预处理,然后采用线性或者非线性特征提取方法,从预处理的数据中提取最有利于分类的特征,最后建立分类器模型,对所提取的特征进行类别预测。在整个数据分类过程中,如何建立数据分类模型是关系到数据分类效果好坏的关键之一。分类器模型的任务就是训练一个分类器,分析输入的样本集合,通过在训练集中的数据表现出来的特性,为每一个类寻找一种准确的描述。由所生成的类描述对未来的测试数据进行分类,尽管这些未来的测试数据的类别标签是未知的,但仍可以由此预测这些新数据所属的类别。The main tasks of data mining include classification analysis, cluster analysis, association rule analysis, sequential pattern analysis, etc. Among them, classification analysis has always been a hot spot in data mining research because of its special status. For data classification problems, the usual process is to preprocess the data first, then use linear or nonlinear feature extraction methods to extract the most favorable features for classification from the preprocessed data, and finally establish a classifier model to extract features for category prediction. In the whole process of data classification, how to establish a data classification model is one of the keys related to the quality of data classification. The task of the classifier model is to train a classifier, analyze the input sample set, and find an accurate description for each class through the characteristics of the data in the training set. The generated class descriptions are used to classify future test data, and although the class labels of these future test data are unknown, it is still possible to predict the class to which these new data belong.

目前有许多方法和技术可以用于构造分类器模型,例如决策树、决策表、神经网络、K近邻方法、遗传算法、贝叶斯方法以及支持向量机等。然而,这些单一的分类技术在应用中常常会受到一定条件的限制。对于一些非线性分类方法,如神经网络和支持向量机,由于算法复杂,造成计算代价很高。另外决策树、决策表,遗传算法和贝叶斯方法也因为计算复杂,运算量大,给大数据分类带来很大的困扰。作为一种计算简单的数据分类方法,K近邻采用一种以点到点的欧氏距离作为近邻点选择的度量,在K设置为1的情况下,K近邻方法转化为最近邻方法,未知类别数据样本点的类别就可以预测为距离其最近的样本点的类别,因此计算成本相对较低。但是K近邻方法的鲁棒性能比较差,在数据中如果包含有噪声或者奇异点的时候,特别是当噪声或者奇异点距离预测样本点比较近的时候,很容易影响未知类别样本点的预测效果,对数据的分类结果造成很大的影响。There are many methods and techniques that can be used to construct classifier models, such as decision trees, decision tables, neural networks, K-nearest neighbor methods, genetic algorithms, Bayesian methods, and support vector machines. However, the application of these single classification techniques is often limited by certain conditions. For some nonlinear classification methods, such as neural networks and support vector machines, the computational cost is high due to the complexity of the algorithm. In addition, decision trees, decision tables, genetic algorithms, and Bayesian methods also bring great troubles to big data classification because of their complex calculations and large amounts of calculations. As a computationally simple data classification method, K-nearest neighbors use a point-to-point Euclidean distance as a measure of neighbor point selection. When K is set to 1, the K-nearest neighbor method is transformed into the nearest neighbor method, and the unknown category The category of the data sample point can be predicted as the category of the nearest sample point, so the calculation cost is relatively low. However, the robustness of the K-nearest neighbor method is relatively poor. If the data contains noise or singular points, especially when the noise or singular points are relatively close to the predicted sample points, it is easy to affect the prediction effect of unknown class sample points. , which has a great impact on the classification results of the data.

发明内容Contents of the invention

本发明目的在于提出一种基于点到局部特征空间距离的分类器模型建立方法,所建立的分类器模型能有效地抑制噪声或奇异点对数据类别预测的干扰,能增强分类器模型的鲁棒性能,能提高未知类别的样本点的类别预测效果。The purpose of the present invention is to propose a method for establishing a classifier model based on the distance from a point to a local feature space. The established classifier model can effectively suppress the interference of noise or singular points on data category prediction, and can enhance the robustness of the classifier model. Performance, which can improve the category prediction effect of sample points of unknown categories.

为实现上述目的,本发明采用的技术方案是,所述分类器模型建立方法的具体步骤是:In order to achieve the above object, the technical solution adopted in the present invention is that the specific steps of the method for establishing the classifier model are:

步骤一、计算任一未知类别的样本点Xi与类别为cs的所有样本点之间的欧式距离,取所述欧式距离由小到大排列的前k个类别为cs的样本点将所述前k个类别为cs的样本点作为任一未知类别样本点Xi的类别为cs的局部近邻点,构建类别为cs的局部特征空间i表示自然数,s∈{1,2,...,L},L表示所有样本点的类别总数。Step 1. Calculate the Euclidean distance between any sample point X i of an unknown category and all sample points of the category c s , and take the first k sample points of the category c s arranged in ascending order of the Euclidean distance Set the sample points of the first k categories as c s As the local neighbor point of any unknown category sample point X i with category c s , construct a local feature space with category c s i represents a natural number, s ∈ {1,2,...,L}, L represents the total number of categories of all sample points.

步骤二、重复步骤一,分别从类别为ct(t=1,2,...,L-1)的所有样本点中,选取k个类别为ct(t=1,2,...,L-1)的局部近邻点构建相应的类别为ct(t=1,2,...,L-1)的局部特征空间L表示所有样本点的类别总数,所述的K为大于3的自然数。Step 2 , repeat step 1, select k categories as c t (t=1,2,.. .,L-1) local neighbors Construct the corresponding local feature space of category c t (t=1,2,...,L-1) L represents the total number of categories of all sample points, and the K is a natural number greater than 3.

步骤三、分别计算任一未知类别的样本点Xi到类别为cj的局部特征空间的欧氏距离 Step 3. Calculate the sample point X i of any unknown category to the local feature space of category c j Euclidean distance

DD. (( cc jj )) (( Xx ii )) == || || Xx ii -- ff (( cc jj )) (( Xx ii )) || || -- -- -- (( 11 ))

式(1)中:In formula (1):

cj表示类别为c1,c2,...,cL中的任一类;c j means that the category is any one of c 1 , c 2 ,...,c L ;

表示任一未知类别的样本点Xi到类别为cj的局部特征空间的投影, Represents the sample point X i of any unknown category to the local feature space of category c j the projection of

ff (( cc jj )) (( Xx ii )) == ΣΣ mm aa imim Xx imim (( cc jj )) -- -- -- (( 22 ))

式(2)中:In formula (2):

表示任一未知类别的样本点Xi的类别为cj的局部近邻点; Represents the local neighbor points of the sample point X i of any unknown category whose category is c j ;

aim(m=1,2,...,k)表示是在类别为cj的局部特征空间内,由类别为cj的局部近邻点所线性表示的任一未知类别的样本点Xi的线性系数, a im (m=1,2,...,k) means that in the local feature space of category c j , the local neighbor points of category c j The linear coefficient of the sample point X i of any unknown category expressed linearly,

步骤四、预测任一未知类别的样本点Xi的类别Step 4. Predict the category of any unknown category sample point X i

将任一未知类别的样本点Xi到类别为cj的局部特征空间的欧氏距离按照由小到大的顺序进行排列,选择到任一未知类别的样本点Xi具有最小欧氏距离的局部特征空间的类别,作为任一未知类别的样本点Xi的类别,其中:cj表示类别为c1,c2,...,cL中的任一类。Put the sample point X i of any unknown category into the local feature space of category c j Euclidean distance Arranged in order from small to large, select the category of the local feature space with the smallest Euclidean distance to the sample point Xi of any unknown category, as the category of the sample point Xi of any unknown category, where: c j Indicates that the category is any one of c 1 , c 2 , . . . , c L .

由于采用上述技术方案,本发明与现有技术相比的有益效果是:Owing to adopting above-mentioned technical scheme, the beneficial effect of the present invention compared with prior art is:

本发明在应用于数据分类时,在传统K近邻分类器的基础上,提供了基于点到局部特征空间距离的分类器模型建立方法。对于任一未知类别的样本点Xi,采用K近邻方法确定任一未知类别的样本点Xi的K个已知类别为cj(j=1,2,...,L)的近邻点,组成类别为cj(j=1,2,...,L)的局部特征空间;然后计算任一未知类别的样本点Xi到每一个具有不同类别的局部特征空间的欧氏距离最后选择到未知类别样本点Xi欧氏距离最小的局部特征空间的类别,作为任一未知类别样本点Xi的类别。传统K近邻方法中采用点到点距离,容易受噪声或奇异点的影响。本发明采用点到局部特征空间距离作为预测未知样本点的类别的度量,能有效地抑制噪声或奇异点的干扰,增强分类模型的鲁棒性能。When applied to data classification, the present invention provides a method for establishing a classifier model based on the distance from a point to a local feature space on the basis of a traditional K-nearest neighbor classifier. For a sample point X i of any unknown category, use the K nearest neighbor method to determine K known neighbor points of the sample point X i of any unknown category whose category is c j (j=1,2,...,L) , to form a local feature space with category c j (j=1,2,...,L); then calculate the Euclidean distance from any unknown category sample point Xi to each local feature space with different categories Finally, the category of the local feature space with the smallest Euclidean distance to the unknown category sample point X i is selected as the category of any unknown category sample point X i . The point-to-point distance is used in the traditional K-nearest neighbor method, which is easily affected by noise or singular points. The invention adopts the distance from the point to the local feature space as the measure for predicting the category of the unknown sample point, can effectively suppress the interference of noise or singular point, and enhance the robust performance of the classification model.

因此,本发明能有效地抑制噪声或奇异点对数据类别预测的干扰,增强了分类器模型的鲁棒性能,提高了未知类别的样本点的类别预测效果。Therefore, the present invention can effectively suppress the interference of noise or singular points on data category prediction, enhance the robust performance of the classifier model, and improve the category prediction effect of sample points of unknown categories.

具体实施方式Detailed ways

下面结合具体实施方式对本发明作进一步的描述,并非对其保护范围的限制:The present invention will be further described below in conjunction with specific embodiment, is not the limitation of its protection scope:

实施例1Example 1

一种基于点到局部特征空间距离的分类器模型建立方法。所述分类器模型建立方法的具体步骤是:A method for building a classifier model based on the distance from a point to a local feature space. The concrete steps of described classifier model establishment method are:

步骤一、计算任一未知类别的样本点Xi与类别为cs的所有样本点之间的欧式距离,取所述欧式距离由小到大排列的前k个类别为cs的样本点将所述前k个类别为cs的样本点作为任一未知类别样本点Xi的类别为cs的局部近邻点,构建类别为cs的局部特征空间i表示自然数,s∈{1,2,...,L},L表示所有样本点的类别总数。Step 1. Calculate the Euclidean distance between any sample point X i of an unknown category and all sample points of the category c s , and take the first k sample points of the category c s arranged in ascending order of the Euclidean distance Set the sample points of the first k categories as c s As the local neighbor point of any unknown category sample point X i with category c s , construct a local feature space with category c s i represents a natural number, s ∈ {1,2,...,L}, L represents the total number of categories of all sample points.

步骤二、重复步骤一,分别从类别为ct(t=1,2,...,L-1)的所有样本点中,选取k个类别为ct(t=1,2,...,L-1)的局部近邻点构建相应的类别为ct(t=1,2,...,L-1)的局部特征空间L表示所有样本点的类别总数,所述的K为大于3的自然数。 Step 2, repeat step 1, select k categories as c t (t=1,2,.. .,L-1) local neighbors Construct the corresponding local feature space of category c t (t=1,2,...,L-1) L represents the total number of categories of all sample points, and the K is a natural number greater than 3.

步骤三、分别计算任一未知类别的样本点Xi到类别为cj的局部特征空间的欧氏距离 Step 3. Calculate the sample point X i of any unknown category to the local feature space of category c j Euclidean distance

DD. (( cc jj )) (( Xx ii )) == || || Xx ii -- ff (( cc jj )) (( Xx ii )) || || -- -- -- (( 11 ))

式(1)中:In formula (1):

cj表示类别为c1,c2,...,cL中的任一类;c j means that the category is any one of c 1 , c 2 ,...,c L ;

表示任一未知类别的样本点Xi到类别为cj的局部特征空间的投影, Represents the sample point X i of any unknown category to the local feature space of category c j the projection of

ff (( cc jj )) (( Xx ii )) == ΣΣ mm aa imim Xx imim (( cc jj )) -- -- -- (( 22 ))

式(2)中:In formula (2):

表示任一未知类别的样本点Xi的类别为cj的局部近邻点; Represents the local neighbor points of the sample point X i of any unknown category whose category is c j ;

aim(m=1,2,...,k)表示是在类别为cj的局部特征空间内,由类别为cj的局部近邻点所线性表示的任一未知类别的样本点Xi的线性系数, a im (m=1,2,...,k) means that in the local feature space of category c j , the local neighbor points of category c j The linear coefficient of the sample point X i of any unknown category expressed linearly,

步骤四、预测任一未知类别的样本点Xi的类别Step 4. Predict the category of any unknown category sample point X i

将任一未知类别的样本点Xi到类别为cj的局部特征空间的欧氏距离按照由小到大的顺序进行排列,选择到任一未知类别的样本点Xi具有最小欧氏距离的局部特征空间的类别,作为任一未知类别的样本点Xi的类别,其中:cj表示类别为c1,c2,...,cL中的任一类。Put the sample point X i of any unknown category into the local feature space of category c j Euclidean distance Arranged in order from small to large, select the category of the local feature space with the smallest Euclidean distance to the sample point Xi of any unknown category, as the category of the sample point Xi of any unknown category, where: c j Indicates that the category is any one of c 1 , c 2 , . . . , c L .

本发明与现有技术相比的有益效果是:The beneficial effect of the present invention compared with prior art is:

本具体实施方式在应用于数据分类时,在传统K近邻分类器的基础上,提供了基于点到局部特征空间距离的分类器模型建立方法。对于任一未知类别的样本点Xi,采用K近邻方法确定任一未知类别的样本点Xi的K个已知类别为cj(j=1,2,...,L)的近邻点,组成类别为cj(j=1,2,...,L)的局部特征空间;然后计算任一未知类别的样本点Xi到每一个具有不同类别的局部特征空间的欧氏距离最后选择到未知类别样本点Xi欧氏距离最小的局部特征空间的类别,作为任一未知类别样本点Xi的类别。传统K近邻方法中采用点到点距离,容易受噪声或奇异点的影响。本具体实施方式采用点到局部特征空间距离作为预测未知样本点的类别的度量,能有效地抑制噪声或奇异点的干扰,增强分类模型的鲁棒性能。When this specific embodiment is applied to data classification, it provides a method for establishing a classifier model based on the distance from a point to a local feature space on the basis of a traditional K-nearest neighbor classifier. For a sample point X i of any unknown category, use the K nearest neighbor method to determine K known neighbor points of the sample point X i of any unknown category whose category is c j (j=1,2,...,L) , to form a local feature space with category c j (j=1,2,...,L); then calculate the Euclidean distance from any unknown category sample point Xi to each local feature space with different categories Finally, the category of the local feature space with the smallest Euclidean distance to the unknown category sample point X i is selected as the category of any unknown category sample point X i . The point-to-point distance is used in the traditional K-nearest neighbor method, which is easily affected by noise or singular points. In this specific embodiment, the distance from a point to a local feature space is used as a measure for predicting the category of an unknown sample point, which can effectively suppress the interference of noise or singular points, and enhance the robustness of the classification model.

因此,本具体实施方式能有效地抑制噪声或奇异点对数据类别预测的干扰,增强了分类器模型的鲁棒性能,提高了未知类别的样本点的类别预测效果。Therefore, this specific embodiment can effectively suppress the interference of noise or singular points on data category prediction, enhance the robustness of the classifier model, and improve the category prediction effect of sample points of unknown categories.

Claims (2)

1.一种基于点到局部特征空间距离的分类器模型建立方法,其特征在于所述分类器模型建立方法的具体步骤是:1. a classifier model building method based on point to local feature space distance, it is characterized in that the concrete steps of described classifier model building method are: 步骤一、计算任一未知类别的样本点Xi与类别为cs的所有样本点之间的欧式距离,取所述欧式距离由小到大排列的前k个类别为cs的样本点将所述前k个类别为cs的样本点作为任一未知类别样本点Xi的类别为cs的局部近邻点,构建类别为cs的局部特征空间i表示自然数,s∈{1,2,...,L},L表示所有样本点的类别总数;Step 1. Calculate the Euclidean distance between any sample point X i of an unknown category and all sample points of the category c s , and take the first k sample points of the category c s arranged in ascending order of the Euclidean distance Set the sample points of the first k categories as c s As the local neighbor point of any unknown category sample point X i with category c s , construct a local feature space with category c s i represents a natural number, s∈{1,2,...,L}, L represents the total number of categories of all sample points; 步骤二、重复步骤一,分别从类别为ct(t=1,2,...,L-1)的所有样本点中,选取k个类别为ct(t=1,2,...,L-1)的局部近邻点(t=1,2,...,L-1),构建相应的类别为ct(t=1,2,...,L-1)的局部特征空间(t=1,2,...L-1),L表示所有样本点的类别总数;Step 2 , repeat step 1, select k categories as c t (t=1,2,.. .,L-1) local neighbors (t=1,2,...,L-1), construct the corresponding local feature space of category c t (t=1,2,...,L-1) (t=1,2,...L-1), L represents the total number of categories of all sample points; 步骤三、分别计算任一未知类别的样本点Xi到类别为cj的局部特征空间的欧氏距离 Step 3. Calculate the sample point X i of any unknown category to the local feature space of category c j Euclidean distance DD. (( cc jj )) (( Xx ii )) == || || Xx ii -- ff (( cc jj )) (( Xx ii )) || || -- -- -- (( 11 )) 式(1)中:In formula (1): cj表示类别为c1,c2,...,cL中的任一类,c j indicates that the category is any one of c 1 , c 2 , ..., c L , 表示任一未知类别的样本点Xi到类别为cj的局部特征空间的投影, Represents the sample point X i of any unknown category to the local feature space of category c j the projection of ff (( cc jj )) (( Xx ii )) == ΣΣ mm aa imim Xx imim (( cc jj )) -- -- -- (( 22 )) 式(2)中:In formula (2): 表示任一未知类别的样本点Xi的类别为cj的局部近邻点,aim(m=1,2,...,k)表示是在类别为cj的局部特征空间内,由类别为cj的局部近邻点所线性表示的任一未知类别的样本点Xi的线性系数, Represents the local neighbor points of any unknown category sample point X i whose category is c j , a im (m=1,2,...,k) means that it is in the local feature space of category c j , by category is the local neighbor point of c j The linear coefficient of the sample point X i of any unknown category expressed linearly, 步骤四、预测任一未知类别的样本点Xi的类别Step 4. Predict the category of any unknown category sample point X i 将任一未知类别的样本点Xi到类别为cj的局部特征空间的欧氏距离按照由小到大的顺序进行排列,选择到任一未知类别的样本点Xi具有最小欧氏距离的局部特征空间的类别,作为任一未知类别的样本点Xi的类别,其中:cj表示类别为c1,c2,...,cL中的任一类。Put the sample point X i of any unknown category into the local feature space of category c j Euclidean distance Arranged in order from small to large, select the category of the local feature space with the smallest Euclidean distance to the sample point Xi of any unknown category, as the category of the sample point Xi of any unknown category, where: c j Indicates that the category is any one of c 1 , c 2 , . . . , c L . 2.根据权利要求1所述的基于点到局部特征空间距离的分类器模型建立方法,其特征在于所述的K为大于3的自然数。2. The method for establishing a classifier model based on the distance from a point to a local feature space according to claim 1, wherein said K is a natural number greater than 3.
CN201410699884.4A 2014-11-26 2014-11-26 Classifier model establishment method based on distance from point to local feature space Pending CN104408129A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201410699884.4A CN104408129A (en) 2014-11-26 2014-11-26 Classifier model establishment method based on distance from point to local feature space

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201410699884.4A CN104408129A (en) 2014-11-26 2014-11-26 Classifier model establishment method based on distance from point to local feature space

Publications (1)

Publication Number Publication Date
CN104408129A true CN104408129A (en) 2015-03-11

Family

ID=52645760

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201410699884.4A Pending CN104408129A (en) 2014-11-26 2014-11-26 Classifier model establishment method based on distance from point to local feature space

Country Status (1)

Country Link
CN (1) CN104408129A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109978008A (en) * 2019-02-26 2019-07-05 杭州电子科技大学 The potential similitude optimization method of arest neighbors figure based on range conversion

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20080040302A1 (en) * 2006-08-04 2008-02-14 Perrizo William K Parameter optimized nearest neighbor vote and boundary based classification
CN103530277A (en) * 2013-10-15 2014-01-22 武汉科技大学 Multi-manifold neighborhood point selecting method based on sparse perception

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20080040302A1 (en) * 2006-08-04 2008-02-14 Perrizo William K Parameter optimized nearest neighbor vote and boundary based classification
CN103530277A (en) * 2013-10-15 2014-01-22 武汉科技大学 Multi-manifold neighborhood point selecting method based on sparse perception

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
BO LI 等: "Tumor Gene Expressive Data Classification Based on Locally Linear Representation Fisher Criterion", 《 SPRINGER》 *
魏莱 等: "基于流形距离的半监督判别分析", 《JOURNAL OF SOFTWARE》 *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109978008A (en) * 2019-02-26 2019-07-05 杭州电子科技大学 The potential similitude optimization method of arest neighbors figure based on range conversion

Similar Documents

Publication Publication Date Title
CN104217225B (en) A kind of sensation target detection and mask method
CN109583468B (en) Training sample acquisition method, sample prediction method and corresponding device
CN105279365B (en) For the method for the sample for learning abnormality detection
Huang et al. Forecasting container throughput of Qingdao port with a hybrid model
JP2021193615A (en) Quantum data processing method, quantum device, computing device, storage medium, and program
CN103544496B (en) The robot scene recognition methods merged with temporal information based on space
WO2019080367A1 (en) Method for evaluating health status of mechanical device
CN103258214A (en) Remote sensing image classification method based on image block active learning
CN110110780B (en) Image classification method based on antagonistic neural network and massive noise data
CN104766098A (en) Construction method for classifier
CN107180426A (en) Area of computer aided Lung neoplasm sorting technique based on transportable multiple-model integration
CN103927394A (en) Multi-label active learning classification method and system based on SVM
CN102842043B (en) Particle swarm classifying method based on automatic clustering
CN103543719A (en) Method for adaptively adjusting operation modes of process industry on basis of working conditions
CN106056101A (en) Non-maximum suppression method for face detection
CN104915679A (en) Large-scale high-dimensional data classification method based on random forest weighted distance
CN110349119B (en) Pavement disease detection method and device based on edge detection neural network
CN108446627A (en) A kind of Aerial Images matching process based on partial-depth Hash
CN105354583B (en) Unbalanced data sorting technique based on local mean value
CN103810482A (en) Multi-information fusion classification and identification method
CN108734207A (en) A kind of model prediction method based on double preferred Semi-Supervised Regression algorithms
CN108900970A (en) A kind of terminal indoor orientation method returning Kernel discriminant analysis based on spectrum
CN117117850A (en) A short-term electricity load forecasting method and system
CN105354644A (en) Financial time series prediction method based on integrated empirical mode decomposition and 1-norm support vector machine quantile regression
Ballı et al. An application of artificial neural networks for prediction and comparison with statistical methods

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
WD01 Invention patent application deemed withdrawn after publication

Application publication date: 20150311

WD01 Invention patent application deemed withdrawn after publication