Skip to main content
Top
Published in: EURASIP Journal on Wireless Communications and Networking 1/2019

Open Access 01-12-2019 | Research

Improved LSH for privacy-aware and robust recommender system with sparse data in edge environment

Authors: Xuening Chen, Hanwen Liu, Dan Yang

Published in: EURASIP Journal on Wireless Communications and Networking | Issue 1/2019

Activate our intelligent search to find suitable subject content or patents.

search-config
loading …

Abstract

Recommender systems have become a popular and effective way to quickly discover new service items that are probably preferred by prospective users. Through analyzing the historical service usage data produced in the past, a recommender system can infer the potential user preferences and make accurate recommendations accordingly. However, in the edge environment, the service usage data stored in each edge server are often very sparse, which may result in expected cold-start problems. Besides, in the edge environment, the data required to make an optimal service recommendation decision are often stored in different edge clients or servers, which require additional privacy-preservation strategies to secure the sensitive data involved. Considering the above two drawbacks, traditional locality-sensitive hashing (LSH) is improved to be multi-probing LSH and then introduced to aid the recommendation process so as to guarantee the security and robustness of recommender systems. Experiments conducted on well-known dataset prove the effectiveness and efficiency of the work.
Notes

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Abbreviations
CDL
Collaborative deep learning
CF
Collaborative filtering
LSH
Locality-sensitive hashing
QoS
Quality of service

1 Introduction

With the popularization of service-oriented architecture in web of things, a large number of services flooded in people’s daily life. On the one hand, so many candidate services mean that for a prospective user, the cost and time for finding a preferred service is often high; on the other hand, the users’ expectations of high timeliness and high accuracy for service-oriented applications require that a recommender system can provide real-time and accurate recommended lists for users [14]. In view of this, personalized and light-weight recommendation technology emerges to achieve the above goals. By analyzing user preferences, recommending systems can provide users with rapid and accurate personalized recommended lists, which greatly reduce the users’ selection cost and alleviate their decision-making burden [5, 6].
Due to the unique characteristics of domain independence and easy interpretation of recommended results, collaborative filtering (CF) has become one of the most popular techniques in various recommendation systems. Typically, by analyzing a great deal of historical QoS (quality of service) data, similar neighbors of a target user could be discovered; then, the probably preferred services of the target user are recommended to him or her with limited time cost. This way, the target users’ decision-making burden can be reduced to some extent.
Nevertheless, traditional collaborative filtering recommendation methods mostly suppose the decision-making data used for recommendation are centralized without considering the fragmented data distributed in different parties (such as Google and Microsoft). For example, part of QoS data may be stored in the Google platform, while other data are owned by Microsoft. From the angle of providing users with more accurate and comprehensive recommended results, it is obliged to fuse the QoS data stored in Google and Microsoft. However, as two parties with conflicts of interest, Google and Microsoft are often not willing to reveal their own data to each other due to the necessity to protect users’ private information, which block the cross-platform data integration and multi-source recommendation.
LSH (locality-sensitive hashing) [7] has already been applied to service recommendation to realize the balance between user privacy protection and accurate data integration. Concretely, a data platform (e.g., Google or Microsoft) first transforms its original data into corresponding hash values with less privacy and then open these hash values to external platforms for collaboration purpose. Finally, according to the hash values of data from different platforms, a recommender system can produce accurate service recommended list. This way, user privacy can be protected; additionally, the recommendation efficiency can be enhanced significantly as hash tables can be built offline.
However, in the edge environment, the computation and storage capabilities of each edge server or client are often limited; therefore, the historical QoS data kept by each edge client or server for recommendations are often not dense enough, but sparse enough. Therefore, it is of high probability that a target user cannot find similar neighbors or target services. In this situation, data sparsity problems occur while traditional LSH method cannot deal with this problem effectively, which brings a great challenge for more comprehensive and accurate service recommendations.
Considering the abovementioned data sparsity and privacy-preservation challenges, we introduce the multi-probing LSH technique and put forward a robust and privacy-preserving method to improve the recommendation robustness in the sparse-data environment. Briefly, the major contributions of our work are mainly the following three aspects.
(1)
We recognize the drawback of traditional LSH technique in handling the distributed recommendation applications with sparse data in the edge environment.
 
(2)
We improve the traditional LSH technique to be multi-probing one and recruit it to deal with the sparse data problems to pursue robust and privacy-aware recommendations.
 
(3)
A series of experiments are deployed on a freely available dataset, i.e., Movielens [8]. The results of experiments validate that our method achieves higher robustness and acceptable accuracy compared to other competitive methods.
 
The structure of the paper is shown as follows. Related work about service recommendation is presented in Section 2. We formulate the data sparsity problems of recommendation in the edge environment and afterwards motivate the method by a vivid example in Section 3. In Section 4, we detail the proposed service recommendation method concretely. Experiments are implemented and results are analyzed in Section 5. In Section 6, we summarize this paper and point out the possible improvement directions in the future research.
In this section, we briefly present an overview of existing works from the following two aspects: data sparsity problem in service recommendation and recommendation with privacy preservation.

2.1 Data sparsity problem in service recommendation

When more and more web services are appearing in the network, the possibility that a web service would be selected is becoming smaller and smaller. Therefore, users often do not rate enough web services, and hence, historical QoS data are often not sufficient for determining a target user’s similar neighbors, i.e., data sparsity problems occur [9]. Many studies have tried to alleviate the data sparsity problems. Jing [10] proposed a sparse probabilistic matrix factorization method (SPMF) by employing Laplacian distribution to determine the service/user latent feature; Laplacian distribution has the ability to generate sparse coding and help to recommend the tail services. Hu [11] proposed an enhanced memory-based collaborative filtering method to discover potential similarity relationships between users or items by using limited user-item interactions; thus, they incorporate user similarity reinforcement and item similarity reinforcement into a comprehensive framework and make more reliable rating predictions. Qi [12] put forward a structural balance theory (SBT)-based recommendation method for the sparsity of big rating data in E-commerce. According to the rule of structural balance theory, indirect friends of a target user are discovered and “possibly similar product items” are recommended to him or her.
In order to produce more reasonable and comprehensive recommended results under sparse data conditions, auxiliary information is incorporated to the recommendation methods. Wang [13] integrates time information into collaborative filtering method, and a hybrid personalized random walk algorithm for searching indirect similar user/service is proposed to alleviate the data sparsity problem. Hu [14] proposed a hierarchical Bayesian model called collaborative deep learning (CDL), which performs deep representation learning for the content information and collaborative filtering for the ratings’ matrix. By CDL, deep feature representation extracted from content information can capture similarities and discover implicit relationships between users and items. However, one drawback of these methods based on auxiliary resource is high dependency on auxiliary information that increases the storage cost and raises privacy or security concerns.
Through the above methods we mentioned, the remarkable role of data sparsity in service recommendation has been considered; however, they still have several drawbacks. First, they are vulnerable to privacy leakage when cross-platform QoS data are demanded to be fused to achieve better recommendation performances. Second, similarity calculation or model training of large-scale data repeatedly may block high efficiency and scalability when QoS data increase and update constantly.

