Leveraging Click Completion for Graph-based Image Ranking

Size: px
Start display at page:

Download "Leveraging Click Completion for Graph-based Image Ranking"

Transcription

1 th International Conference on Parallel and Distributed Computing, Applications and Technologies Leveraging Click Completion for Graph-based Image Ranking Xiaohong Qin, Yu He, Jun Wu Beijing Key Lab of Traffic Data Analysis and Mining Beijing Jiaotong University Beijing , China { , , Yingpeng Sang School of Information Science and Technology Sun Yat-Sen University Guangzhou , China Abstract Image ranking is a critical component in the image search systems, and graph-based ranking has become a promising way to enhance the retrieval effectiveness. Leveraging the clickthrough data to facilitate the ranking is one of the current trends. However, the sparse and noisy properties of the click-through data make the exploitation of such resource difficult. To this end, this paper proposes a click completion solution for graphbased image ranking, which consists of two coupled components. The first one is a click completion algorithm to handle the sparseness. Another one is a soft-label graph ranking solution to exploit the completed click-through data noise-tolerantly. We conduct extensive experiments to evaluate the performance of the proposed scheme for image retrieval, in which encouraging results validate the effectiveness of the proposed techniques. I. INTRODUCTION Graph-based ranking has been extensively exploited recently due to its effectiveness in various visual retrieval tasks, such as natural image search [1], shape retrieval [2], cross-media retrieval [3], 3D object retrieval [4], etc. Unlike traditional ranking approaches that consider only pairwise similarity for visual ranking, graph-based methods aim at exploring the intrinsic manifold structure collectively hidden in images, hoping to refine the similarity measure. Despite these successes, the performance of graph-based ranking approaches is still limited by the so-called semantic gap existing between low-level image pixels captured by machines and high-level semantic concepts perceived by humans, especially when the visual targets are dispersed in the feature space. In order to boost the performance of image retrieval and overcome the semantic gap, a relevance feedback mechanism [5] is incorporated into the graph-based ranking framework [1], [6], [7], which encourages the user to label a few images returned as either positive or negative in terms of whether they are relevant to user s query or not. The labeled instances is then used to refine the ranking model towards the user s query intends. Nonetheless, it is not easy to obtain sufficient and explicit user feedback as users are often reluctant to provide enough feedback to search engines. It is noted that search engines can record queries issued by users and the corresponding clicked images. Although the clicked images cannot reflect the explicit user preference on relevance of particular query-image pairs, they statistically indicate the implicit relationship between individual images in the ranked list and the given query [8]. Therefore, we can regard clickthrough data as the implicit user feedback based on an assumption that, in a same query session, most clicked images are relevant to the given query, and the reliability of this assumption has been validated by [9]. We consider a particular ranking scenario where the clickthrough data is incomplete and inaccurate, which makes the exploration of such click-through data difficult. Concretely, incompleteness may lead to an underfitting ranker, while inaccuracy may mislead the ranker. To this end, we propose a Click completion solution for Graph-based Visual Ranking framework, CGVR for short. As shown in Fig. 1, our framework first builds a neighbor graph on the image collection to be ranked, then completes the user-image matrix using a collaborative filter with the visual side-information of the image graph, and lastly applies a soft-label graph ranker to rank the images based on the completed click-through data and the neighborhood graph. The rest of this paper is organized as follows. Section 2 reviews the related works. Section 3 presents the proposed CGVR method. Section 4 reports on the experiments. Finally, section 5 concludes this paper and raises the problem for future works. II. RELATED WORK In this section, we survey related works on graph-based visual ranking and the use of click-through data/implicit feedback. We do not survey the online relevance feedback mechanisms [5] as our method requires no user intervention once the query has been issued. This is motivated by empirical evidence suggesting that few users are willing to perform any form of feedback to improve their search results. A. Graph-based visual ranking Graph-based visual ranking has been extensively studied in the multimedia retrieval area. Its main idea is to describe the dataset as a graph and then decide the importance of each vertex based on local or global structure drawn from the graph. One canonical graph-based ranking technique is the Manifold Ranking (MR) algorithm [10], and He et al.[1] first applied MR to image retrieval. Its limitations are addressed by latter research efforts. For example, Wang et al. [11] improved the /16 $ IEEE DOI /PDCAT

2 Fig. 1. The flowchart of the proposed CGVR framework for image retrieval. Our approach regards the click-through data as a user-image matrix, and applies a click completer to produce a denser user-image matrix, which is taken as the pseudo labels of database images and then cast into a graph ranker to output a ranking list of database images according to the users query. MR accuracy using a k-regular nearest neighbor graph that minimizes the sum of edge weights and balances the edges in the graph as well. Wu et al. [6] proposed a self-immunizing MR algorithm that uses an elastic knn graph to exploit unlabeled images safely. Xu et al. [12] proposed an efficient MR solution based on scalable graph structure to handle largescale image datasets. Wu et al. [7] proposed a multi-view MR method to deal with the scenario that images appear in multiple modalities, such as visual features, surrounding textual features, and query log features, etc. B. Learning with click-through data As a surrogate for relevance feedback, click-through data, as a kind of implicit feedback, has been investigated by researchers. Some researches along this direction are designed for the query-by-example (QBE) paradigm, while others serve for the query-by-keyword (QBK) paradigm. In the first category, both the online feedbacks collected from the current user and the historical feedbacks fulfilled by different users are taken into consideration through a uniform learning framework, so called collaborative image retrieval (CIR). For example, Yin et al. [13] exploited the long-term experiences to select the optimal online ranker from a set of candidates based on reinforcement learning. Hoi et al. [14] regarded the query log as the side information, and then, taking that as constraints, learned a distance metric form a mixture of labeled and unlabeled images. Su et al. [15] suggested discovering the navigation patterns from query logs, and using the patterns to facilitate new searching tasks. Wu et al. [16] proposed a hybrid similarity measure that preserves both visual and semantic resemblance by incorporating shortterm with long-term feedback experiences. Zhang et al. [17] aimed at learning a semantic subspace from similar and dissimilar pairwise constraints generated from query logs. In the second category, an initial ranking list of images is acquired by QBK paradigm, and then reordered using visual information in conjunction with query log, which belongs to the family of the image reranking techniques [18]. For instance, Jain and Varma [19] employed Gaussian Process regression to predict the normalized click count for each image, and combines it with the original ranking score. Zhang et al. [8] leveraged multiple kernels learning to adaptively learn the query-dependent fusion weights for multiple modalities of image collection based on click-through data for identifying user search intention. Pan [20] suggested learning a common latent subspace, which allows direct comparison of text queries and images, by jointly integrating cross-view learning with click-through data. Yu et al. [21] proposed a ranking model that integrates visual features and click-through features through a hypergraph regularizer. III. THE PROPOSED CGVR METHOD Our CGVR method is developed based on two intuitions. At first, a good visual ranker should be able to exploit the implicit feedback (i.e. click-through data) rather than the explicit feedback for the purpose of alleviating the user s labeling burden. Furthermore, the ranker should be able to handle the sparse and noisy properties of the click-through data. A. Preliminaries Let X = {x i,i = 1,,n} denote the image dataset, where each x i R d is a visual feature vector. To discover the geometrical subacute (manifold), we build a neighborhood graph on X, and define W R n n + as the corresponding the 156

3 affinity matrix with element W ij saving the weight of edge between x i and x j. Normally the weight is calculated using a Gaussian kernel ( ) W ij =exp d2 (x i, x j ) σ 2 (1) if i N k (j) or j N k (i), otherwise W ij =0, where N k (i) denotes a k nearest neighbor set of image i. Typically, k is a small number (e.g. a small fraction of n), d(a, b) is a distance metric between two vectors a and b (suggested by [1], L1 distance is considered), and σ is the bandwidth parameter that can be tuned by local scaling technique, the effectiveness of which has been verified in the clustering [22] and ranking [6] tasks. To some degree, the weight W ij can be deemed as the visual similarity between image i and j. The click-through data is represented by a user-image matrix R {0, 1} m n whose rows correspond to users and columns correspond to images, illustrated by Fig. 1. If an image is clicked by a user in a query session, the corresponding cell is assigned to value 1, i.e. R ij = 1, otherwise R ij =0. B. CCV: Click completion with visual side-information Inspired by recommender systems [23] 1, we refer to the problem of click completion as Collaborative Filtering (CF), and more precisely as the item-based CF, which is to predict a user s click on a target image by aggregating the clicks that a few similar images have previously received from that user. Usually, the K nearest neighbors (KNN), the K images with highest similarities to the target image, are selected, and the clicks fulfilled by the given user on those neighboring images are aggregated in order to generate a predicted click for the given user on the target image. Following the notations in Section 3.1, we can formulate the predicted click of user i to image j as follow ˆR ij = Sim(j, k)r ik (2) k Z j where Z j is the set of k neighboring images of image j, and Sim(j, k) designates the similarity between image j and image k. To elevate the accuracy of KNN estimation, we calculate the similarity between two images a and b based on both X and R Sim(a, b) =αsim X (a, b)+(1 α)sim R (a, b) (3) where 0 <α<1 is an adjusting factor, Sim X (a, b) is the visual similarity between image a and image b, which can be calculate using Eq. (1), and Sim R (a, b) is the clicking similarity between image a and image b, which is defined by the Jacquard Coefficient of two clicking vectors 2 Sim R (a, b) = R a R b R a R b 1 The user-image matrix used in this work is very similar to the user-item matrix used in recommender systems. 2 A clicking vector of one image is actually a column of the user-image matrix shown in Fig. 1. (4) where R a {0, 1} m is a column vector of R, which records the clicks fulfilled by different users on image a, and denotes the size of a set. C. GRS: Graph ranking with soft-label Our method is developed based on MR [10], and we slightly modify it for noise-tolerant purpose. Let r : X R be a ranking function that assigns to each image instance x i a ranking score r i. We can view r as a vector r =[r 1,,r n ] T. Also, we define a label vector y =[y 1,,y n ] T, in which y i =1if x i is a query, and y i =0otherwise. The cost function associated with r is defined to be ( ) 2 Q(r) = 1 n r i W ij r j + λ 2 Dii Djj 2 r y 2 (5) i,j=1 where λ is a regularization parameter, and D is a diagonal matrix with D ii = n j=1 W ij. The first term in the cost function is a smoothness constraint, which make the nearby examples in visual space having close ranking scores. The second term is a fitting constraint, which makes the ranking result fitting to the label assignment. By differentiating Q(r) and set it to zero, we can easily get the following closed solution r =(I μs) 1 y (6) where μ =1/(1 + λ), I is an identity matrix, and S is the symmetrical normalization of D, i.e. S = D 1/2 WD 1/2. (7) We can directly use the above closed form solution to compute the ranking scores of examples. However, in large scale problems, we prefer to use the iteration solution r(t +1)=μSr(t)+(1 μ)y. (8) As illustrated by Eq. (6) and (8), it is noted that the label vector plays an important role in image ranking, and a dense y is desirable to derive r. In the regular MR [10], only one labeled instance (i.e. the user s query) is concerned, which is hardly to achieve satisfactory ranking result. A few works, such as [1], [24], [6], and [7], etc., take the online relevance feedback mechanism into consideration for the label vector enrichment, but it is unpractical as mentioned before. Different from previous studies, our idea is to enrich the label vector using the click-through data without any user intervention. The intuition behind our idea is that, when two images are clicked in a same query session, they often share a certain similar meaning and we expect different users to express similar judgments on them. Based on this assumption, the (hidden) correlation between any two images can be inferred by analyzing the judgements (clicks) made by different users on them. Given the user s query q, the correlation of it to a database image i, i.e. Sim R (q, i), can be calculated by Eq. (4). Intuitively, we can directly predict y i =1if Sim R (q, i) is highly positive. Although this idea can be straightly handled by 157

4 MR, it may suffer from performance degradation as erroneous click-through data. In particular, in our scheme, more noises may be introduced by CF. To this end, we treat the labels in two different ways for the fault-tolerance purpose. In details, the suer s query is treated as the hard-labeled instance, while the images predicted by analyzing the query log are treated as soft-labeled instances, i.e. y i = Sim(q, i) [0, 1], where the magnitude of a soft label represents the confidence of the assigned pseudo label. D. Algorithmic framework So far, we can assemble the proposed CCV and GRS methods into a image retrieval framework, which ranks the database images with respect to the user s query based on visual features and click-through data. We outline this algorithmic framework in below. 1) Build a neighborhood graph on X, and compute the corresponding affinity matrix W by Eq. (1) and the normalized one S by Eq. (7); 2) Compute the completed user-image matrix ˆR based on R and S by Eq. (2); 3) Compute the soft-label vector y based on q and ˆR by Eq. (4); 4) Compute the ranking-score vector r based on S and y by Eq. (6) or (8); Note that the step 1 and step 2 can be implemented offline, and therefore CGVR can be quite efficient in processing online queries. Our approach is mainly to process the in-sample queries, but it can be easily extended to the out-of-sample queries. For example, when a completely new query arrives, we can apply a mechanism named one-click query expansion [25] to transform the out-of-sample query into a in-sample query with very little user effort. IV. EXPERIMENTS A. Experimental Setup We employ the 10K Images dataset 3 which is publicly available on the web to make our experiments reproducible. The images are from 100 semantic categories, with 100 images per category. Three kinds of visual features are extracted to represent the images, including a 64-dimensional color histogram, an 18-dimensional wavelet-based texture and a 5- dimensional edge direction histogram [16]. The log dataset consists of 1000 query sessions which are simulated based on the ground truth of image dataset. The average number of clicks in each query session is 20. Further, according to the empirical study conducted by [9], we add 12% noise into the log dataset to approach the real-world search scenario 4 Our CGVR method is compared with two existing approaches which are introduced as follows. 3 The dataset was firstly used in [16]. 4 Experimental result reported by [9] showed that the satisfaction rate of the click-through data is 88.1%, and we use a slightly higher noise level in our experiments. TABLE I TOP 10 UNCLICKED IMAGE RECOMMENDATION. α Precision Recall F TABLE II TOP K UNCLICKED IMAGE RECOMMENDATION. K Precision Recall F Self-Tuning Manifold Ranking (STMR): the regular MR method [1] with self-tuned bandwidth parameter [22]. Hybrid Similarity learning (HySim): a CIR method learning hybrid similarity measure using both explicit and implicit feedbacks [16]. In addition, a degenerated version of CGVR, termed as CGVR-Deg, is also included in comparisons to study whether the CCV solution used by our scheme is effective or not. CGVR-Deg is almost the same with CGVR, except that the former omits the CCV process and directly employs the original click-through data. A query set with 200 image examples is randomly selected to evaluate the average performance of all compared methods. We use the precision-recall-graph (PR-graph), Mean Average Precision (MAP) and the precision at top N retrieval results (P@N) for performance evaluation. B. Performance Evaluation At first, we conduct model selection for our CGVR method, and there are two parameters in total: α used in Eq. (3) and μ used in Eq. (8). For convenience, μ is fixed at 0.01, consistent with the previous experiences [10], [1], [12], [7]. Hence we only need to tune parameter α. Table I summarizes the performance of CCV over different α values, where the best performance has been boldfaced. Based on that, we fix α at 0.7. As illustrated by Table I, although the precision is high, the recall is relatively low. So we further evaluate CCV over different K values (of the TopK recommendation) in order to elevate the recall, described by Table II. We observe that the best F1 value is achieved when K =30, but the highest precision is still attained when K =10. Conservatively, we then evaluate our CGVR method based on two completed log matrices attained when K =10(with highest precision) and K = 30 (with highest F1 value), respectively. Figure 2 print the PR graphs and P@N of three methods, i.e. CGVR-Top10, CGVR-Top30 and CGVR- Deg. By examining all methods, we observe that both CGVR- Top10 and CGVR-Top30 outperform CGVR-Deg, which verifies the effectiveness of the CCV solution used by CGVR. 158

