Learning Mahalanobis Distance Metric: Considering Instance Disturbance Helps∗

Total Page:16

File Type:pdf, Size:1020Kb

Learning Mahalanobis Distance Metric: Considering Instance Disturbance Helps∗ Proceedings of the Twenty-Sixth International Joint Conference on Artificial Intelligence (IJCAI-17) Learning Mahalanobis Distance Metric: Considering Instance Disturbance Helps∗ Han-Jia Ye, De-Chuan Zhan, Xue-Min Si and Yuan Jiang National Key Laboratory for Novel Software Technology Collaborative Innovation Center of Novel Software Technology and Industrialization Nanjing University, Nanjing, 210023, China fyehj, zhandc, sixm, [email protected] Abstract dissimilar ones are far away. Although ground-truth side in- formation leads to a well-learned Mahalanobis metric [Verma Mahalanobis distance metric takes feature weights and Branson, 2015, Cao et al., 2016], it is in fact unknown and correlation into account in the distance com- during the training process. Therefore, side information is putation, which can improve the performance of often generated based on reliable raw features from various many similarity/dissimilarity based methods, such sources. For example, random choice [Davis et al., 2007], Eu- as kNN. Most existing distance metric learning clidean nearest neighbor selection [Weinberger et al., 2006], methods obtain metric based on the raw features and all-pair enumeration [Xing et al., 2003, Mao et al., 2016]. and side information but neglect the reliability of them. Noises or disturbances on instances will To reduce the uncertainty in side information, [Huang et al., make changes on their relationships, so as to af- 2010] and [Wang et al., 2012] try a selection strategy among fect the learned metric. In this paper, we claim that all target neighbors. While it is more reasonable to assume considering disturbance of instances may help the that there are inaccuracies in feature value collection, since metric learning approach get a robust metric, and the feature inaccuracies or noises will damage the structure propose the Distance metRIc learning Facilitated of neighbors, and consequently affect the reliableness of side by disTurbances (DRIFT) approach. In DRIFT, the information. From the aspect of this generative process, we noise or the disturbance of each instance is learned. tackle the unreliability in metric learning and propose the Dis- Therefore, the distance between each pair of (noisy) tance metRIc Facilitated by disTurbances (DRIFT) approach, instances can be better estimated, which facilitates using which a robust distance metric is achieved based on the side information utilization and metric learning. explicit consideration of instance disturbances. Experiments on prediction and visualization clearly In DRIFT, all possible variations of disturbances on in- indicate the effectiveness of DRIFT. stances are involved in the expected distance, so as to form different side information constraints as well as assign rea- sonable weights on them. Specifically, when a pair of noisy 1 Introduction instances meets the requirement of the provided side infor- Similarity and dissimilarity are widely used in machine learn- mation, the DRIFT’s learned metric should tolerate perturba- ing area, such as classification [Bian and Tao, 2011, Luo et al., tions by enlarging the similarity region. As such the robust- ] [ et al. et al. 2016 , clustering Xing , 2003, Xiang , 2008, Law ness of metric will increase and the generalization ability can et al., 2016b] and retrieval [McFee and Lanckriet, 2010]. The goal of Distance Metric Learning (DML) is to find a better be improved. On the contrary, if the side information was distance computation which can perform better than the Eu- hard to satisfy for the concerned pair, assigning obvious per- clidean one. Given a positive semi-definite matrix M, the turbations can be risky. Hence, the tolerance level of dis- (squared) Mahalanobis distance between two instances xi and turbances on instance pairs reflects the reliableness of side xj can be defined as: information to some extent. Moreover, perturbation distribu- > dist2 (x ; x ) = (x − x ) M(x − x ) : tion modeled noises make DRIFT have the ability to represent M i j i j i j instances distribution quantitatively [Van Der Maaten et al., Since it considers the relationship between different types 2013], and help reduce the effects of incorrect guidance in of features [Lim et al., 2013, Ye et al., 2016b], its advan- training. Therefore, it is expected that DRIFT can provide a tages have been discovered and validated from various per- robust distance metric with better discriminative ability. spectives [Kulis, 2012, Bellet et al., 2015]. DRIFT learns metric and disturbance of instances jointly. To train a Mahalanobis distance metric, various types of Benefited from metric decomposition, we get a simplified ob- [ ] side information Law et al., 2016a should be collected to jective and acceleration variants with sub-problems further provide a direction for distance relative comparisons. Af- reducing to scalar group optimization. Our empirical inves- ter searching a metric decreasing the violation of these con- tigations provide visualization effects demonstrating the in- straints, similar instances become close to each other while terpretability of DRIFT. Real-world tasks validate DRIFT’s ∗This work was supported by NSFC (61632004, 61673201). superiorities on generalization and robustness, especially in 3315 Proceedings of the Twenty-Sixth International Joint Conference on Artificial Intelligence (IJCAI-17) f t t t g t t the case of unreliable instances/side information. xi; xj ; xk , xj is the target neighbor of instance xi and The rest of this paper starts with discussions about related they should be close to each other using learned distance. t methods. Then the DRIFT approach is presented in detail. While xk is the imposter, i.e., a different class instance that The last are experiments and conclusion. needed to be pushed away. The learned Mahalanobis distance S+ metric M lies in the set of positive semi-definite matrix d . k k2 h i > 2 Related Work M F = M; M = Tr(M M) is the Frobenius norm of a Mahalanobis distance is widely researched in distance metric matrix. I is the identity matrix. [·]+ is a scalar input function learning. It is originally used in the clustering task [Xing et which only preserves the non-negative part of input value. al., 2003] considering all pair comparisons. ITML [Davis et We use P to denote the set of valid probability distributions al., 2007] utilizes the randomly chosen pairwise side infor- (nonnegative and sum to one over random variable space). mation and information based regularizer. While triplets con- Denote pi(ϵ) 2 P as the perturbation distribution for in- f gN straints are considered in LMNN [Weinberger et al., 2006] to stance xi and p = pi(ϵ) i=1 is the set of all these distri- form a large margin objective. To find a better description of butions. For random variable ϵ 2 Rd, the KL-divergence side information, a multi-stage strategy is proposed in [Wein- can produce a non-negative inconsistency measurement be- berger and Saul, 2009, Zhan et al., 2009], where the metric tween two distributionsR p(ϵ) and p0(ϵ), which is defined as p(ϵ) learned in the previous stage is used to find nearest neigh- KL(pkp0) = p(ϵ) log dϵ. bors in the current one. [Huang et al., 2010] and [Wang et p0(ϵ) al., 2012] traverse all target neighbors to find best candidates. In DRIFT, we propose a new perspective on the refinement 3.2 Instance Disturbances in Metric Learning of side information by considering the disturbances over in- Instance disturbance affects its neighborhood structures, in- stances. Different metric learning methods and the ways they ducing unreliability in training, which can be used for facil- use side information can be found in [Bellet et al., 2015]. itating the utilization of side information. Taking perturba- tions into account in the distance computation, variants of in- Perturbations modeling can be regarded as a type of regu- stances should be used to explain the guidance of side infor- [ ] [ larization Wager et al., 2013 to train a robust model Chen et mation. In DRIFT, We focus on the expected Mahalanobis dis- al., 2014, Wangni and Chen, 2016] or get better feature repre- tance with metric M between two instances xi and xj, which sentations [Van Der Maaten et al., 2013, Chen et al., 2015, Li is equivalent to covering all the instances x^i and x^j sampled ] [ ] et al., 2016 . Qian et al. 2014 first consider noises in met- from instance distribution p(xi) and p(xj), respectively [Li ric learning, but only fixed covariance perturbation is used to et al., 2016, Mao et al., 2016]: get a low rank solution. In DRIFT, we learn the perturbation h i E 2 E − > − distribution to directly model the noises for a robust metric. x^i;x^j [distM (x^i; x^j )] = x^i;x^j (x^i x^j ) M(x^i x^j ) The disturbance distribution is also closely related to the ZZ > > > instance distributions, and consequently correlated with the = x^i Mx^i + x^j Mx^j − 2x^j Mx^i p(x^i)p(x^j )dx^idx^j instance generation mechanism. Different from [Ye et al., E > E > − E > E 2016a], where distributions are considered to model the multi- = x^i [x^i Mx^i] + x^j [x^j Mx^j ] 2 x^i [x^i] M x^j [x^j ] : (1) ple metrics and indirectly infer the metric for unseen instance, Last step in Eq. 1 comes from the independent assumption DRIFT explicitly models the distribution related to instances between instances xi and xj . Since it is a general assump- and side information. Mao et al. [2016] study robust mani- tion that the disturbances on instances are centralized, i.e., fold learning. Nevertheless, they focus on the instance distri- E x^i [x^i] = xi, the above expected distance can be further bution towards preserving their Euclidean distances. On the transformed into: contrary, DRIFT approach considers the disturbance distribu- E 2 2 h i x^i;x^j [distM (x^i; x^j )] = distM (xi; xj )+ M; Cov[xi]+Cov[xj ] : tion directly for better discriminative ability.
Recommended publications
  • Deep Similarity Learning for Sports Team Ranking
    Deep Similarity Learning for Sports Team Ranking Daniel Yazbek†, Jonathan Sandile Sibindi∗ Terence L. Van Zyl School of Computer Science and Applied Mathematics Institute for Intelligent Systems University of the Witswatersrand University of Johannesburg Johannesburg, South Africa Johannesburg, South Africa †[email protected], ∗[email protected] [email protected] Abstract—Sports data is more readily available and conse- feasible and economically desirable to various players in the quently, there has been an increase in the amount of sports betting industry. Further, accurate game predictions can aid analysis, predictions and rankings in the literature. Sports are sports teams in making adjustments to teams to achieve the unique in their respective stochastic nature, making analysis, and accurate predictions valuable to those involved in the sport. In best possible future results for that franchise. This increase response, we focus on Siamese Neural Networks (SNN) in unison in economic upside has increased research and analysis in with LightGBM and XGBoost models, to predict the importance sports prediction [26], using a multitude of machine learning of matches and to rank teams in Rugby and Basketball. algorithms [18]. Six models were developed and compared, a LightGBM, a Popular machine learning algorithms are neural networks, XGBoost, a LightGBM (Contrastive Loss), LightGBM (Triplet Loss), a XGBoost (Contrastive Loss), XGBoost (Triplet Loss). designed to learn patterns and effectively classify data into The models that utilise a Triplet loss function perform better identifiable classes. Classification tasks depend upon labelled than those using Contrastive loss. It is clear LightGBM (Triplet datasets; for a neural network to learn the correlation between loss) is the most effective model in ranking the NBA, producing labels and data, humans must transfer their knowledge to a a state of the art (SOTA) mAP (0.867) and NDCG (0.98) dataset.
    [Show full text]
  • RELIEF Algorithm and Similarity Learning for K-NN
    International Journal of Computer Information Systems and Industrial Management Applications. ISSN 2150-7988 Volume 4 (2012) pp. 445-458 c MIR Labs, www.mirlabs.net/ijcisim/index.html RELIEF Algorithm and Similarity Learning for k-NN Ali Mustafa Qamar1 and Eric Gaussier2 1 Assistant Professor, Department of Computing School of Electrical Engineering and Computer Science (SEECS) National University of Sciences and Technology (NUST), Islamabad, Pakistan [email protected] 2Laboratoire d’Informatique de Grenoble Universit´ede Grenoble France [email protected] Abstract: In this paper, we study the links between RELIEF, has paved the way for a new reasearch theme termed met- a well-known feature re-weighting algorithm and SiLA, a sim- ric learning. Most of the people working in this research ilarity learning algorithm. On one hand, SiLA is interested in area are more interested in learning a distance metric (see directly reducing the leave-one-out error or 0 − 1 loss by reduc- e.g. [1, 2, 3, 4]) as compared to a similarity one. However, ing the number of mistakes on unseen examples. On the other as argued by several researchers, similarities should be pre- hand, it has been shown that RELIEF could be seen as a distance ferred over distances on some of the data sets. Similarity is learning algorithm in which a linear utility function with maxi- usually preferred over the distance metric while dealing with mum margin was optimized. We first propose here a version of text, in which case the cosine similarity has been deemed this algorithm for similarity learning, called RBS (for RELIEF- more appropriate as compared to the various distance met- Based Similarity learning).
    [Show full text]
  • Deep Metric Learning: a Survey
    S S symmetry Review Deep Metric Learning: A Survey Mahmut KAYA 1,* and Hasan ¸SakirBILGE˙ 2 1 Department of Computer Engineering, Engineering Faculty, Siirt University, Siirt 56100, Turkey 2 Department of Electrical - Electronics Engineering, Engineering Faculty, Gazi University, Ankara 06570, Turkey * Correspondence: [email protected] Received: 23 July 2019; Accepted: 20 August 2019; Published: 21 August 2019 Abstract: Metric learning aims to measure the similarity among samples while using an optimal distance metric for learning tasks. Metric learning methods, which generally use a linear projection, are limited in solving real-world problems demonstrating non-linear characteristics. Kernel approaches are utilized in metric learning to address this problem. In recent years, deep metric learning, which provides a better solution for nonlinear data through activation functions, has attracted researchers’ attention in many different areas. This article aims to reveal the importance of deep metric learning and the problems dealt with in this field in the light of recent studies. As far as the research conducted in this field are concerned, most existing studies that are inspired by Siamese and Triplet networks are commonly used to correlate among samples while using shared weights in deep metric learning. The success of these networks is based on their capacity to understand the similarity relationship among samples. Moreover, sampling strategy, appropriate distance metric, and the structure of the network are the challenging factors for researchers to improve the performance of the network model. This article is considered to be important, as it is the first comprehensive study in which these factors are systematically analyzed and evaluated as a whole and supported by comparing the quantitative results of the methods.
    [Show full text]
  • Cross-Domain Visual Matching Via Generalized Similarity Measure and Feature Learning
    IEEE TRANSACTIONS ON PATTERN ANALYSIS AND MACHINE INTELLIGENCE 1 Cross-Domain Visual Matching via Generalized Similarity Measure and Feature Learning Liang Lin, Guangrun Wang, Wangmeng Zuo, Xiangchu Feng, and Lei Zhang Abstract—Cross-domain visual data matching is one of the fundamental problems in many real-world vision tasks, e.g., matching persons across ID photos and surveillance videos. Conventional approaches to this problem usually involves two steps: i) projecting samples from different domains into a common space, and ii) computing (dis-)similarity in this space based on a certain distance. In this paper, we present a novel pairwise similarity measure that advances existing models by i) expanding traditional linear projections into affine transformations and ii) fusing affine Mahalanobis distance and Cosine similarity by a data-driven combination. Moreover, we unify our similarity measure with feature representation learning via deep convolutional neural networks. Specifically, we incorporate the similarity measure matrix into the deep architecture, enabling an end-to-end way of model optimization. We extensively evaluate our generalized similarity model in several challenging cross-domain matching tasks: person re-identification under different views and face verification over different modalities (i.e., faces from still images and videos, older and younger faces, and sketch and photo portraits). The experimental results demonstrate superior performance of our model over other state-of-the-art methods. Index Terms—Similarity model, Cross-domain matching, Person verification, Deep learning. F 1 INTRODUCTION ISUAL similarity matching is arguably considered as V one of the most fundamental problems in computer vision and pattern recognition, and this problem becomes more challenging when dealing with cross-domain data.
    [Show full text]
  • Low-Rank Similarity Metric Learning in High Dimensions
    Proceedings of the Twenty-Ninth AAAI Conference on Artificial Intelligence Low-Rank Similarity Metric Learning in High Dimensions Wei Liuy Cun Muz Rongrong Ji\ Shiqian Max John R. Smithy Shih-Fu Changz yIBM T. J. Watson Research Center zColumbia University \Xiamen University xThe Chinese University of Hong Kong fweiliu,[email protected] [email protected] [email protected] [email protected] [email protected] Abstract clude supervised metric learning which is the main focus in the literature, semi-supervised metric learning (Wu et al. Metric learning has become a widespreadly used tool in machine learning. To reduce expensive costs brought 2009; Hoi, Liu, and Chang 2010; Liu et al. 2010a; 2010b; in by increasing dimensionality, low-rank metric learn- Niu et al. 2012), etc. The suite of supervised metric learning ing arises as it can be more economical in storage and can further be divided into three categories in terms of forms computation. However, existing low-rank metric learn- of supervision: the methods supervised by instance-level la- ing algorithms usually adopt nonconvex objectives, and bels (Goldberger, Roweis, and Salakhutdinov 2004; Glober- are hence sensitive to the choice of a heuristic low-rank son and Roweis 2005; Weinberger and Saul 2009), the basis. In this paper, we propose a novel low-rank met- methods supervised by pair-level labels (Xing et al. 2002; ric learning algorithm to yield bilinear similarity func- Bar-Hillel et al. 2005; Davis et al. 2007; Ying and Li 2012), tions. This algorithm scales linearly with input dimen- and the methods supervised by triplet-level ranks (Ying, sionality in both space and time, therefore applicable Huang, and Campbell 2009; McFee and Lanckriet 2010; to high-dimensional data domains.
    [Show full text]
  • Unsupervised Domain Adaptation with Similarity Learning
    Unsupervised Domain Adaptation with Similarity Learning Pedro O. Pinheiro Element AI Montreal, QC, Canada [email protected] Abstract The objective of unsupervised domain adaptation is to µ leverageµ features from a labeled source domain and learn µ µ 3 a classifier for an unlabeled target domain, with a simi- 1 lar but different data distribution. Most deep learning ap- proaches to domain adaptation consist of two steps: (i) learn features that preserve a low risk on labeled samples (source domain)µ and (ii) make the features from both do- mains to be as indistinguishable as possible, so that a clas- µ2 t sifier trained on the source can also be applied on the tar- f(xi) get domain. In general, the classifiersµ in step (i) consist of fully-connected layers applied directly on the indistin- µ4 guishable features learned in (ii). In this paper, we pro- pose a different way to do the classification, using similarity learning. The proposed method learns a pairwise similarity function in which classification can be performed by com- puting similarity between prototype representations of each Figure 1: Illustrative example of our similarity-based clas- category. The domain-invariant features and the categori- sifier. A query target-domain image representation is com- cal prototype representations are learned jointly and in an pared to a set of prototypes, one per category, computed end-to-end fashion. At inference time, images from the tar- from source-domain images. The label of the most similar get domain are compared to the prototypes and the label prototype is assigned to the test image.
    [Show full text]
  • Algorithms for Similarity Relation Learning from High Dimensional Data Phd Dissertation
    University of Warsaw Faculty of Mathematics, Informatics and Mechanics mgr Andrzej Janusz Algorithms for Similarity Relation Learning from High Dimensional Data PhD dissertation Supervisor Prof. dr hab. Nguyen Hung Son Institute of Mathematics University of Warsaw October 2013 Author’s declaration: aware of legal responsibility I hereby declare that I have written this dissertation myself and all the contents of the dissertation have been obtained by legal means. October 31, 2013 . date mgr Andrzej Janusz Supervisor’s declaration: the dissertation is ready to be reviewed October 31, 2013 . date Prof. dr hab. Nguyen Hung Son 3 Abstract The notion of similarity plays an important role in machine learning and artificial intelligence. It is widely used in tasks related to a supervised classification, clustering, an outlier detection and planning [7, 22, 57, 89, 153, 166]. Moreover, in domains such as information retrieval or case-based reasoning, the concept of similarity is essential as it is used at every phase of the reasoning cycle [1]. The similarity itself, however, is a very complex concept that slips out from formal definitions. A similarity of two objects can be different depending on a considered context. In many practical situations it is difficult even to evaluate the quality of similarity assessments without considering the task for which they were performed. Due to this fact the similarity should be learnt from data, specifically for the task at hand. In this dissertation a similarity model, called Rule-Based Similarity, is described and an algorithm for constructing this model from available data is proposed. The model utilizes notions from the rough set theory [108, 110, 113, 114, 115] to derive a similarity function that allows to approximate the similarity relation in a given context.
    [Show full text]
  • Supervised Learning with Similarity Functions
    Supervised Learning with Similarity Functions Purushottam Kar Prateek Jain Indian Institute of Technology Microsoft Research Lab Kanpur, INDIA Bangalore, INDIA [email protected] [email protected] Abstract We address the problem of general supervised learning when data can only be ac- cessed through an (indefinite) similarity function between data points. Existing work on learning with indefinite kernels has concentrated solely on binary/multi- class classification problems. We propose a model that is generic enough to handle any supervised learning task and also subsumes the model previously proposed for classification. We give a “goodness” criterion for similarity functions w.r.t. a given supervised learning task and then adapt a well-known landmarking technique to provide efficient algorithms for supervised learning using “good” similarity func- tions. We demonstrate the effectiveness of our model on three important super- vised learning problems: a) real-valued regression, b) ordinal regression and c) ranking where we show that our method guarantees bounded generalization error. Furthermore, for the case of real-valued regression, we give a natural goodness definition that, when used in conjunction with a recent result in sparse vector re- covery, guarantees a sparse predictor with bounded generalization error. Finally, we report results of our learning algorithms on regression and ordinal regression tasks using non-PSD similarity functions and demonstrate the effectiveness of our algorithms, especially that of the sparse landmark selection algorithm that achieves significantly higher accuracies than the baseline methods while offering reduced computational costs. 1 Introduction The goal of this paper is to develop an extended framework for supervised learning with similarity functions.
    [Show full text]
  • Unsupervised Graph-Based Similarity Learning Using Heterogeneous Features
    Unsupervised Graph-Based Similarity Learning Using Heterogeneous Features by Pradeep Muthukrishnan A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy (Computer Science and Engineering) in The University of Michigan 2011 Doctoral Committee: Professor Dragomir Radkov Radev, Chair Associate Professor Steven P. Abney Assistant Professor Honglak Lee Assistant Professor Qiaozhu Mei Assistant Professor Zeeshan Syed c Pradeep Muthukrishnan 2011 All Rights Reserved Dedicated to my parents ii ACKNOWLEDGEMENTS First and foremost, I am truly grateful to my advisor Dragomir Radev. This thesis would not have been possible without him and without the support he has given me over the past few years. His constant guidance, motivation and patience has been essential in my development as a scientist. Also, I would like to thank Qiaozhu Mei for many insightful discussions and feedback that helped shape and improve this work. I would also like to thank the other members of my dissertation committee, Steve Abney, Honglak Lee and Zeeshan Syed for their careful criticism and insightful feedback that improved the quality of this work. I would like to thank all members of the Computational Linguistics and Infor- mation Retrieval (CLAIR) group in the University of Michigan, Vahed Qazvinian, Ahmed Hassan, Arzucan Ozgur, and Amjad Abu-Jbara for being great colleagues and many insightful discussions that we had together. Special thanks to my roommates Kumar Sricharan and Gowtham Bellala for the innumerable late-night discussions on my research. My heartfelt thanks to all my friends who have been family for me here in Ann Arbor, especially Avani Kamath, Tejas Jayaraman and Gandharv Kashinath.
    [Show full text]
  • Coupled Attribute Similarity Learning on Categorical Data Can Wang, Xiangjun Dong, Fei Zhou, Longbing Cao, Senior Member, IEEE, and Chi-Hung Chi
    IEEE TRANSACTIONS ON NEURAL NETWORKS AND LEARNING SYSTEMS, VOL. 26, NO. 4, APRIL 2015 781 Coupled Attribute Similarity Learning on Categorical Data Can Wang, Xiangjun Dong, Fei Zhou, Longbing Cao, Senior Member, IEEE, and Chi-Hung Chi Abstract— Attribute independence has been taken as a major Index Terms— Clustering, coupled attribute similarity, coupled assumption in the limited research that has been conducted on object analysis, similarity analysis, unsupervised learning. similarity analysis for categorical data, especially unsupervised learning. However, in real-world data sources, attributes are more or less associated with each other in terms of certain I. INTRODUCTION coupling relationships. Accordingly, recent works on attribute IMILARITY analysis has been a problem of great dependency aggregation have introduced the co-occurrence of attribute values to explore attribute coupling, but they only Spractical importance in several domains for decades, not present a local picture in analyzing categorical data similarity. least in recent work, including behavior analysis [1], document This is inadequate for deep analysis, and the computational analysis [2], and image analysis [3]. A typical aspect of these complexity grows exponentially when the data scale increases. applications is clustering, in which the similarity is usually This paper proposes an efficient data-driven similarity learning defined in terms of one of the following levels: 1) between approach that generates a coupled attribute similarity measure for nominal objects with attribute couplings to capture a global clusters; 2) between attributes; 3) between data objects; or picture of attribute similarity. It involves the frequency-based 4) between attribute values. The similarity between clusters is intra-coupled similarity within an attribute and the inter-coupled often built on top of the similarity between data objects, e.g., similarity upon value co-occurrences between attributes, as well centroid similarity.
    [Show full text]
  • Learning Similarities for Linear Classification: Theoretical
    Learning similarities for linear classification : theoretical foundations and algorithms Maria-Irina Nicolae To cite this version: Maria-Irina Nicolae. Learning similarities for linear classification : theoretical foundations and al- gorithms. Machine Learning [cs.LG]. Université de Lyon, 2016. English. NNT : 2016LYSES062. tel-01975541 HAL Id: tel-01975541 https://tel.archives-ouvertes.fr/tel-01975541 Submitted on 9 Jan 2019 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. École Doctorale ED488 "Sciences, Ingénierie, Santé" Learning Similarities for Linear Classification: Theoretical Foundations and Algorithms Apprentissage de similarités pour la classification linéaire : fondements théoriques et algorithmes Thèse préparée par Maria-Irina Nicolae pour obtenir le grade de : Docteur de l’Université Jean Monnet de Saint-Etienne Domaine: Informatique Soutenance le 2 Décembre 2016 au Laboratoire Hubert Curien devant le jury composé de : Maria-Florina Balcan Maître de conférences, Carnegie Mellon University Examinatrice Antoine Cornuéjols Professeur, AgroParisTech
    [Show full text]
  • Arsknn-A K-NN Classifier Using Mass Based Similarity Measure
    Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 46 ( 2015 ) 457 – 462 International Conference on Information and Communication Technologies (ICICT 2014) ARSkNN-A k-NN Classifier Using Mass Based Similarity Measure Ashish Kumara,*, Roheet Bhatnagara, Sumit Srivastavaa aManipal University Jaipur, Dehmi Kalan, Jaipur, 303007, India Abstract k-Nearest Neighbor (k-NN) classification technique is one of the most elementary and straightforward classification methods. Although distance learning is in the core of k-NN classification, similarity can be preferred upon distance in several practical applications. This paper proposes a novel algorithm for learning a class of an instance based on a similarity measure which does not calculate distance, for k-Nearest Neighbor (k-NN) classification. © 20142015 The Authors.Authors. PublishedPublished by by Elsevier Elsevier B.V. B.V. This is an open access article under the CC BY-NC-ND license Peer-review(http://creativecommons.org/licenses/by-nc-nd/4.0/ under responsibility of organizing committee). of the International Conference on Information and Communication TechnologiesPeer-review under (ICICT responsibility 2014). of organizing committee of the International Conference on Information and Communication Technologies (ICICT 2014) Keywords: Classification Algorithm; Data Mining; Nearest Neighbor; Similarity Measures; 1. Introduction Classification techniques is a domain of much enthusiasm toward established researchers, due to their wide range of applications, viz; handwriting recognition, biometric identification, computer-aided diagnosis and many more. Among so many classification techniques, the conventional k-nearest Neighbor (k-NN) classification technique is one of the simplest and oldest. In this technique, k nearest neighbors to the queried instance are found and then the class of the queried instance is determined by a majority rule i.e.
    [Show full text]