2.2 Recommendation with privacy preservation

Data fusion in distributed environment often leads to privacy issues. Anonymity technique is a common way to protect private information of the user. Zhang [15] adopted anonymity technique by local recoding and combines the t-ancestors (similar to K-means) with the aggregation clustering algorithm for solving the problem of privacy information disclosure to third party. Casino [16] implements K-anonymity through microaggregation technology to protect user privacy during service recommendation. Memon [17] generalizes and blurs the unique location information of users by applied K-anonymity, so as to protect the location information of users while recommending services. However, the recommendation accuracy of the above three methods decreases accordingly while certain data are distorted simultaneously. In terms of protecting privacy information in QoS data, Dou [18] focuses on finding the “representative” QoS values in users’ historical records, which can be implemented and shared by distributed platforms, while the user privacy information contained in certain QoS values may still be partially disclosed to the public. Zheng [19] takes “the amount of data that a user needs to be open” as an adjustable parameter and model multiobjective optimization problem as NP-hard with high time complexity, thus obtaining a good compromise between the availability and privacy of the data; however, a small amount of QoS data opened may also be leaked to some extent. Zhu [20] obscures real QoS data by adding random value to each service-specific QoS data; then, user similarity and service recommendation are calculated by obfuscated data to protect privacy values, but QoS values of the user itself in this way will still be partially leaked.
Due to the unique characteristics of LSH (i.e., neighboring points are still close after hashing with large probability), LSH has already been utilized to secure users’ privacy in service recommendation for privacy-preserving and efficient outcome [2123]. However, LSH-based recommendation methods often face the below difficulty: it does not take into account the sparsity data problem, which decreases the recommendation robustness severely.
Based on the above analysis, existing service recommendation methods can seldom cope with the sparse data issue and privacy-preservation requirements simultaneously. Considering this challenge, we bring forth a novel recommendation method that is not only robust but also privacy preserving in the following sections.

3 Formulation and motivation

3.1 Problem formulation

To simplify the following discussion, the symbols to be recruited in this paper can be described as below. For facilitation, the recommendation problem can be formalized by a four-tuple (M, U, E, mi.j.q) as below:
1.
M = {m1, …, mn}: candidate services
 
2.
U = {u1, …, um}: users who ever invoked services in set M
 
3.
E = {e1, …, es}: distributed edge platforms where ek (1 ≤ e ≤ s) possess the kth part of records of QoS data in set M
 
4.
mi.j.q: QoS values on dimension q for service mj (1 ≤ j ≤ n) rated by user ui (1 ≤ i ≤ m). Particularly, if ui did not rate mj, then mi.j.q = 0 holds
 
In view of the above formal symbol representation, the privacy-preserving recommendation problem with sparse data can be described as follows: a recommender system integrates the distributed mi.j.q data to discover appropriate services for a target user; during the above process, real QoS values cannot be leaked to the outside. To tackle this issue, we introduce a novel method in Section 4.

3.2 Motivation

To clarify the idea of this paper, an intuitive example is demonstrated in Fig. 1 to introduce our motivation in detail.
In Fig. 1, we can see that historical QoS data are distributed in two edge platforms: Google and Microsoft. Suppose that there are a total of n candidate services {m1, …, mn} and four users {u1, u2, u3, u4}; several QoS data records mi.j.q in each distributed edge platform are also provided where “mi.j.q = 0” means that ui has never rated mj before. In this situation, the size of service intersection between users is fairly small, which seriously hinders a target user from finding his/her similar neighbors and interested services. Therefore, the recommender system needs to integrate the QoS values from both Google and Microsoft so as to make a more comprehensive decision; afterwards, similarity between different users, e.g., u1 and u2, can be obtained for seeking similar neighbors in recommender system, and then, more accurate and comprehensive recommended results can be achieved in a privacy-preserving way.
In view of this, a novel service recommendation method adapted to data sparsity and privacy preservation is presented in the next section.

4 Our solution: SerRecsparsity-LSH

In this section, we bring forth a novel recommendation method under sparse data environment based on multi-probing LSH, named SerRecsparsity-LSH. In Section 4.1, basic LSH technique is briefly introduced; then, the details of our proposed method are presented in Section 4.2.

4.1 Basic locality-sensitive hashing