5 (a) PR-graphs (b) curves Fig. 2. The performance of our CGVR method evaluated on different log datasets. Further, by comparing CGVR-Top10 and CGVR-Top30, their performance curves are very similar to each other. Based on this observation, we prefer to Top 10 unclicked images recommendation for the computational efficiency. Furthermore, we compare our CGVR method with MR and HySim, and the performance curves are plotted by Figure 3. By examining all methods, we observe that the performance curves of CGVR and MR are much better than HySim, which verifies the superiority of the graph ranking used by our method in comparison to the pairwise similarity ranking. Also, by comparing CGVR and MR, we find that CGVR outperforms MR significantly, which confirms that leveraging click-through data is beneficial and essential to graph ranking. The performance of HySim is not as good as those reported in [16], which is because when no online feedbacks are provided, HySim is equivalent to a L1 distance based similarity ranking method and therefore its performance degenerates. At last, we compare the three methods again by introducing the online relevance feedback mechanism. For each query, only one round of feedback is performed (the top ten returned images are labeled), since users have no patience to do more. The retrieval performance comparisons are plotted in Figure 4. As expected, the performances of all methods are boosted under the action of online feedbacks, and HySim receives higher improvement than any other methods. It is impressive that the performance of CGVR is still the best after introducing online feedbacks. V. CONCLUSIONS This paper presents a novel CGVR method that aims at noise-resistantly leveraging the click-through data to boost graph-based visual ranking. We first propose a CCV algorithm to enrich the click-through data, and then developing a GRS technique for noise-tolerant image ranking. Experimental s- tudy has validated the superiority of the proposed method in comparison to several existing similarity ranking approaches. To our best knowledge, not much has been known on investigating the click completion problem. In this paper, we tentatively address that using a basic collaborative(cf) technique solution. In the future, we will study more sophisicated CF-like solution to further enhance the graph-based image ranking task. ACKNOWLEDGMENT The authors would like to thank the anonymous reviewers for their constructive suggestions. Jun Wu is the corresponding author of this paper. This work was supported in part by the Natural Science Foundation of China ( , and ), the Fundamental Research Funds for the Central Universities (2015JBM029), and the Research Foundation for Talents of Beijing Jiaotong University (2015RC008). REFERENCES [1] J. He, M. Li, H. Zhang, H. Tong, and C. S. Zhang, Manifold-ranking based image retrieval, in ACM Multimedia, 2004, pp [2] X. Bai, B. Wang, C. Yao, W. Liu, and Z. Tu, Co-transduction for shape retrieval, IEEE Trans. Image Process., vol. 21, no. 5, pp , [3] Y. Yang, D. Xu, F. Nie, J. Luo, and Y. Zhuang, Ranking with local regression and global alignment for cross media retrieval, in ACM Multimedia, 2009, pp [4] S. Bai and X. Bai, Sparse contextual activation for efficient visual reranking, IEEE Trans. Image Process., vol. 25, no. 3, pp , [5] X. S. Zhou and T. S. Huang, Relevance feedback in image retrieval: A comprehensive review, Multimedia Syst., vol. 8, no. 6, pp , [6] J. Wu, Y. Li, S. Feng, and H. Shen, Self-immunizing manifold ranking for image retrieval, in PAKDD, ser. LNAI, vol. 7819, 2013, pp [7] J. Wu, J. Yuan, and J. Luo, Robust multi-view manifold ranking for image retrieval, in PAKDD, ser. LNAI, vol. 9652, 2016, pp [8] Y. Zhang, X. Yang, and T. Mei, Image search reranking with querydependent click-based relevance feedback, IEEE Trans. Image Process., vol. 23, no. 10, pp , [9] G. Smith, C. Brien, and H. Ashman, Evaluating implicit judgments from image search clickthrough data, J. Am. Soc. Inf. Sci. Tec., vol. 63, no. 12, pp , [10] D. Zhou, J. Weston, A. Gretton, O. Bousquet, and B. Scholkopf, Ranking on data manifolds, in NIPS, 2003, pp

6 (a) PR-graphs (b) curves Fig. 3. The performance of our CGVR method compared with several existing approaches using only queries. (a) PR-graphs (b) curves Fig. 4. The performance of our CGVR method compared with several existing approaches after one round of feedback. [11] B. Wang, P. F., K. Hu, and J. Paul, Manifold-ranking based retrieval using k-regular nearest neighbor graph, Pattern Recogn., vol. 45, no. 4, pp , [12] B. Xu, J. Bu, C. Chen, C. Wang, D. Cai, and X. He, Emr: A efficient manifold ranking model for content-based image retrieval, IEEE Trans. Knowl. Data Eng., vol. 27, no. 1, pp , [13] P.-Y. Yin, B. Bhanu, C. K.-C., and A. Dong, Integrating relevance feedback techniques for image retrieval using reinforcement learning, IEEE Trans. Pattern Anal. Mach. Intell., vol. 27, no. 10, pp , [14] S. Hoi, W. Liu, and S.-F. Chang, Semi-supervised distance metric learning for collaborative image retrieval, in CVPR, 2008, pp [15] J. Su, W. Huang, P. Yu, and V. Tseng, Efficient relevance feedback for content-based image retrieval by mining user navigation patterns, IEEE Trans. Knowl. Data Eng., vol. 23, no. 3, pp , [16] J. Wu, H. Shen, Y.-D. Li, Z.-B. Xiao, M.-Y. Lu, and C.-L. Wang, Learning a hybrid similarity measure for image retrieval, Pattern Recogn., vol. 46, no. 11, pp , [17] L. Zhang, H. P. H. Shum, and L. Shao, IEEE Trans. Image Process., vol. 25, no. 3, pp , [18] T. Mei, Y. Rui, S. Li, and Q. Tian, Multimedia search reranking: A literature survey, ACM Comput, Surv., vol. 46, no. 3, p. 38, [19] V. Jain and M. Varma, Learning to re-rank: Query-dependent image re-ranking using click data, in WWW, 2011, pp [20] Y. Pan, T. Yao, T. Mei, H. Li, C.-W. Ngo, and Y. Rui, Click-throughbased cross-view learning for image search, in ACM SIGIR, 2014, pp [21] J. Yu, D. Tao, M. Wang, and Y. Rui, Learning to rank using user clicks and visual features for image retrieval, IEEE Trans. Cybern., vol. 45, no. 4, pp , [22] L. Zelnik-Manor and P. Perona, Self-tuning spectral clustering, in NIPS, 2004, pp [23] F. Ricci, L. Rokach, B. Shapira, and P. B. Kantor, Recommender Systems Handbook. Springer, [24] J. He, M. Li, H. Zhang, H. Tong, and C. Zhang, Generalized manifoldranking-based image retrieval, IEEE Trans. Image Process., vol. 15, no. 10, pp , [25] X. Tang, K. Liu, J. Cui, F. Wen, and X. Wang, Intentsearch: Capturing user intention for one-click internet image search, IEEE Trans Pattern Anal.Mach. Intell., vol. 34, no. 7, pp ,