Locality-sensitive hashing (LSH) has been put forward by Aristides Gionis in 1999 [7] and has been proved to be appropriate for fast approximate querying millions of data; the accuracy of query results is same as that of “brute force” query basically and widely used in many fields, such as videos and image queries. The main idea of LSH theory can be shown as in Fig. 2. First, original data space is converted into a LSH data space by hyperplanes in Fig. 2a. Afterwards, (1) two neighboring points like A and B in the original data space are still neighbors with high probability (i.e., A and B are on the same side of the hyperplane l1) in LSH data space; (2) two dissimilar points like A and C (or B and C) are still not neighbors with high probability (i.e., the two points are on the different sides of the hyperplane l2) in LSH data space. Furthermore, the distance from the point to the hyperplane can be calculated to find the nearest neighbors or the most similar neighbors.
We utilize the example in Fig. 2b to illustrate the distance calculation process. Assume that two points a and b are on the same side of the hyperplane l1 in LSH data space, \( \overrightarrow{op} \) (\( \overrightarrow{op}\ne \) 0) is a normal vector of hyperplane l1 while vectors \( \overrightarrow{oa} \) and \( \overrightarrow{ob} \) are used to compute the distance between points a and b to the hyperplane, respectively. We assume O1 and O2 are projection points of points a and b on normal vector \( \overrightarrow{op} \), OO1 and OO2 are corresponding to the projection distance (i.e., the distance from the point to hyperplane) of vectors \( \overrightarrow{oa} \) and \( \overrightarrow{ob} \) to the normal vector \( \overrightarrow{op} \). Then, according to dot product principle, the distance OO1 (or OO2) from the point a (or b) to hyperplane l1 can be obtained by formula (1). Here, \( \left\Vert \overrightarrow{op}\right\Vert \) represents the modulus of normal vector \( \overrightarrow{op} \) and symbol “ ∘ ” represents the dot product between two vectors. Thus, the distance from each point to the hyperplane can be gained in LSH data space, which makes it easier to find out the nearest neighbors of fixed points.
$$ proj\left( OO 1\right)=\frac{\overrightarrow{oa}\circ \overrightarrow{op}}{\left\Vert \overrightarrow{op}\right\Vert } $$
(1)
In the above example, we have observed the basic theory and three advantages of LSH technique. First, transforming the original data into LSH data space greatly improves the efficiency and scalability of the process for similar neighbors finding. Second, the original data in LSH data space is transparent to users, through which user privacy can be protected significantly. Third, distributed data could be integrated into a unified LSH data space, which improves the accuracy of uniform calculation considerably. Therefore, the LSH technique is extended in this paper to achieve the goal of privacy-preserving service recommendation with sparse data in edge environment.

4.2 SerRecsparsity-LSH: recommendation based on multi-probing LSH

Concretely, our method mainly includes three steps as elaborated in the reminder of this subsection.

4.2.1 Step 1: Generate index tables