Semi-supervised Data Representation via Affinity Graph Learning

Semi-supervised Data Representation via Affinity Graph Learning 1 Semi-supervised Data Representation via Affinity Graph Learning Weiya Ren 1 1 College of Information System and Management, National University of Defense Technology, Changsha, Hunan, P.R China, 410073

More information

Query-Sensitive Similarity Measure for Content-Based Image Retrieval

Query-Sensitive Similarity Measure for Content-Based Image Retrieval Query-Sensitive Similarity Measure for Content-Based Image Retrieval Zhi-Hua Zhou Hong-Bin Dai National Laboratory for Novel Software Technology Nanjing University, Nanjing 2193, China {zhouzh, daihb}@lamda.nju.edu.cn

More information

AN ENHANCED ATTRIBUTE RERANKING DESIGN FOR WEB IMAGE SEARCH

AN ENHANCED ATTRIBUTE RERANKING DESIGN FOR WEB IMAGE SEARCH AN ENHANCED ATTRIBUTE RERANKING DESIGN FOR WEB IMAGE SEARCH Sai Tejaswi Dasari #1 and G K Kishore Babu *2 # Student,Cse, CIET, Lam,Guntur, India * Assistant Professort,Cse, CIET, Lam,Guntur, India Abstract-

More information

IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 5, Oct-Nov, 2013 ISSN:

IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 5, Oct-Nov, 2013 ISSN: Semi Automatic Annotation Exploitation Similarity of Pics in i Personal Photo Albums P. Subashree Kasi Thangam 1 and R. Rosy Angel 2 1 Assistant Professor, Department of Computer Science Engineering College,

More information

Tag Based Image Search by Social Re-ranking

Tag Based Image Search by Social Re-ranking Tag Based Image Search by Social Re-ranking Vilas Dilip Mane, Prof.Nilesh P. Sable Student, Department of Computer Engineering, Imperial College of Engineering & Research, Wagholi, Pune, Savitribai Phule

More information

An efficient face recognition algorithm based on multi-kernel regularization learning

An efficient face recognition algorithm based on multi-kernel regularization learning Acta Technica 61, No. 4A/2016, 75 84 c 2017 Institute of Thermomechanics CAS, v.v.i. An efficient face recognition algorithm based on multi-kernel regularization learning Bi Rongrong 1 Abstract. A novel

More information

Learning to Match. Jun Xu, Zhengdong Lu, Tianqi Chen, Hang Li

Learning to Match. Jun Xu, Zhengdong Lu, Tianqi Chen, Hang Li Learning to Match Jun Xu, Zhengdong Lu, Tianqi Chen, Hang Li 1. Introduction The main tasks in many applications can be formalized as matching between heterogeneous objects, including search, recommendation,

More information

A Bayesian Approach to Hybrid Image Retrieval

A Bayesian Approach to Hybrid Image Retrieval A Bayesian Approach to Hybrid Image Retrieval Pradhee Tandon and C. V. Jawahar Center for Visual Information Technology International Institute of Information Technology Hyderabad - 500032, INDIA {pradhee@research.,jawahar@}iiit.ac.in

More information

ImgSeek: Capturing User s Intent For Internet Image Search

ImgSeek: Capturing User s Intent For Internet Image Search ImgSeek: Capturing User s Intent For Internet Image Search Abstract - Internet image search engines (e.g. Bing Image Search) frequently lean on adjacent text features. It is difficult for them to illustrate

More information

A REVIEW ON IMAGE RETRIEVAL USING HYPERGRAPH

A REVIEW ON IMAGE RETRIEVAL USING HYPERGRAPH A REVIEW ON IMAGE RETRIEVAL USING HYPERGRAPH Sandhya V. Kawale Prof. Dr. S. M. Kamalapur M.E. Student Associate Professor Deparment of Computer Engineering, Deparment of Computer Engineering, K. K. Wagh

More information

Improving Image Segmentation Quality Via Graph Theory

Improving Image Segmentation Quality Via Graph Theory International Symposium on Computers & Informatics (ISCI 05) Improving Image Segmentation Quality Via Graph Theory Xiangxiang Li, Songhao Zhu School of Automatic, Nanjing University of Post and Telecommunications,

More information

Image retrieval based on bag of images

Image retrieval based on bag of images University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2009 Image retrieval based on bag of images Jun Zhang University of Wollongong

More information

Effective Latent Space Graph-based Re-ranking Model with Global Consistency

Effective Latent Space Graph-based Re-ranking Model with Global Consistency Effective Latent Space Graph-based Re-ranking Model with Global Consistency Feb. 12, 2009 1 Outline Introduction Related work Methodology Graph-based re-ranking model Learning a latent space graph A case

More information

Location-Aware Web Service Recommendation Using Personalized Collaborative Filtering

Location-Aware Web Service Recommendation Using Personalized Collaborative Filtering ISSN 2395-1621 Location-Aware Web Service Recommendation Using Personalized Collaborative Filtering #1 Shweta A. Bhalerao, #2 Prof. R. N. Phursule 1 Shweta.bhalerao75@gmail.com 2 rphursule@gmail.com #12

More information

IMAGE RETRIEVAL SYSTEM: BASED ON USER REQUIREMENT AND INFERRING ANALYSIS TROUGH FEEDBACK

IMAGE RETRIEVAL SYSTEM: BASED ON USER REQUIREMENT AND INFERRING ANALYSIS TROUGH FEEDBACK IMAGE RETRIEVAL SYSTEM: BASED ON USER REQUIREMENT AND INFERRING ANALYSIS TROUGH FEEDBACK 1 Mount Steffi Varish.C, 2 Guru Rama SenthilVel Abstract - Image Mining is a recent trended approach enveloped in

More information

A Novel Categorized Search Strategy using Distributional Clustering Neenu Joseph. M 1, Sudheep Elayidom 2

A Novel Categorized Search Strategy using Distributional Clustering Neenu Joseph. M 1, Sudheep Elayidom 2 A Novel Categorized Search Strategy using Distributional Clustering Neenu Joseph. M 1, Sudheep Elayidom 2 1 Student, M.E., (Computer science and Engineering) in M.G University, India, 2 Associate Professor

More information

Re-Ranking of Web Image Search Using Relevance Preserving Ranking Techniques

Re-Ranking of Web Image Search Using Relevance Preserving Ranking Techniques Re-Ranking of Web Image Search Using Relevance Preserving Ranking Techniques Delvia Mary Vadakkan #1, Dr.D.Loganathan *2 # Final year M. Tech CSE, MET S School of Engineering, Mala, Trissur, Kerala * HOD,

More information

Topic Diversity Method for Image Re-Ranking

Topic Diversity Method for Image Re-Ranking Topic Diversity Method for Image Re-Ranking D.Ashwini 1, P.Jerlin Jeba 2, D.Vanitha 3 M.E, P.Veeralakshmi M.E., Ph.D 4 1,2 Student, 3 Assistant Professor, 4 Associate Professor 1,2,3,4 Department of Information

More information

A Brief Review of Representation Learning in Recommender 赵鑫 RUC

A Brief Review of Representation Learning in Recommender 赵鑫 RUC A Brief Review of Representation Learning in Recommender Systems @ 赵鑫 RUC batmanfly@qq.com Representation learning Overview of recommender systems Tasks Rating prediction Item recommendation Basic models

More information

Supervised Reranking for Web Image Search

Supervised Reranking for Web Image Search for Web Image Search Query: Red Wine Current Web Image Search Ranking Ranking Features http://www.telegraph.co.uk/306737/red-wineagainst-radiation.html 2 qd, 2.5.5 0.5 0 Linjun Yang and Alan Hanjalic 2

More information

Supplementary Materials for Salient Object Detection: A

Supplementary Materials for Salient Object Detection: A Supplementary Materials for Salient Object Detection: A Discriminative Regional Feature Integration Approach Huaizu Jiang, Zejian Yuan, Ming-Ming Cheng, Yihong Gong Nanning Zheng, and Jingdong Wang Abstract

More information

A Scalable Graph-Based Semi- Supervised Ranking System for Content-Based Image Retrieval

A Scalable Graph-Based Semi- Supervised Ranking System for Content-Based Image Retrieval International Journal of Multimedia Data Engineering and Management, 4(4), 15-34, October-December 2013 15 A Scalable Graph-Based Semi- Supervised Ranking System for Content-Based Image Retrieval Xiaojun

More information

Content-based Dimensionality Reduction for Recommender Systems

Content-based Dimensionality Reduction for Recommender Systems Content-based Dimensionality Reduction for Recommender Systems Panagiotis Symeonidis Aristotle University, Department of Informatics, Thessaloniki 54124, Greece symeon@csd.auth.gr Abstract. Recommender

More information

SEMI-SUPERVISED LEARNING (SSL) for classification

SEMI-SUPERVISED LEARNING (SSL) for classification IEEE SIGNAL PROCESSING LETTERS, VOL. 22, NO. 12, DECEMBER 2015 2411 Bilinear Embedding Label Propagation: Towards Scalable Prediction of Image Labels Yuchen Liang, Zhao Zhang, Member, IEEE, Weiming Jiang,

More information

Unsupervised Outlier Detection and Semi-Supervised Learning

Unsupervised Outlier Detection and Semi-Supervised Learning Unsupervised Outlier Detection and Semi-Supervised Learning Adam Vinueza Department of Computer Science University of Colorado Boulder, Colorado 832 vinueza@colorado.edu Gregory Z. Grudic Department of

More information

Graph Autoencoder-Based Unsupervised Feature Selection

Graph Autoencoder-Based Unsupervised Feature Selection Graph Autoencoder-Based Unsupervised Feature Selection Siwei Feng Department of Electrical and Computer Engineering University of Massachusetts Amherst Amherst, MA, 01003 siwei@umass.edu Marco F. Duarte

More information

SUPPLEMENTARY MATERIAL

SUPPLEMENTARY MATERIAL SUPPLEMENTARY MATERIAL Zhiyuan Zha 1,3, Xin Liu 2, Ziheng Zhou 2, Xiaohua Huang 2, Jingang Shi 2, Zhenhong Shang 3, Lan Tang 1, Yechao Bai 1, Qiong Wang 1, Xinggan Zhang 1 1 School of Electronic Science

More information

Improving Latent Fingerprint Matching Performance by Orientation Field Estimation using Localized Dictionaries

Improving Latent Fingerprint Matching Performance by Orientation Field Estimation using Localized Dictionaries Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 11, November 2014,

More information

PERSONALIZED TAG RECOMMENDATION

PERSONALIZED TAG RECOMMENDATION PERSONALIZED TAG RECOMMENDATION Ziyu Guan, Xiaofei He, Jiajun Bu, Qiaozhu Mei, Chun Chen, Can Wang Zhejiang University, China Univ. of Illinois/Univ. of Michigan 1 Booming of Social Tagging Applications

More information

Supplementary Material for Ensemble Diffusion for Retrieval

Supplementary Material for Ensemble Diffusion for Retrieval Supplementary Material for Ensemble Diffusion for Retrieval Song Bai 1, Zhichao Zhou 1, Jingdong Wang, Xiang Bai 1, Longin Jan Latecki 3, Qi Tian 4 1 Huazhong University of Science and Technology, Microsoft

More information

Stepwise Metric Adaptation Based on Semi-Supervised Learning for Boosting Image Retrieval Performance

Stepwise Metric Adaptation Based on Semi-Supervised Learning for Boosting Image Retrieval Performance Stepwise Metric Adaptation Based on Semi-Supervised Learning for Boosting Image Retrieval Performance Hong Chang & Dit-Yan Yeung Department of Computer Science Hong Kong University of Science and Technology

More information

Fast trajectory matching using small binary images

Fast trajectory matching using small binary images Title Fast trajectory matching using small binary images Author(s) Zhuo, W; Schnieders, D; Wong, KKY Citation The 3rd International Conference on Multimedia Technology (ICMT 2013), Guangzhou, China, 29

More information

Limitations of Matrix Completion via Trace Norm Minimization

Limitations of Matrix Completion via Trace Norm Minimization Limitations of Matrix Completion via Trace Norm Minimization ABSTRACT Xiaoxiao Shi Computer Science Department University of Illinois at Chicago xiaoxiao@cs.uic.edu In recent years, compressive sensing

More information

Graph-based Techniques for Searching Large-Scale Noisy Multimedia Data

Graph-based Techniques for Searching Large-Scale Noisy Multimedia Data Graph-based Techniques for Searching Large-Scale Noisy Multimedia Data Shih-Fu Chang Department of Electrical Engineering Department of Computer Science Columbia University Joint work with Jun Wang (IBM),

More information

A Fuzzy C-means Clustering Algorithm Based on Pseudo-nearest-neighbor Intervals for Incomplete Data

A Fuzzy C-means Clustering Algorithm Based on Pseudo-nearest-neighbor Intervals for Incomplete Data Journal of Computational Information Systems 11: 6 (2015) 2139 2146 Available at http://www.jofcis.com A Fuzzy C-means Clustering Algorithm Based on Pseudo-nearest-neighbor Intervals for Incomplete Data

More information

Transductive Phoneme Classification Using Local Scaling And Confidence

Transductive Phoneme Classification Using Local Scaling And Confidence 202 IEEE 27-th Convention of Electrical and Electronics Engineers in Israel Transductive Phoneme Classification Using Local Scaling And Confidence Matan Orbach Dept. of Electrical Engineering Technion

More information

Recommendation System for Location-based Social Network CS224W Project Report

Recommendation System for Location-based Social Network CS224W Project Report Recommendation System for Location-based Social Network CS224W Project Report Group 42, Yiying Cheng, Yangru Fang, Yongqing Yuan 1 Introduction With the rapid development of mobile devices and wireless

More information

Easy Samples First: Self-paced Reranking for Zero-Example Multimedia Search

Easy Samples First: Self-paced Reranking for Zero-Example Multimedia Search Easy Samples First: Self-paced Reranking for Zero-Example Multimedia Search Lu Jiang 1, Deyu Meng 2, Teruko Mitamura 1, Alexander G. Hauptmann 1 1 School of Computer Science, Carnegie Mellon University

More information

Multi-modal image retrieval with random walk on multi-layer graphs

Multi-modal image retrieval with random walk on multi-layer graphs Multi-modal image retrieval with random walk on multi-layer graphs Renata Khasanova, Xiaowen Dong and Pascal Frossard Signal Processing Laboratory (LTS4), EPFL, Lausanne, Switzerland Email: renata.khasanova@epfl.ch,

More information

Automatic Shadow Removal by Illuminance in HSV Color Space