We utilize user-service QoS matrix to generate a user index table on the basis of LSH. Here, Pearson correlation coefficient (PCC) is introduced for similarity computation between two web users or web services in the collaborative filtering applications [2123]. In order to preserve the property of “similarity keeping” of LSH, we employ LSH functions for PCC distance to achieve the conversion from original data to user indices, which can simplify the similarity calculation process greatly. Specifically, for each uiU, his/her obtained QoS values over n services {m1, …, mn} in set M is converted into m-dimensional vector \( \overrightarrow{u(i)} \) = (mi.1 .q, mi.2.q, …, mi.n .q) where q is a quality dimension of each service and mi.j.q = 0 if user ui does not rate mj before. Then, based on [6], the hash value of vector \( \overrightarrow{u(i)} \), denoted by h(u(i)), could be derived by the function adopted in (2). In the function, \( \overrightarrow{v} \) = (v1, …, vn) is a vector whose dimensional value vj (1 ≤ jn) is random data belonging to [− 1,1].
$$ h\left(u(i)\right)=\left\{\begin{array}{l}1\kern2.5em if\ \overrightarrow{u(i)}\circ \overrightarrow{v}>0\ \\ {}0\kern2.25em if\ \overrightarrow{u(i)}\circ \overrightarrow{v}\le 0\end{array}\right. $$
(2)
Afterwards, repeat the above conversion process R times through different vectors \( \overrightarrow{v} \) (i.e., the number of vectors \( \overrightarrow{v} \) is denoted by R), and then, the index for user ui can be built as H(u(i)) = (h1(u(i)), h2(u(i)),…, hR(u(i))). Continually, the conversion between original data space and LSH data space through hash mapping “uiH(ui)” are preserved in a hash table, represented by user_table offline. Thus, if an edge platform intends to share its data but fear to disclose user privacy to other parties, it can expose less-sensitive user indices to other parties. The integrated user index tables of multiple edge platforms can not only protect sensitive user data, but also provide more comprehensive recommendation bases for users.
According to step 1, we can search for neighbors of utarget from the user index table user_table, i.e., the hash values of neighbors are equal to the hash value of utarget. However, it is a very strict condition for discovering similar neighbors in a sparse data environment, as there is a high probability that no similar neighbors can be found for utarget. In this situation, we relax the condition for neighbor search so as to improve the robustness of the recommender systems. Furthermore, the found neighbors of utarget are put in set Nei_Set. Thus, although we can obtain a set of neighbors of utarget, we do not know the proximity of the neighbors in Nei_Set to the target user in LSH data space. Motivated by this drawback, we put forward a “distance” formula as in (3) (the physical meaning of the distance is illustrated in Section 4.1) to measure the “distance” between similar neighbors and target user so as to find the “most similar” neighbors. Concretely, each uiU has obtained a unique index table user_table (i.e., R bit of hash values) in step 1 where each hash value corresponds to a hyperplane or a normal vector. The distance calculation for a hash value is exampled in (3), where the normal vector \( \overrightarrow{vr} \) is corresponding to the rth hyperplane and \( \left\Vert \overrightarrow{vr}\right\Vert \) represents the modulus of normal vector \( \overrightarrow{vr} \).
$$ Dr\left(u(i)\right)\kern0.5em =\kern0.5em \frac{\overrightarrow{u(i)}\circ \overrightarrow{vr}}{\left\Vert \overrightarrow{vr}\right\Vert } $$
(3)
Then, the distance corresponding to each hash value can be calculated and the pair (hr(u(i)), Dr(u(i))) for each user can be obtained in a user index table user_table. For example, if r = 4, then the hash value string “1101” for the distance to each hyperplane are 6, 10, − 5, 8, respectively; symbol “−” represents the other side of the hyperplane. Here, the users in set Nei_Set are considered as utarget’s similar neighbors based on step 1. In order to find the most similar neighbor set, we need to calculate the proximity between the users in Nei_Set and the target user in the LSH data space. If uiNei_Set, then the proximity (corresponding to R(1rR) hash values in an index table) between ui and utarget could be measured in user_table by (4); symbol “|a|” represents the absolute value of a. Then, we sort the Pro values of candidate users ui in ascending order, and the smaller the Pro value is, the closer the neighbor ui is to utarget. Finally, the neighbors corresponding to the top-k Pro values are regarded as “most similar” neighbors of utarget and placed in set Sim_Set.
$$ Pro\left(u\mathrm{target}, ui\right) user\_ table=\sum \limits_{1\le r\le R}^R\mid Dr\left(u\left(\mathrm{target}\right)\right)- Dr\left(u(i)\right)\mid $$
(4)
While LSH is a probability-based neighbor-fast-search technique, so one index table for user ui cannot retain the “similarity keeping” property of LSH. In view of the shortcoming, multiple user index tables, i.e., user_table1, user_table2,…, user_tableT are implemented through the same hash mapping process; thus, we adopt the “OR” operation to relax the conditions for neighbor searching. Namely, if ui is one of the “most similar” neighbors of utarget in any hash table, then ui is deemed to be a “most similar” neighbor of utarget.

4.2.3 Step 3: Optimal service selection

If service mj was not rated by utarget before, then mj’s quality over dimension q by utarget, i.e., mtarget,j.q could be predicted through (5). Therein, |Sim_Set| denotes the size of Sim_Set and mi,j.q denotes the QoS values of mj observed by ui. Finally, we rank all the candidate services mj by their predicted values in (5) and the service with the highest predicted value mtarget,j.q will be selected and put in set M_Set. At last, the services in M_Set are returned to utarget.
$$ {m}_{\mathrm{target},j}.q=\frac{\sum \limits_{u_i\in Sim\_ Set}{m}_{i,j}.q}{\mid Sim\_ Set\mid } $$
(5)
Through the abovementioned three steps of the SerRecsparsity-LSH method, a recommender system can make privacy-preserving and robust recommendation decisions when the data are sparse in the edge environment. Moreover, the pseudo code of our proposal can be divided into three algorithms and exhibited as follows.

5 Experiments

In Section 5.1, we introduce the experimental setup; in Section 5.2, we describe and analyze the experimental results of the proposed method.

5.1 Experimental setup

Experiments are implemented on Movielens dataset, which contains ratings of 3900 movies from 6040 users. To validate the prediction performance, we compare SerRecsparsity-LSH with three state-of-the-art methods: Random, WSRec [24], and SBT-Rec [12]. Random is a benchmark that chooses services randomly; WSRec predicts the missing QoS data by considering the average QoS of the target service invoked by all users and the average QoS of all services invoked by the target user; SBT-Rec first searches for the indirect neighbors of the target user through social balance theory and collaborative filtering, and then recommends optimal services based on the derived neighbors. The experiments were running on a laptop with an i7-6500U CPU (2.50 GHz) and 16.0 GB RAM, Windows 7 operation system and Python 3.6. The experiments were executed 50 times, and average values are applied ultimately.

5.2 Experimental results

Four groups of experiments are performed and evaluated. Four parameters are displayed in the experiments: m and n mean the number of users and services, respectively; L and R mean the number of hash tables and hash functions, respectively.

5.2.1 Evaluation item 1: accuracy of four methods

Users always expect to receive accurate recommended results from the recommender systems. So we test the accuracy values of the mentioned four competitive methods via MAE. The value of n is equal to 3900; the value of m changes from 1000 to 6000; L = 10; R = 10. Comparison results are reported in Fig. 3. As can be observed that SerRecsparsity-LSH has achieved a smaller MAE (i.e., a higher accuracy) than other three methods as LSH can promise to find out those real neighbors of a target user.

5.2.2 Evaluation item 2: robustness of four methods

We utilize the successful rate (%) to depict the robustness of the four methods (Fig. 4). Experiment parameters are the same as that in evaluation item 1, and results are shown in Fig. 3. The Random and WSRec methods have the highest values of successful rate (100%) as they can randomly assign a value for any missing QoS data. However, these two methods did not take any strategy to secure the sensitive data of users, while the SerRecsparsity-LSH method approaches the above two methods in terms of successful rate and outperforms that of the SBT-Rec method.

5.2.3 Evaluation item 3: efficiency of four methods

Experiment parameters are the same as that in evaluation item 1. We measure the consumed time of four methods, and comparisons are depicted in Fig. 5. From the comparison results, we can see that the Random method achieves the optimal performance as it does not need to consider the concrete QoS data of every service. While SerRecsparsity-LSH method approaches the Random method in terms of time cost and performs better than those of WSRec and SBT-Rec methods as the employed LSH technique are very efficient in neighbor search as the search bases (i.e., index tables) can be achieved offline before recommendation process begins.

5.2.4 Evaluation item 4: accuracy of SerRecsparsity-LSH with L-R pairs

The LSH parameters L and R can narrow or relax the search condition for neighbors of target users in SerRecsparsity-LSH method and further influence the performance of SerRecsparsity-LSH method. Here, we study the inner correlations between accuracy of the SerRecsparsity-LSH method with L-R pairs. L and R are both varied from 2 to 10. Comparison results are shown in Fig. 6. We can observe a drop of MAE when R grows as more LSH functions indicate a narrower search condition for neighbors in SerRecsparsity-LSH. In addition, we have also noticed a rise of MAE when L grows as more LSH tables indicate a more relaxed search condition for neighbors in the suggested SerRecsparsity-LSH method.

5.3 Discussions

LSH is a kind of hash technique, which means that although LSH can protect the sensitive information of users when performing service recommendation, the effect of privacy preservation of LSH cannot be measured easily. For simple experiments, we only test the discrete data in Movielens dataset without testing other data types popular in the big data environment, e.g., continuous data type [2529], Boolean data type [30], and fuzzy data type [3133]. In addition, we only test a single criterion (user rating) without discussing the popular cases with multiple criteria [3444] and their inner linear correlations [4548], nonlinear correlations [4966], and weights [6773]. Therefore, we hope to refine our method by addressing these more complicated situations in the future research.

6 Conclusion

Through analyzing historical service usage data, a recommender system can infer the potential user preferences and make corresponding recommendations. However, in the edge environment, the service usage data stored in each edge server are often very sparse and sensitive, which may result in expected cold-start problems and privacy leakage risks. Considering these drawbacks, traditional LSH technique is improved to be multi-probing LSH and then introduced to aid the recommendation process so as to guarantee the security and robustness of recommender systems. Experiments conducted on well-known dataset prove the effectiveness and efficiency of the work. In the upcoming research work, we will extend our work further by incorporating more complex multi-criterion and multi-data-type cases. Besides, measuring the capability of privacy preservation of our recommendation approach is another research direction in the future work.

Acknowledgements

Not applicable.

Competing interests

The authors declare that they have no competing interests.
Open AccessThis article is distributed under the terms of the Creative Commons Attribution 4.0 International License (http://​creativecommons.​org/​licenses/​by/​4.​0/​), which permits unrestricted use, distribution, and reproduction in any medium, provided you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made.

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Literature
1.
go back to reference L. Qi et al., Weighted principal component analysis-based service selection method for multimedia services in cloud. Computing 98(1), 195–214 (2016)MathSciNetMATHCrossRef L. Qi et al., Weighted principal component analysis-based service selection method for multimedia services in cloud. Computing 98(1), 195–214 (2016)MathSciNetMATHCrossRef
2.
go back to reference Y. Xu et al., Privacy-preserving and scalable service recommendation based on simhash in a distributed cloud environment. Complexity 2017, Article ID 3437854, 9 (2017) Y. Xu et al., Privacy-preserving and scalable service recommendation based on simhash in a distributed cloud environment. Complexity 2017, Article ID 3437854, 9 (2017)
3.
go back to reference C. Yan et al., Privacy-aware data publishing and integration for collaborative service recommendation. IEEE ACCESS 6, 43021–43028 (2018)CrossRef C. Yan et al., Privacy-aware data publishing and integration for collaborative service recommendation. IEEE ACCESS 6, 43021–43028 (2018)CrossRef
4.
go back to reference L. Qi et al., “Time-location-frequency”-aware internet of things service selection based on historical records. Int. J. Distrib. Sens. Netw. 13(1), 1–9 (2017)MathSciNetCrossRef L. Qi et al., “Time-location-frequency”-aware internet of things service selection based on historical records. Int. J. Distrib. Sens. Netw. 13(1), 1–9 (2017)MathSciNetCrossRef
5.
go back to reference W. Gong et al., Privacy-aware multidimensional mobile service quality prediction and recommendation in distributed fog environment. Wirel. Commun. Mob. Comput. 2018, 8 (2018, Article ID 3075849) W. Gong et al., Privacy-aware multidimensional mobile service quality prediction and recommendation in distributed fog environment. Wirel. Commun. Mob. Comput. 2018, 8 (2018, Article ID 3075849)
6.
go back to reference L. Qi et al., A distributed locality-sensitive hashing-based approach for cloud service recommendation from multi-source data. IEEE J. Sel. Areas Commun. 35(11), 2616–2624 (2017)CrossRef L. Qi et al., A distributed locality-sensitive hashing-based approach for cloud service recommendation from multi-source data. IEEE J. Sel. Areas Commun. 35(11), 2616–2624 (2017)CrossRef
7.
go back to reference A. Gionis et al., Similarity Search in High Dimensions Via Hashing. International Conference on Very Large Databases (1999), pp. 518–529 A. Gionis et al., Similarity Search in High Dimensions Via Hashing. International Conference on Very Large Databases (1999), pp. 518–529
9.
go back to reference L. Qi et al., Data-sparsity tolerant web service recommendation approach based on improved collaborative filtering. IEICE Trans. Inf. Syst. E100D(9), 2092–2099 (2017)CrossRef L. Qi et al., Data-sparsity tolerant web service recommendation approach based on improved collaborative filtering. IEICE Trans. Inf. Syst. E100D(9), 2092–2099 (2017)CrossRef
10.
go back to reference L. Jing et al., Sparse Probabilistic Matrix Factorization by Laplace Distribution for Collaborative Filtering, International Joint Conference on Artificial Intelligence (2015), pp. 1771–1777 L. Jing et al., Sparse Probabilistic Matrix Factorization by Laplace Distribution for Collaborative Filtering, International Joint Conference on Artificial Intelligence (2015), pp. 1771–1777
11.
go back to reference Y. Hu et al., Mitigating data sparsity using similarity reinforcement-enhanced collaborative filtering. ACM Trans. Internet Technol. 17(3), 31 (2017)CrossRef Y. Hu et al., Mitigating data sparsity using similarity reinforcement-enhanced collaborative filtering. ACM Trans. Internet Technol. 17(3), 31 (2017)CrossRef
12.
go back to reference L. Qi et al., Structural balance theory-based E-commerce recommendation over big rating data. IEEE Transactions Big Data 4(3), 301–312 (2018)CrossRef L. Qi et al., Structural balance theory-based E-commerce recommendation over big rating data. IEEE Transactions Big Data 4(3), 301–312 (2018)CrossRef
13.
go back to reference H. Wang et al., Collaborative Deep Learning for Recommender Systems, ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (2015), pp. 1235–1244 H. Wang et al., Collaborative Deep Learning for Recommender Systems, ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (2015), pp. 1235–1244
14.
go back to reference Y. Hu et al., A Time-Aware and Data Sparsity Tolerant Approach for Web Service Recommendation, IEEE International Conference on Web Services (2014), pp. 33–40 Y. Hu et al., A Time-Aware and Data Sparsity Tolerant Approach for Web Service Recommendation, IEEE International Conference on Web Services (2014), pp. 33–40
15.
go back to reference X. Zhang et al., Proximity-aware local-recoding anonymization with Mapreduce for scalable big data privacy preservation in cloud. IEEE Trans. Comput. 64(8), 2293–2307 (2015)MathSciNetMATHCrossRef X. Zhang et al., Proximity-aware local-recoding anonymization with Mapreduce for scalable big data privacy preservation in cloud. IEEE Trans. Comput. 64(8), 2293–2307 (2015)MathSciNetMATHCrossRef
16.
go back to reference F. Casino et al., A K-anonymous approach to privacy preserving collaborative filtering. J. Comput. Syst. Sci. 81(6), 1000–1011 (2015)CrossRef F. Casino et al., A K-anonymous approach to privacy preserving collaborative filtering. J. Comput. Syst. Sci. 81(6), 1000–1011 (2015)CrossRef
17.
go back to reference I. Memon, Authentication user’s privacy: an integrating location privacy protection algorithm for secure moving objects in location based services. Wirel. Pers. Commun. 82(3), 1585–1600 (2015)CrossRef I. Memon, Authentication user’s privacy: an integrating location privacy protection algorithm for secure moving objects in location based services. Wirel. Pers. Commun. 82(3), 1585–1600 (2015)CrossRef
18.
go back to reference W. Dou et al., HireSome-II: towards privacy-aware cross-cloud service composition for big data applications. IEEE Trans. Parallel Distrib. Syst. 26(2), 455–466 (2015)MathSciNetCrossRef W. Dou et al., HireSome-II: towards privacy-aware cross-cloud service composition for big data applications. IEEE Trans. Parallel Distrib. Syst. 26(2), 455–466 (2015)MathSciNetCrossRef
19.
go back to reference X. Zheng et al., Location Privacy-Aware Review Publication Mechanism for Local Business Service Systems, IEEE Conference on Computer Communications (2017), pp. 1–9 X. Zheng et al., Location Privacy-Aware Review Publication Mechanism for Local Business Service Systems, IEEE Conference on Computer Communications (2017), pp. 1–9
20.
go back to reference J. Zhu et al., A Privacy-Preserving QoS Prediction Framework for Web Service Recommendation, IEEE International Conference on Web Services (2015), pp. 241–248 J. Zhu et al., A Privacy-Preserving QoS Prediction Framework for Web Service Recommendation, IEEE International Conference on Web Services (2015), pp. 241–248
21.
go back to reference L. Qi et al., Time-aware distributed service recommendation with privacy-preservation. Inf. Sci. 480, 354–364 (2019)CrossRef L. Qi et al., Time-aware distributed service recommendation with privacy-preservation. Inf. Sci. 480, 354–364 (2019)CrossRef
22.
go back to reference L. Qi et al., A two-stage locality-sensitive hashing based approach for privacy-preserving mobile service recommendation in cross-platform edge environment. Futur. Gener. Comput. Syst. 88, 636–643 (2018)CrossRef L. Qi et al., A two-stage locality-sensitive hashing based approach for privacy-preserving mobile service recommendation in cross-platform edge environment. Futur. Gener. Comput. Syst. 88, 636–643 (2018)CrossRef
23.
go back to reference L. Qi et al., An exception handling approach for privacy-preserving service recommendation failure in a cloud environment. Sensors 18(7), 1–11 (2018)CrossRef L. Qi et al., An exception handling approach for privacy-preserving service recommendation failure in a cloud environment. Sensors 18(7), 1–11 (2018)CrossRef
24.
go back to reference Z. Zheng et al., QoS-aware web service recommendation by collaborative filtering. IEEE Trans. Serv. Comput. 4(2), 140–152 (2011)CrossRef Z. Zheng et al., QoS-aware web service recommendation by collaborative filtering. IEEE Trans. Serv. Comput. 4(2), 140–152 (2011)CrossRef
25.
28.
go back to reference L.L. Liu, Continued fractions and the derangement polynomials of types A and B. Ars Combinatoria 125, 321–330 (2016)MathSciNetMATH L.L. Liu, Continued fractions and the derangement polynomials of types A and B. Ars Combinatoria 125, 321–330 (2016)MathSciNetMATH
30.
go back to reference B. Zhang, Remarks on the maximum gap in binary cyclotomic polynomials. Bulletin Mathematique De La Societe Des Sciences Mathematiques De Roumanie 59(1), 109–115 (2016)MathSciNetMATH B. Zhang, Remarks on the maximum gap in binary cyclotomic polynomials. Bulletin Mathematique De La Societe Des Sciences Mathematiques De Roumanie 59(1), 109–115 (2016)MathSciNetMATH
31.
go back to reference L. Wang, The fixed point method for intuitionistic fuzzy stability of a quadratic functional equation. J. fixed point theory appl. 2010, 1–7 (2010, Article ID 107182) L. Wang, The fixed point method for intuitionistic fuzzy stability of a quadratic functional equation. J. fixed point theory appl. 2010, 1–7 (2010, Article ID 107182)
32.
go back to reference D. Xinsheng, Z. Zhao, On fixed point theorems of mixed monotone operators. Fixed Point Theory Appl. 2011, 1–8 (2011, ArticleID 563136)MathSciNetMATH D. Xinsheng, Z. Zhao, On fixed point theorems of mixed monotone operators. Fixed Point Theory Appl. 2011, 1–8 (2011, ArticleID 563136)MathSciNetMATH
33.
go back to reference B. Zhu, L. Liu, Y. Wu, Local and global existence of mild solutions for a class of nonlinear fractional reaction-diffusion equation with delay. Appl. Math. Lett. 61, 73–79 (2016)MathSciNetMATHCrossRef B. Zhu, L. Liu, Y. Wu, Local and global existence of mild solutions for a class of nonlinear fractional reaction-diffusion equation with delay. Appl. Math. Lett. 61, 73–79 (2016)MathSciNetMATHCrossRef
34.
go back to reference M. Wang et al., Robust group non-convex estimations for high-dimensional partially linear models. J. Nonparametric Stat. 28(1), 49–67 (2016)MathSciNetMATHCrossRef M. Wang et al., Robust group non-convex estimations for high-dimensional partially linear models. J. Nonparametric Stat. 28(1), 49–67 (2016)MathSciNetMATHCrossRef
35.
go back to reference X. Wang et al., Variable selection for high-dimensional generalized linear models with the weighted elastic-net procedure. J. Appl. Stat. 43(5), 796–809 (2016)MathSciNetCrossRef X. Wang et al., Variable selection for high-dimensional generalized linear models with the weighted elastic-net procedure. J. Appl. Stat. 43(5), 796–809 (2016)MathSciNetCrossRef
36.
go back to reference P. Wang et al., Some geometrical properties of convex level sets of minimal graph on 2-dimensional riemannian manifolds. Nonlinear Anal. 130, 1–17 (2016)MathSciNetMATHCrossRef P. Wang et al., Some geometrical properties of convex level sets of minimal graph on 2-dimensional riemannian manifolds. Nonlinear Anal. 130, 1–17 (2016)MathSciNetMATHCrossRef
37.
go back to reference X. Wang et al., Adaptive group bridge estimation for high-dimensional partially linear models. J Inequalities Appl. 2017(158), 1–18 (2017)MathSciNet X. Wang et al., Adaptive group bridge estimation for high-dimensional partially linear models. J Inequalities Appl. 2017(158), 1–18 (2017)MathSciNet
38.
go back to reference X. Wang et al., Restricted profile estimation for partially linear models with large-dimensional covariates. Statist. Probab. Lett. 128, 71–76 (2017)MathSciNetMATHCrossRef X. Wang et al., Restricted profile estimation for partially linear models with large-dimensional covariates. Statist. Probab. Lett. 128, 71–76 (2017)MathSciNetMATHCrossRef
39.
go back to reference H. Tian et al., Bifurcation of periodic orbits by perturbing high-dimensional piecewise smooth integrable systems. J. Differ. Equ. 263, 7448–7474 (2017)MathSciNetMATHCrossRef H. Tian et al., Bifurcation of periodic orbits by perturbing high-dimensional piecewise smooth integrable systems. J. Differ. Equ. 263, 7448–7474 (2017)MathSciNetMATHCrossRef
40.
go back to reference P. Wang et al., The geometric properties of harmonic function on 2-dimensional Riemannian manifolds. Nonlinear Anal. 103, 2–8 (2014)MathSciNetMATHCrossRef P. Wang et al., The geometric properties of harmonic function on 2-dimensional Riemannian manifolds. Nonlinear Anal. 103, 2–8 (2014)MathSciNetMATHCrossRef
41.
go back to reference M. Wang et al., Adaptive lasso estimators for ultrahigh dimensional generalized linear models. Statist. Probab. Lett. 89, 41–50 (2014)MathSciNetMATHCrossRef M. Wang et al., Adaptive lasso estimators for ultrahigh dimensional generalized linear models. Statist. Probab. Lett. 89, 41–50 (2014)MathSciNetMATHCrossRef
42.
43.
go back to reference G. Tian et al., Variable selection in the high-dimensional continuous generalized linear model with current status data. J. Appl. Stat. 41, 467–483 (2014)MathSciNetCrossRef G. Tian et al., Variable selection in the high-dimensional continuous generalized linear model with current status data. J. Appl. Stat. 41, 467–483 (2014)MathSciNetCrossRef
45.
46.
go back to reference L. Liu et al., Recurrence relations for linear transformations preserving the strong q-log-convexity. Electron. J. Comb. 23(3), 1–11 (2016)MathSciNet L. Liu et al., Recurrence relations for linear transformations preserving the strong q-log-convexity. Electron. J. Comb. 23(3), 1–11 (2016)MathSciNet
47.
go back to reference H. Li et al., Partial condition number for the equality constrained linear least squares problem. Calcolo 54(4), 1121–1146 (2017)MathSciNetMATHCrossRef H. Li et al., Partial condition number for the equality constrained linear least squares problem. Calcolo 54(4), 1121–1146 (2017)MathSciNetMATHCrossRef
48.
go back to reference Z. Zhao et al., Existence and uniqueness of positive solutions for some singular boundary value problems with linear functional boundary conditions. Acta Math. Sin. (Engl. Ser.) 27(10), 2073–2084 (2011)MathSciNetMATHCrossRef Z. Zhao et al., Existence and uniqueness of positive solutions for some singular boundary value problems with linear functional boundary conditions. Acta Math. Sin. (Engl. Ser.) 27(10), 2073–2084 (2011)MathSciNetMATHCrossRef
49.
go back to reference H. Liu et al., Some new nonlinear integral inequalities with weakly singular kernel and their applications to FDEs. J. Inequalities. Appl. 2015(209), 1–17 (2015)MathSciNet H. Liu et al., Some new nonlinear integral inequalities with weakly singular kernel and their applications to FDEs. J. Inequalities. Appl. 2015(209), 1–17 (2015)MathSciNet
50.
go back to reference X. Zhang et al., Entire large solutions for a Schrödinger systems with a nonlinear random operator. J. Math. Anal. Appl. 423(2), 1650–1659 (2015)MathSciNetMATHCrossRef X. Zhang et al., Entire large solutions for a Schrödinger systems with a nonlinear random operator. J. Math. Anal. Appl. 423(2), 1650–1659 (2015)MathSciNetMATHCrossRef
51.
go back to reference Z. Zong et al., On Jensen’s inequality, Holder’s inequality and Minkowski’s inequality for dynamically consistent nonlinear evaluations. J. Inequal. Appl. 2015(152), 1–18 (2015)MATHCrossRef Z. Zong et al., On Jensen’s inequality, Holder’s inequality and Minkowski’s inequality for dynamically consistent nonlinear evaluations. J. Inequal. Appl. 2015(152), 1–18 (2015)MATHCrossRef
52.
go back to reference X. Hao et al., Positive solutions for nonlinear fractional semipositone differential equation with nonlocal boundary conditions. J. Nonlinear Sci. Appl. 9(6), 3992–4002 (2016)MathSciNetMATHCrossRef X. Hao et al., Positive solutions for nonlinear fractional semipositone differential equation with nonlocal boundary conditions. J. Nonlinear Sci. Appl. 9(6), 3992–4002 (2016)MathSciNetMATHCrossRef
53.
go back to reference X. Hao et al., Iterative solution for nonlinear impulsive advection-reaction-diffusion equations. J. Nonlinear Sci. Appl. 9(6), 4070–4077 (2016)MathSciNetMATHCrossRef X. Hao et al., Iterative solution for nonlinear impulsive advection-reaction-diffusion equations. J. Nonlinear Sci. Appl. 9(6), 4070–4077 (2016)MathSciNetMATHCrossRef
54.
go back to reference J. Shao et al., Oscillation theorems for second order forced neutral nonlinear differential equations with delayed argument. Int. J. Differ. Equ. 2010, 1–15 (2010, article ID 181784)MathSciNet J. Shao et al., Oscillation theorems for second order forced neutral nonlinear differential equations with delayed argument. Int. J. Differ. Equ. 2010, 1–15 (2010, article ID 181784)MathSciNet
55.
go back to reference Y. Bai et al., On a class of Volterra nonlinear equations of parabolic type. Appl. Math. Comput. 2010(216), 236–240 (2010)MathSciNetMATH Y. Bai et al., On a class of Volterra nonlinear equations of parabolic type. Appl. Math. Comput. 2010(216), 236–240 (2010)MathSciNetMATH
56.
go back to reference Y. Bai, Backward solutions to nonlinear integro-differential systems. Central Eur. J. Math. 8(4), 807–815 (2010)MathSciNetMATH Y. Bai, Backward solutions to nonlinear integro-differential systems. Central Eur. J. Math. 8(4), 807–815 (2010)MathSciNetMATH
57.
go back to reference F. Li et al., Uniform energy decay rates for nonlinear viscoelastic wave equation with nonlocal boundary damping. Nonlinear Anal. 74, 3468–3477 (2011)MathSciNetMATHCrossRef F. Li et al., Uniform energy decay rates for nonlinear viscoelastic wave equation with nonlocal boundary damping. Nonlinear Anal. 74, 3468–3477 (2011)MathSciNetMATHCrossRef
58.
go back to reference F. Li et al., Global existence uniqueness and decay estimates for nonlinear viscoelastic wave equation with boundary dissipation. Nonlinear Anal. 12, 1770–1784 (2011)MathSciNet F. Li et al., Global existence uniqueness and decay estimates for nonlinear viscoelastic wave equation with boundary dissipation. Nonlinear Anal. 12, 1770–1784 (2011)MathSciNet
59.
go back to reference A. Qian, Sing-changing solutions for some nonlinear problems with strong resonance. Boundary Value Problems 18, 1–9 (2011) A. Qian, Sing-changing solutions for some nonlinear problems with strong resonance. Boundary Value Problems 18, 1–9 (2011)
60.
go back to reference Y. Wang et al., Positive solutions for a class of fractional boundary value problem with changing sign nonlinearity. Nonlinear Anal. 74(17), 6434–6441 (2011)MathSciNetMATHCrossRef Y. Wang et al., Positive solutions for a class of fractional boundary value problem with changing sign nonlinearity. Nonlinear Anal. 74(17), 6434–6441 (2011)MathSciNetMATHCrossRef
61.
go back to reference W. Fan et al., Nontrivial solutions of singular fourth-order Sturm-Liouville boundary value problems with a sign-changing nonlinear term. Appl. Math. Comput. 217(15), 6700–6708 (2011)MathSciNetMATH W. Fan et al., Nontrivial solutions of singular fourth-order Sturm-Liouville boundary value problems with a sign-changing nonlinear term. Appl. Math. Comput. 217(15), 6700–6708 (2011)MathSciNetMATH
62.
63.
go back to reference J. Liu et al., Multiple positive solutions for second-order three-point boundary-value problems with sign changing nonlinearities. Electron. J. Differ. Equ. 2012(152), 1–7 (2012)MathSciNetCrossRef J. Liu et al., Multiple positive solutions for second-order three-point boundary-value problems with sign changing nonlinearities. Electron. J. Differ. Equ. 2012(152), 1–7 (2012)MathSciNetCrossRef
64.
go back to reference S. Yang et al., The weight distributions of two classes of p-ary cyclic codes with few weights. Finite Fields Their Appl 44, 76–91 (2017)MathSciNetMATHCrossRef S. Yang et al., The weight distributions of two classes of p-ary cyclic codes with few weights. Finite Fields Their Appl 44, 76–91 (2017)MathSciNetMATHCrossRef
65.
go back to reference X. Zhou et al., Analysis of user network and correlation for community discovery based on topic-aware similarity and behavioral influence. IEEE Trans. Hum. Machine Syst. 48(6), 559–571 (2018)MathSciNetCrossRef X. Zhou et al., Analysis of user network and correlation for community discovery based on topic-aware similarity and behavioral influence. IEEE Trans. Hum. Machine Syst. 48(6), 559–571 (2018)MathSciNetCrossRef
66.
go back to reference X. Wang et al., A cloud-edge computing framework for cyber-physical-social services. IEEE Commun. Mag. 55(11), 80–85 (2017)CrossRef X. Wang et al., A cloud-edge computing framework for cyber-physical-social services. IEEE Commun. Mag. 55(11), 80–85 (2017)CrossRef
67.
go back to reference X. Wang et al., A tensor-based big data-driven routing recommendation approach for heterogeneous networks. IEEE Netw. Mag. 33(1), 64–69 (2019)CrossRef X. Wang et al., A tensor-based big data-driven routing recommendation approach for heterogeneous networks. IEEE Netw. Mag. 33(1), 64–69 (2019)CrossRef
68.
go back to reference Y. Wang et al., Uniform estimate for the tail probabilities of randomly weighted sums. Acta Math. Appl. Sin. Engl. Ser. 30(4), 1063–1072 (2014)MathSciNetMATHCrossRef Y. Wang et al., Uniform estimate for the tail probabilities of randomly weighted sums. Acta Math. Appl. Sin. Engl. Ser. 30(4), 1063–1072 (2014)MathSciNetMATHCrossRef
69.
70.
go back to reference J. Cai, An implicit sigma (3) type condition for heavy cycles in weighted graphs. Ars Combinatoria 115, 211–218 (2014)MathSciNetMATH J. Cai, An implicit sigma (3) type condition for heavy cycles in weighted graphs. Ars Combinatoria 115, 211–218 (2014)MathSciNetMATH
71.
73.
go back to reference S. Yang et al., A construction of linear codes and their complete weight enumerators. Finite Fields Their Appl. 48, 196–226 (2017)MathSciNetMATHCrossRef S. Yang et al., A construction of linear codes and their complete weight enumerators. Finite Fields Their Appl. 48, 196–226 (2017)MathSciNetMATHCrossRef
Metadata
Title
Improved LSH for privacy-aware and robust recommender system with sparse data in edge environment
Authors
Xuening Chen
Hanwen Liu
Dan Yang
Publication date
01-12-2019
Publisher
Springer International Publishing
DOI
https://doi.org/10.1186/s13638-019-1478-1

Other articles of this Issue 1/2019

EURASIP Journal on Wireless Communications and Networking 1/2019 Go to the issue

Premium Partner