Automatic Shadow Removal by Illuminance in HSV Color Space Computer Science and Information Technology 3(3): 70-75, 2015 DOI: 10.13189/csit.2015.030303 http://www.hrpub.org Automatic Shadow Removal by Illuminance in HSV Color Space Wenbo Huang 1, KyoungYeon Kim

More information

GRAPH-BASED SEMI-SUPERVISED HYPERSPECTRAL IMAGE CLASSIFICATION USING SPATIAL INFORMATION

GRAPH-BASED SEMI-SUPERVISED HYPERSPECTRAL IMAGE CLASSIFICATION USING SPATIAL INFORMATION GRAPH-BASED SEMI-SUPERVISED HYPERSPECTRAL IMAGE CLASSIFICATION USING SPATIAL INFORMATION Nasehe Jamshidpour a, Saeid Homayouni b, Abdolreza Safari a a Dept. of Geomatics Engineering, College of Engineering,

More information

The Comparative Study of Machine Learning Algorithms in Text Data Classification*

The Comparative Study of Machine Learning Algorithms in Text Data Classification* The Comparative Study of Machine Learning Algorithms in Text Data Classification* Wang Xin School of Science, Beijing Information Science and Technology University Beijing, China Abstract Classification

More information

A New Technique to Optimize User s Browsing Session using Data Mining

A New Technique to Optimize User s Browsing Session using Data Mining Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 3, March 2015,

More information

Reddit Recommendation System Daniel Poon, Yu Wu, David (Qifan) Zhang CS229, Stanford University December 11 th, 2011

Reddit Recommendation System Daniel Poon, Yu Wu, David (Qifan) Zhang CS229, Stanford University December 11 th, 2011 Reddit Recommendation System Daniel Poon, Yu Wu, David (Qifan) Zhang CS229, Stanford University December 11 th, 2011 1. Introduction Reddit is one of the most popular online social news websites with millions

More information

A semi-supervised learning algorithm for relevance feedback and collaborative image retrieval

A semi-supervised learning algorithm for relevance feedback and collaborative image retrieval Pedronette et al. EURASIP Journal on Image and Video Processing (25) 25:27 DOI 6/s364-5-8-6 RESEARCH Open Access A semi-supervised learning algorithm for relevance feedback and collaborative image retrieval

More information

An Efficient Methodology for Image Rich Information Retrieval

An Efficient Methodology for Image Rich Information Retrieval An Efficient Methodology for Image Rich Information Retrieval 56 Ashwini Jaid, 2 Komal Savant, 3 Sonali Varma, 4 Pushpa Jat, 5 Prof. Sushama Shinde,2,3,4 Computer Department, Siddhant College of Engineering,

More information

Estimating Human Pose in Images. Navraj Singh December 11, 2009

Estimating Human Pose in Images. Navraj Singh December 11, 2009 Estimating Human Pose in Images Navraj Singh December 11, 2009 Introduction This project attempts to improve the performance of an existing method of estimating the pose of humans in still images. Tasks

More information

Learning the Three Factors of a Non-overlapping Multi-camera Network Topology

Learning the Three Factors of a Non-overlapping Multi-camera Network Topology Learning the Three Factors of a Non-overlapping Multi-camera Network Topology Xiaotang Chen, Kaiqi Huang, and Tieniu Tan National Laboratory of Pattern Recognition, Institute of Automation, Chinese Academy

More information

Web Image Re-Ranking UsingQuery-Specific Semantic Signatures

Web Image Re-Ranking UsingQuery-Specific Semantic Signatures IEEE Transactions on Pattern Analysis and Machine Intelligence (Volume:36, Issue: 4 ) April 2014, DOI:10.1109/TPAMI.201 Web Image Re-Ranking UsingQuery-Specific Semantic Signatures Xiaogang Wang 1 1 Department

More information

Semi-Supervised Clustering with Partial Background Information

Semi-Supervised Clustering with Partial Background Information Semi-Supervised Clustering with Partial Background Information Jing Gao Pang-Ning Tan Haibin Cheng Abstract Incorporating background knowledge into unsupervised clustering algorithms has been the subject

More information

CHAPTER 6 PROPOSED HYBRID MEDICAL IMAGE RETRIEVAL SYSTEM USING SEMANTIC AND VISUAL FEATURES

CHAPTER 6 PROPOSED HYBRID MEDICAL IMAGE RETRIEVAL SYSTEM USING SEMANTIC AND VISUAL FEATURES 188 CHAPTER 6 PROPOSED HYBRID MEDICAL IMAGE RETRIEVAL SYSTEM USING SEMANTIC AND VISUAL FEATURES 6.1 INTRODUCTION Image representation schemes designed for image retrieval systems are categorized into two

More information

Top-k Keyword Search Over Graphs Based On Backward Search

Top-k Keyword Search Over Graphs Based On Backward Search Top-k Keyword Search Over Graphs Based On Backward Search Jia-Hui Zeng, Jiu-Ming Huang, Shu-Qiang Yang 1College of Computer National University of Defense Technology, Changsha, China 2College of Computer

More information

Adaptive Binary Quantization for Fast Nearest Neighbor Search

Adaptive Binary Quantization for Fast Nearest Neighbor Search IBM Research Adaptive Binary Quantization for Fast Nearest Neighbor Search Zhujin Li 1, Xianglong Liu 1*, Junjie Wu 1, and Hao Su 2 1 Beihang University, Beijing, China 2 Stanford University, Stanford,

More information

Kernel-based Transductive Learning with Nearest Neighbors

Kernel-based Transductive Learning with Nearest Neighbors Kernel-based Transductive Learning with Nearest Neighbors Liangcai Shu, Jinhui Wu, Lei Yu, and Weiyi Meng Dept. of Computer Science, SUNY at Binghamton Binghamton, New York 13902, U. S. A. {lshu,jwu6,lyu,meng}@cs.binghamton.edu

More information

Towards QoS Prediction for Web Services based on Adjusted Euclidean Distances

Towards QoS Prediction for Web Services based on Adjusted Euclidean Distances Appl. Math. Inf. Sci. 7, No. 2, 463-471 (2013) 463 Applied Mathematics & Information Sciences An International Journal Towards QoS Prediction for Web Services based on Adjusted Euclidean Distances Yuyu

More information

Keywords semantic, re-ranking, query, search engine, framework.

Keywords semantic, re-ranking, query, search engine, framework. Volume 5, Issue 3, March 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Image Re-Ranking

More information

Semi supervised clustering for Text Clustering

Semi supervised clustering for Text Clustering Semi supervised clustering for Text Clustering N.Saranya 1 Assistant Professor, Department of Computer Science and Engineering, Sri Eshwar College of Engineering, Coimbatore 1 ABSTRACT: Based on clustering

More information

Face Recognition Based on LDA and Improved Pairwise-Constrained Multiple Metric Learning Method

Face Recognition Based on LDA and Improved Pairwise-Constrained Multiple Metric Learning Method Journal of Information Hiding and Multimedia Signal Processing c 2016 ISSN 2073-4212 Ubiquitous International Volume 7, Number 5, September 2016 Face Recognition ased on LDA and Improved Pairwise-Constrained

More information

PERSON RE-IDENTIFICATION BY MANIFOLD RANKING

PERSON RE-IDENTIFICATION BY MANIFOLD RANKING PERSON RE-IDENTIFICATION BY MANIFOLD RANKING Chen Change Loy 1, Chunxiao Liu 2, Shaogang Gong 3 1 Dept. of Information Engineering, The Chinese University of Hong Kong 2 Dept. of Electronic Engineering,

More information

Detecting Burnscar from Hyperspectral Imagery via Sparse Representation with Low-Rank Interference

Detecting Burnscar from Hyperspectral Imagery via Sparse Representation with Low-Rank Interference Detecting Burnscar from Hyperspectral Imagery via Sparse Representation with Low-Rank Interference Minh Dao 1, Xiang Xiang 1, Bulent Ayhan 2, Chiman Kwan 2, Trac D. Tran 1 Johns Hopkins Univeristy, 3400

More information

Image Retrieval with Ambiguity Resolution using Enhanced Graph based Ranking Model

Image Retrieval with Ambiguity Resolution using Enhanced Graph based Ranking Model IJIRST International Journal for Innovative Research in Science & Technology Volume 3 Issue 07 December 2016 ISSN (online): 2349-6010 Image Retrieval with Ambiguity Resolution using Enhanced Graph based

More information

LETTER Local and Nonlocal Color Line Models for Image Matting

LETTER Local and Nonlocal Color Line Models for Image Matting 1814 IEICE TRANS. FUNDAMENTALS, VOL.E97 A, NO.8 AUGUST 2014 LETTER Local and Nonlocal Color Line Models for Image Matting Byoung-Kwang KIM a), Meiguang JIN, Nonmembers, and Woo-Jin SONG, Member SUMMARY

More information

Cost-alleviative Learning for Deep Convolutional Neural Network-based Facial Part Labeling

Cost-alleviative Learning for Deep Convolutional Neural Network-based Facial Part Labeling [DOI: 10.2197/ipsjtcva.7.99] Express Paper Cost-alleviative Learning for Deep Convolutional Neural Network-based Facial Part Labeling Takayoshi Yamashita 1,a) Takaya Nakamura 1 Hiroshi Fukui 1,b) Yuji

More information

Multidirectional 2DPCA Based Face Recognition System

Multidirectional 2DPCA Based Face Recognition System Multidirectional 2DPCA Based Face Recognition System Shilpi Soni 1, Raj Kumar Sahu 2 1 M.E. Scholar, Department of E&Tc Engg, CSIT, Durg 2 Associate Professor, Department of E&Tc Engg, CSIT, Durg Email:

More information

This research aims to present a new way of visualizing multi-dimensional data using generalized scatterplots by sensitivity coefficients to highlight

This research aims to present a new way of visualizing multi-dimensional data using generalized scatterplots by sensitivity coefficients to highlight This research aims to present a new way of visualizing multi-dimensional data using generalized scatterplots by sensitivity coefficients to highlight local variation of one variable with respect to another.

More information

Survey on Recommendation of Personalized Travel Sequence

Survey on Recommendation of Personalized Travel Sequence Survey on Recommendation of Personalized Travel Sequence Mayuri D. Aswale 1, Dr. S. C. Dharmadhikari 2 ME Student, Department of Information Technology, PICT, Pune, India 1 Head of Department, Department

More information

Video annotation based on adaptive annular spatial partition scheme

Video annotation based on adaptive annular spatial partition scheme Video annotation based on adaptive annular spatial partition scheme Guiguang Ding a), Lu Zhang, and Xiaoxu Li Key Laboratory for Information System Security, Ministry of Education, Tsinghua National Laboratory

More information

Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating

Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating Dipak J Kakade, Nilesh P Sable Department of Computer Engineering, JSPM S Imperial College of Engg. And Research,

More information

R. R. Badre Associate Professor Department of Computer Engineering MIT Academy of Engineering, Pune, Maharashtra, India

R. R. Badre Associate Professor Department of Computer Engineering MIT Academy of Engineering, Pune, Maharashtra, India Volume 7, Issue 4, April 2017 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Web Service Ranking

More information

Query Independent Scholarly Article Ranking

Query Independent Scholarly Article Ranking Query Independent Scholarly Article Ranking Shuai Ma, Chen Gong, Renjun Hu, Dongsheng Luo, Chunming Hu, Jinpeng Huai SKLSDE Lab, Beihang University, China Beijing Advanced Innovation Center for Big Data

More information

over Multi Label Images

over Multi Label Images IBM Research Compact Hashing for Mixed Image Keyword Query over Multi Label Images Xianglong Liu 1, Yadong Mu 2, Bo Lang 1 and Shih Fu Chang 2 1 Beihang University, Beijing, China 2 Columbia University,

More information

Content Based Image Retrieval system with a combination of Rough Set and Support Vector Machine

Content Based Image Retrieval system with a combination of Rough Set and Support Vector Machine Shahabi Lotfabadi, M., Shiratuddin, M.F. and Wong, K.W. (2013) Content Based Image Retrieval system with a combination of rough set and support vector machine. In: 9th Annual International Joint Conferences

More information

CHAPTER 6 IDENTIFICATION OF CLUSTERS USING VISUAL VALIDATION VAT ALGORITHM

CHAPTER 6 IDENTIFICATION OF CLUSTERS USING VISUAL VALIDATION VAT ALGORITHM 96 CHAPTER 6 IDENTIFICATION OF CLUSTERS USING VISUAL VALIDATION VAT ALGORITHM Clustering is the process of combining a set of relevant information in the same group. In this process KM algorithm plays

More information

High Capacity Reversible Watermarking Scheme for 2D Vector Maps

High Capacity Reversible Watermarking Scheme for 2D Vector Maps Scheme for 2D Vector Maps 1 Information Management Department, China National Petroleum Corporation, Beijing, 100007, China E-mail: jxw@petrochina.com.cn Mei Feng Research Institute of Petroleum Exploration

More information

A REVIEW ON SEARCH BASED FACE ANNOTATION USING WEAKLY LABELED FACIAL IMAGES

A REVIEW ON SEARCH BASED FACE ANNOTATION USING WEAKLY LABELED FACIAL IMAGES A REVIEW ON SEARCH BASED FACE ANNOTATION USING WEAKLY LABELED FACIAL IMAGES Dhokchaule Sagar Patare Swati Makahre Priyanka Prof.Borude Krishna ABSTRACT This paper investigates framework of face annotation

More information

Design and Implementation of Movie Recommendation System Based on Knn Collaborative Filtering Algorithm

Design and Implementation of Movie Recommendation System Based on Knn Collaborative Filtering Algorithm Design and Implementation of Movie Recommendation System Based on Knn Collaborative Filtering Algorithm Bei-Bei CUI School of Software Engineering, Beijing University of Technology, Beijing, China e-mail:

More information

Image Quality Assessment based on Improved Structural SIMilarity

Image Quality Assessment based on Improved Structural SIMilarity Image Quality Assessment based on Improved Structural SIMilarity Jinjian Wu 1, Fei Qi 2, and Guangming Shi 3 School of Electronic Engineering, Xidian University, Xi an, Shaanxi, 710071, P.R. China 1 jinjian.wu@mail.xidian.edu.cn

More information

Image Similarity Measurements Using Hmok- Simrank

Image Similarity Measurements Using Hmok- Simrank Image Similarity Measurements Using Hmok- Simrank A.Vijay Department of computer science and Engineering Selvam College of Technology, Namakkal, Tamilnadu,india. k.jayarajan M.E (Ph.D) Assistant Professor,

More information

Context based Re-ranking of Web Documents (CReWD)

Context based Re-ranking of Web Documents (CReWD) Context based Re-ranking of Web Documents (CReWD) Arijit Banerjee, Jagadish Venkatraman Graduate Students, Department of Computer Science, Stanford University arijitb@stanford.edu, jagadish@stanford.edu}

More information

Collaborative Filtering using Euclidean Distance in Recommendation Engine

Collaborative Filtering using Euclidean Distance in Recommendation Engine Indian Journal of Science and Technology, Vol 9(37), DOI: 10.17485/ijst/2016/v9i37/102074, October 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Collaborative Filtering using Euclidean Distance

More information

Learning and Inferring Depth from Monocular Images. Jiyan Pan April 1, 2009

Learning and Inferring Depth from Monocular Images. Jiyan Pan April 1, 2009 Learning and Inferring Depth from Monocular Images Jiyan Pan April 1, 2009 Traditional ways of inferring depth Binocular disparity Structure from motion Defocus Given a single monocular image, how to infer

More information

Using PageRank in Feature Selection

Using PageRank in Feature Selection Using PageRank in Feature Selection Dino Ienco, Rosa Meo, and Marco Botta Dipartimento di Informatica, Università di Torino, Italy fienco,meo,bottag@di.unito.it Abstract. Feature selection is an important

More information

NDoT: Nearest Neighbor Distance Based Outlier Detection Technique

NDoT: Nearest Neighbor Distance Based Outlier Detection Technique NDoT: Nearest Neighbor Distance Based Outlier Detection Technique Neminath Hubballi 1, Bidyut Kr. Patra 2, and Sukumar Nandi 1 1 Department of Computer Science & Engineering, Indian Institute of Technology

More information

CONTENT ADAPTIVE SCREEN IMAGE SCALING

CONTENT ADAPTIVE SCREEN IMAGE SCALING CONTENT ADAPTIVE SCREEN IMAGE SCALING Yao Zhai (*), Qifei Wang, Yan Lu, Shipeng Li University of Science and Technology of China, Hefei, Anhui, 37, China Microsoft Research, Beijing, 8, China ABSTRACT

More information

IMAGE DENOISING USING NL-MEANS VIA SMOOTH PATCH ORDERING

IMAGE DENOISING USING NL-MEANS VIA SMOOTH PATCH ORDERING IMAGE DENOISING USING NL-MEANS VIA SMOOTH PATCH ORDERING Idan Ram, Michael Elad and Israel Cohen Department of Electrical Engineering Department of Computer Science Technion - Israel Institute of Technology

More information

A Recommender System Based on Improvised K- Means Clustering Algorithm

A Recommender System Based on Improvised K- Means Clustering Algorithm A Recommender System Based on Improvised K- Means Clustering Algorithm Shivani Sharma Department of Computer Science and Applications, Kurukshetra University, Kurukshetra Shivanigaur83@yahoo.com Abstract:

More information

A new Graph constructor for Semi-supervised Discriminant Analysis via Group Sparsity

A new Graph constructor for Semi-supervised Discriminant Analysis via Group Sparsity 2011 Sixth International Conference on Image and Graphics A new Graph constructor for Semi-supervised Discriminant Analysis via Group Sparsity Haoyuan Gao, Liansheng Zhuang, Nenghai Yu MOE-MS Key Laboratory

More information

Face Alignment Under Various Poses and Expressions

Face Alignment Under Various Poses and Expressions Face Alignment Under Various Poses and Expressions Shengjun Xin and Haizhou Ai Computer Science and Technology Department, Tsinghua University, Beijing 100084, China ahz@mail.tsinghua.edu.cn Abstract.

More information

ACM MM Dong Liu, Shuicheng Yan, Yong Rui and Hong-Jiang Zhang

ACM MM Dong Liu, Shuicheng Yan, Yong Rui and Hong-Jiang Zhang ACM MM 2010 Dong Liu, Shuicheng Yan, Yong Rui and Hong-Jiang Zhang Harbin Institute of Technology National University of Singapore Microsoft Corporation Proliferation of images and videos on the Internet

More information

An Empirical Study of Lazy Multilabel Classification Algorithms

An Empirical Study of Lazy Multilabel Classification Algorithms An Empirical Study of Lazy Multilabel Classification Algorithms E. Spyromitros and G. Tsoumakas and I. Vlahavas Department of Informatics, Aristotle University of Thessaloniki, 54124 Thessaloniki, Greece

More information

Random projection for non-gaussian mixture models

Random projection for non-gaussian mixture models Random projection for non-gaussian mixture models Győző Gidófalvi Department of Computer Science and Engineering University of California, San Diego La Jolla, CA 92037 gyozo@cs.ucsd.edu Abstract Recently,

More information

A Deep Relevance Matching Model for Ad-hoc Retrieval

A Deep Relevance Matching Model for Ad-hoc Retrieval A Deep Relevance Matching Model for Ad-hoc Retrieval Jiafeng Guo 1, Yixing Fan 1, Qingyao Ai 2, W. Bruce Croft 2 1 CAS Key Lab of Web Data Science and Technology, Institute of Computing Technology, Chinese

More information

Outlier Detection Using Unsupervised and Semi-Supervised Technique on High Dimensional Data

Outlier Detection Using Unsupervised and Semi-Supervised Technique on High Dimensional Data Outlier Detection Using Unsupervised and Semi-Supervised Technique on High Dimensional Data Ms. Gayatri Attarde 1, Prof. Aarti Deshpande 2 M. E Student, Department of Computer Engineering, GHRCCEM, University

More information

Top-N Recommendations from Implicit Feedback Leveraging Linked Open Data

Top-N Recommendations from Implicit Feedback Leveraging Linked Open Data Top-N Recommendations from Implicit Feedback Leveraging Linked Open Data Vito Claudio Ostuni, Tommaso Di Noia, Roberto Mirizzi, Eugenio Di Sciascio Polytechnic University of Bari, Italy {ostuni,mirizzi}@deemail.poliba.it,

More information

Object Detection with Partial Occlusion Based on a Deformable Parts-Based Model

Object Detection with Partial Occlusion Based on a Deformable Parts-Based Model Object Detection with Partial Occlusion Based on a Deformable Parts-Based Model Johnson Hsieh (johnsonhsieh@gmail.com), Alexander Chia (alexchia@stanford.edu) Abstract -- Object occlusion presents a major

More information

Using PageRank in Feature Selection

Using PageRank in Feature Selection Using PageRank in Feature Selection Dino Ienco, Rosa Meo, and Marco Botta Dipartimento di Informatica, Università di Torino, Italy {ienco,meo,botta}@di.unito.it Abstract. Feature selection is an important

More information

Improving the Efficiency of Fast Using Semantic Similarity Algorithm

Improving the Efficiency of Fast Using Semantic Similarity Algorithm International Journal of Scientific and Research Publications, Volume 4, Issue 1, January 2014 1 Improving the Efficiency of Fast Using Semantic Similarity Algorithm D.KARTHIKA 1, S. DIVAKAR 2 Final year

More information

Unsupervised learning on Color Images

Unsupervised learning on Color Images Unsupervised learning on Color Images Sindhuja Vakkalagadda 1, Prasanthi Dhavala 2 1 Computer Science and Systems Engineering, Andhra University, AP, India 2 Computer Science and Systems Engineering, Andhra

More information

Supplementary A. Overview. C. Time and Space Complexity. B. Shape Retrieval. D. Permutation Invariant SOM. B.1. Dataset

Supplementary A. Overview. C. Time and Space Complexity. B. Shape Retrieval. D. Permutation Invariant SOM. B.1. Dataset Supplementary A. Overview This supplementary document provides more technical details and experimental results to the main paper. Shape retrieval experiments are demonstrated with ShapeNet Core55 dataset

More information

Parallel Field Ranking

Parallel Field Ranking Parallel Field Ranking Ming Ji, Binbin Lin, Xiaofei He, Deng Cai, Jiawei Han Department of Computer Science, University of Illinois at Urbana-Champaign, Urbana, IL, USA State Key Lab of CAD&CG, College

More information