Xingwei Wang 0001

dblp:99/4694-1 · also Xing-Wei Wang 0001, Xing-wei Wang 0001 · DBLP profile ↗
← Back
39ranked-venue papers in the field
1as first author
29since 2021 · last 2026
ORCID · conflict

Domains — venue-derived; a paper can count in several

Information Retrieval & Web Search · 15Knowledge Engineering, Semantic Web & Information Systems · 10Database Systems & Data Management · 8 (1 first)Data Mining & Knowledge Discovery · 4Other / Interdisciplinary · 2
YearPublicationVenuePosition
2026 Rumor Prevention: Approach of Minimizing the Competitive Influence of Unknown Rumors in Multi-layer Social Networks
Qiang He 0002, Xingwei Wang 0001, Min Huang 0001
DASFAA (2)3
2026 Pay Attention to Sequence Split: Uncovering the Impacts of Sub-Sequence Splitting on Sequential Recommendation Models
Yizhou Dang, Minhan Huang, Chuang Zhao 0002, Lianbo Ma 0002, Guibing Guo, Xingwei Wang 0001, Zhu Sun 0001
SIGIR7
2026 Tail-Aware Data Augmentation for Long-Tail Sequential Recommendation
Yizhou Dang, Zhifu Wei, Minhan Huang, Lianbo Ma 0002, Jianzhe Zhao, Guibing Guo, Xingwei Wang 0001
WWW7
2026 Lifelong Sequential Recommendation with Adaptive Subsequence Compression and Contextual Fusion
abstract
Lifelong sequential recommendation aims to model users' long-term interests by leveraging their entire interaction history, but the high computational overhead caused by ultra-long sequences poses a core challenge. To address this, existing methods generally adopt the subsequence learning strategies to shorten the input sequence, which can be divided into two categories: (1) Sequence compression methods compress long sequences into multiple subsequence representations through strategies such as uniform segmentation and clustering; (2) Top-k retrieval methods filter the subsequence related to the target item from long sequences via target attention mechanisms or retrieval mechanisms and learn its representation. However, these two types of methods still face challenges in subsequence representation learning: (1) Sequence compression methods struggle to simultaneously balance the high similarity of items within subsequences and smooth temporal continuity (i.e., small temporal intervals between adjacent items), resulting in incorrect learning of subsequence representations; (2) Top-k retrieval methods lose a large amount of effective context information when the length of the retrieved subsequence is much smaller than the original sequence, resulting in incomplete sequence representations. To overcome these challenges, we propose a novel lifelong sequential recommendation method with adaptive subsequence compression and contextual fusion. Specifically, an adaptive subsequence compression module is first designed: it utilizes gradient policy sampling to achieve adaptive segmentation of subsequences, thereby retaining their temporal continuity, and introduces a reward function to enhance the similarity of items within subsequences. Second, a subsequence context fusion module is constructed: it leverages causal cross-attention to fuse recent interactions with their subsequence context and to capture correlations among recent items, thereby learning more complete and accurate sequence representations. We conduct extensive experiments on three public long-sequence recommendation datasets. Experimental results demonstrate that our proposed method consistently outperforms a variety of strong baselines in both predictive accuracy and computational efficiency.
Fei Li 0044, Guibing Guo, Jianzhe Zhao, Xingwei Wang 0001
WWW6
2026 Hierarchical Graph-Bag-Network for Self-Supervised Multi-Graph Learning
abstract
Multi-Graph Learning (MGL) is a fundamental machine learning paradigm that represents objects as bags-of-graphs, each encoding a distinct structural property, and has broad applications in bioinformatics, chemistry, computing power networks, and software defect detection. However, the inherent scarcity of labeled data poses a significant bottleneck for supervised MGL approaches. While self-supervised contrastive learning offers a compelling solution, its direct application to MGL faces three key challenges: (1) existing graph neural networks, primarily for single-graph modeling, struggle to yield discriminative bag-level representations from bags-of-graphs; (2) conventional contrastive objectives are limited to single-level settings, failing to capture cross-hierarchical dependencies; and (3) standard data augmentation often disrupts intrinsic graph and bag structures, undermining semantic consistency. To address these issues, we propose the Hierarchical Graph-Bag-Network (HGBN), a self-supervised MGL framework that constructs hierarchical representations in the form of a graph-bag-network. HGBN employs an asymmetric hierarchical graph neural network to learn discriminative graph-level and bag-level representations, introduces cross-hierarchical contrastive objectives to align graph-level and bag-level semantics, and leverages the asymmetric network outputs to form positive and negative pairs, preserving intrinsic structural and semantic consistency. Experiments on eight benchmark multi-graph datasets demonstrate that HGBN consistently outperforms both supervised and self-supervised state-of-the-art baselines, achieving average improvements of 4.82% in accuracy and F1 score.
Meixia Wang, Yuhai Zhao, Zhengkui Wang, Fenglong Ma, Yejiang Wang, Miaomiao Huang, Fazal Wahab, Wen Shan, Xingwei Wang 0001
WWW9
2026 Dual-modal consistency learning for weakly supervised RGB-D camouflaged object detection with scribble annotations
Tianxin Han, Xingwei Wang 0001, Qing Dong 0004, Min Huang 0001, Jie Jia 0001, Fu Zhang 0001
Inf. Sci.2
2026 Data Augmentation for Sequential Recommendation: A Survey
abstract
Sequential recommendation (SR) has received much attention and made promising progress in the past few years due to its high alignment with real recommendation scenarios. It models users' preferences and behavior patterns from their historical behavior sequences and provides personalized recommendations. However, the widespread problem of data sparsity limits the performance of sequential recommendation models. To tackle this, data augmentation (DA) provides a feasible solution by improving the quantity, quality, or diversity of the training samples without the need for additional data collection. In this survey, we present a systematic and timely review of research efforts on data augmentation for sequential recommendation. We start by providing a clear formulation of the problem and task. Then, we develop a unified taxonomy that categorizes existing augmentation methodologies regarding their augmentation objects and principles. Next, we conduct a comparative discussion on the advantages and disadvantages of different categories, supplemented with quantitative performance evaluations, time-complexity analyses, and visual case studies of representative methods, aiming to provide actionable guidance for the selection and development of augmentation methods in real-world scenarios. Finally, we present the future research directions and summarize this survey.
Yizhou Dang, Enneng Yang, Yuting Liu 0003, Guibing Guo, Linying Jiang, Xingwei Wang 0001, Jianzhe Zhao
IEEE Trans. Knowl. Data Eng.6
2025 GRIT: An Accurate and Efficient Graph Stream Summarization for Temporal Query
abstract
Graph stream summarization refers to the technique used to process graph streams-unbounded sequences of edges-by constructing compressed representations that support approximate queries on both graph topology and temporal information in computing power networks. However, existing methods struggle to achieve accurate and efficient temporal queries due to two key limitations: (1) inefficient integration of temporal information, leading to high latency in both edge processing and query execution; and (2) redundant multilayer structures that accumulate errors, significantly reducing query accuracy. In this paper, we propose GRIT, an accurate and efficient Graph stReam summarIzation for Temporal query. GRIT introduces a new structure FlatIndex, which organizes temporal information in a flattened form, playing a critical role in minimizing error accumulation and ensuring accurate temporal queries. To further enhance edge processing efficiency, we introduce a lazy update strategy, which updates only a single element in the FlatIndex upon edge insertion, significantly reducing insertion latency. Moreover, our greedy-based decomposition (GBD) algorithm decomposes the target query range into the minimal number of intervals corresponding to the FlatIndex, enabling efficient execution of temporal queries over arbitrary time ranges. Extensive experiments on five real-world datasets demonstrate that GRIT improves query accuracy by 2-3 orders of magnitude, while reducing query latency by 1-2 orders of magnitude and increasing throughput by 7-13 times compared to state-of-the-art methods.
Jingxian Hu, Guozhang Sun, Xin Wang 0124, Yuhai Zhao, Yuan Li 0008, Xingwei Wang 0001
CIKM6
2025 Discovering Group Collapser for Network Resilience
abstract
Network resilience refers to the ability of a network to maintain its functionality despite perturbations, where resilience/robustness is shown when a substantial proportion of its nodes remain engaged even under changes. Such phenomenon is common in real-world networks, such as computing power networks. Previous works demonstrate that the coreness of a user/node effectively captures the dynamics of user engagement. However, most existing works only consider changes in a single coreness value and thus fail to measure the overall network resilience. Subsequent works are either inefficient or do not consider coreness-decreased scenario. In this paper, we propose and study the collapsed follower maximization problem, aiming to maximize the number of coreness-decreased vertices by finding a group collapser (collapsing a set of vertices) with a given budget. We prove that the problem is NP-hard and W[2]-hard parameterized by the budget b. To address the problem, we first present a Greedy algorithm that iteratively finds the best collapser in each of the budget b iterations. To further optimize the Greedy algorithm, we propose GreedyOpt, which leverages the shell component structure to accelerate the computation of follower for one collapser and prune the search space. Extensive experimental results on 8 real-world datasets show that the effectiveness and efficiency of our algorithms.
Guozhang Sun, Yuhai Zhao, Zhengkui Wang, Yuan Li 0008, Xingwei Wang 0001
CIKM6
2025 Hybrid2: Distributed GNN Training System Enhanced by Dual-Hybrid for Sampling and Loading
abstract
Graph Neural Networks (GNNs) are the rising standard for graph tasks, yet their distributed training in servers or computing power network remains challenging. Cross-machine sampling and data loading often create bottlenecks, leading to inefficient resource utilization. In this paper, we present Hybrid2, a distributed GNN training system that combines full-graph and mini-batch training through a novel hybrid-batch training method. It also adopts hybrid feature extraction, leveraging both local caching and remote access to improve feature retrieval efficiency. The integration of these methods in Hybrid² results in a dual hybrid-gain effect. First, it reduces sampling and loading overhead by pre-aggregating neighbors for each target vertex, minimizing the layers to sample and load. Second, it accelerates data loading by dynamically identifying and locally caching the most frequently accessed vertices during training, maximizing memory efficiency. Experimental results demonstrate that Hybrid² brings substantial performance improvements across key components of distributed GNN training. Network communication overhead is reduced by up to tens of times, while both sampling and loading achieve at least several-fold speedups. These gains contribute to an overall training acceleration exceeding 20× compared to DistDGL, all with comparable GPU memory usage and no loss in accuracy. Compared to the state-of-the-art system, it achieves nearly 3× speedup while using fewer resources.
Chu Zhao, Shengjie Dong, Yuhai Zhao, Yuan Li 0008, Zhengkui Wang, Xingwei Wang 0001
CIKM6
2025 Self-supervised Hierarchical Representation for Medication Recommendation
Yuliang Liang, Yuting Liu 0003, Yizhou Dang, Enneng Yang, Guibing Guo, Jianzhe Zhao, Xingwei Wang 0001
DASFAA (5)8
2025 Towards Unified Modeling for Positive and Negative Preferences in Sign-Aware Recommendation
Yuting Liu 0003, Yizhou Dang, Yuliang Liang, Qiang Liu 0006, Guibing Guo, Jianzhe Zhao, Xingwei Wang 0001
DASFAA (5)7
2025 Heterogeneous FL via Active-Passive Collaboration
Jianzhe Zhao, Wuganjing Song, Xingwei Wang 0001, Guibing Guo, Zhelin Fan
DASFAA (4)4
2025 Graph Contrastive Learning with Progressive Augmentations
abstract
To be still yet still moving. - Do Hyun Choe
Yuhai Zhao, Yejiang Wang, Zhengkui Wang, Wen Shan, Miaomiao Huang, Xingwei Wang 0001
KDD (1)6
2025 Data Augmentation as Free Lunch: Exploring the Test-Time Augmentation for Sequential Recommendation
abstract
Data augmentation has become a promising method of mitigating data sparsity in sequential recommendation.Existing methods generate new yet effective data during model training to improve performance.However, deploying them requires retraining, architecture modification, or introducing additional learnable parameters.These steps are time-consuming and costly for well-trained models, especially when the model scale becomes large.In this work, we explore the test-time augmentation (TTA) for sequential recommendation, which augments the inputs during the model inference and then aggregates the model's predictions for augmented data to improve final accuracy.It avoids significant time and cost overhead from the previously mentioned steps.We first experimentally disclose the potential of existing augmentation operators for TTA and find that the Mask and Substitute consistently achieve better performance.Further analysis reveals that these two operators are effective because they retain the original sequential pattern while adding appropriate perturbations.Meanwhile, we argue that these two operators still face time-consuming item selection or interference information from mask tokens.Based on the analysis and limitations, we present TNoise and TMask.The former injects uniform noise into the original representation, avoiding the computational overhead of item selection.The latter blocks
Yizhou Dang, Yuting Liu 0003, Enneng Yang, Minhan Huang, Guibing Guo, Jianzhe Zhao, Xingwei Wang 0001
SIGIR7
2025 Denoising Multi-Interest-Aware Logical Reasoning for Long-Sequence Recommendation
abstract
Logical reasoning-based recommendation methods employ logical rules to mitigate the adverse effects of noise items in short interaction sequences on recommendation accuracy.However, there are two problems with existing methods: 1) As the length of the interaction sequence increases, introducing more noise items exacerbates the negative impact on logical reasoning, thereby reducing the accuracy of these methods.2) They are often dominated by the user's single primary interest, which prevents simultaneous consideration of users' multiple-aspect interests in long sequences.To address these issues, we propose a novel dEnoising Multi-Interestaware Logical rEasoning (EMILE) method for long-sequence recommendation.Specifically, we design a logical rule-based interest extractor that enhances the importance of preferred items in constructing user interests while minimizing the negative impact of disliked items.This extractor effectively mitigates the adverse effects of noise items in long interaction sequences.Furthermore, we propose a novel multi-interest learning strategy that optimizes two new objective functions-interest probability distribution contrastive loss and interest logical reasoning contrastive loss-to ensure the model simultaneously considers multiple-aspect interests.These two objective functions require that the target item is more * Corresponding authors.
Fei Li 0044, Qingyun Gao, Yizhou Dang, Enneng Yang, Guibing Guo, Jianzhe Zhao, Xingwei Wang 0001
SIGIR7
2025 Graph Representation Learning via Causal Diffusion for Out-of-Distribution Recommendation
abstract
Graph Neural Networks (GNNs)-based recommendation algorithms typically assume that training and testing data are drawn from independent and identically distributed (IID) spaces. However, this assumption often fails in the presence of out-of-distribution (OOD) data, resulting in significant performance degradation. In this study, we construct a Structural Causal Model (SCM) to analyze interaction data, revealing that environmental confounders (e.g., the COVID-19 pandemic) lead to unstable correlations in GNN-based models, thus impairing their generalization to OOD data. To address this issue, we propose a novel approach, graph representation learning via causal diffusion (CausalDiffRec) for OOD recommendation. This method enhances the model's generalization on OOD data by eliminating environmental confounding factors and learning invariant graph representations. Specifically, we use backdoor adjustment and variational inference to infer the real environmental distribution, thereby eliminating the impact of environmental confounders. This inferred distribution is then used as prior knowledge to guide the representation learning in the reverse phase of the diffusion process to learn the invariant representation. In addition,we provide a theoretical derivation that proves optimizing the objective function of CausalDiffRec can encourage the model to learn environment-invariant graph representations, thereby achieving excellent generalization performance in recommendations under distribution shifts. Our extensive experiments validate the effectiveness of CausalDiffRec in improving the generalization of OOD data, and the average improvement is up to 10.69% on Food, 18.83% on KuaiRec, 22.41% on Yelp2018, and 11.65% on Douban datasets.
Chu Zhao, Enneng Yang, Yuliang Liang, Pengxiang Lan, Yuting Liu 0003, Jianzhe Zhao, Guibing Guo, Xingwei Wang 0001
WWW8
2025 Distributionally Robust Graph Out-of-Distribution Recommendation via Diffusion Model
abstract
The distributionally robust optimization (DRO)-based graph neural network methods improve recommendation systems' out-of-distribution (OOD) generalization by optimizing the model's worst-case performance. However, these studies fail to consider the impact of noisy samples in the training data, which results in diminished generalization capabilities and lower accuracy. Through experimental and theoretical analysis, this paper reveals that current DRO-based graph recommendation methods assign greater weight to noise distribution, leading to model parameter learning being dominated by it. When the model overly focuses on fitting noise samples in the training data, it may learn irrelevant or meaningless features that cannot be generalized to OOD data. To address this challenge, we design a Distributionally Robust Graph model for OOD recommendation (DRGO). Specifically, our method first employs a simple and effective diffusion paradigm to alleviate the noisy effect in the latent space. Additionally, an entropy regularization term is introduced in the DRO objective function to avoid extreme sample weights in the worst-case distribution. Finally, we provide a theoretical proof of the generalization error bound of DRGO as well as a theoretical analysis of how our approach mitigates noisy sample effects, which helps to better understand the proposed framework from a theoretical perspective. We conduct extensive experiments on four datasets to evaluate the effectiveness of our framework against three typical distribution shifts, and the results demonstrate its superiority in both independently and identically distributed distributions (IID) and OOD.
Chu Zhao, Enneng Yang, Yuliang Liang, Jianzhe Zhao, Guibing Guo, Xingwei Wang 0001
WWW6
2025 Efficient and Adaptive Recommendation Unlearning: A Guided Filtering Framework to Erase Outdated Preferences
abstract
Recommendation unlearning is an emerging task to erase the influences of user-specified data from a trained recommendation model. Most existing research follows the paradigm of partitioning the original dataset into multi-fold and then retraining corresponding sub-models while those influences are totally removed. Despite the effectiveness, two key problems remain unexplored: (i) Existing work becomes inefficient and computationally expensive to retrain all sub-models, especially when facing large amounts of unlearning data. (ii) User preferences are dynamically changing. If users express negative opinions on some interacted items they used to prefer, how can we adaptively erase the outdated preferences behind such transformation from the trained model? Although these unlearning data contain outdated information, there is still a lot of helpful knowledge worth preserving. Existing methods ignore this preservation during unlearning and may remove all the knowledge in the interactions, compromising the final performance. In light of these limitations, we propose a novel unlearning framework called GFEraser, which transforms the unlearning into an efficient guided filtering process to avoid time-consuming retraining and retain beneficial knowledge. Specifically, we develop an intra-user negative sampling strategy to learn the outdated preferences that need to be erased. Under the guidance of differential maximization agreement and attention-based fusion module, the original representations are adaptively filtered and aggregated based on the learned preferences. Besides, we leverage contrastive learning to preserve the invariant user preferences, maintaining the final performance. Finally, we devise a new metric called Ranking Decrease Rate to evaluate the unlearning effect. Experimental results demonstrate that GFEraser can maintain reliable recommendation performance while achieving efficient outdated preferences unlearning, up to 37 \(\times\) acceleration.
Yizhou Dang, Yuting Liu 0003, Enneng Yang, Guibing Guo, Linying Jiang, Jianzhe Zhao, Xingwei Wang 0001
ACM Trans. Inf. Syst.7
2025 Preference Logical Reasoning with Preference Operators for Explainable Recommendations
abstract
Preference logical reasoning utilizes user-item interactions (e.g., ratings and reviews) to infer user preferences and discover user decision paths from the knowledge graph to enhance the explainability of item recommendations. However, existing algorithms assume that the ratings and reviews of any item are always consistent, ignoring situations where items with high ratings have negative reviews or items with low ratings but positive reviews. This leads to inaccurate learning of user preferences. In fact, through experimental analysis of two real datasets, we found that on average, about 10% of the interactive data exhibited this inconsistency, that is, items with high ratings but negative reviews appear in the recommendation list. To address this issue, we propose a general preference logical reasoning method based on preference operators. Specifically, we capture the semantic information of users toward the item (its corresponding attributes) in reviews and define two preference operators ( like and dislike ) for the item to correct ambiguous neutral ratings or false ratings that do not reflect true preferences. In the process of preference path reasoning, the like preference operator increases the occurrence probability of liked items, while the dislike preference operator reduces the occurrence probability of disliked items. By fusing the preference operators in the preference path, we obtain consistent user preferences and enhance the explainability of item recommendations. The experimental results on four real datasets demonstrate that our method can effectively improve the performance of all comparison baselines in terms of recommendation accuracy and user decision explainability.
Fei Li 0044, Enneng Yang, Guibing Guo, Linying Jiang, Jianzhe Zhao, Xingwei Wang 0001
ACM Trans. Inf. Syst.6
2025 Symmetric Graph Contrastive Learning against Noisy Views for Recommendation
abstract
Graph Contrastive Learning (GCL) leverages data augmentation techniques to produce contrasting views, enhancing the accuracy of recommendation systems through learning the consistency between contrastive views. However, existing augmentation methods, such as directly perturbing interaction graph (e.g., node/edge dropout), may interfere with the original connections and generate poor contrasting views, resulting in sub-optimal performance. In this article, we define the views that share only a small amount of information with the original graph due to poor data augmentation as noisy views (i.e., the last 20% of the views with a cosine similarity value less than 0.1 to the original view). We demonstrate through detailed experiments that noisy views will significantly degrade recommendation performance. Further, we propose a model-agnostic Symmetric Graph Contrastive Learning (SGCL) method with theoretical guarantees to address this issue. Specifically, we introduce symmetry theory into graph contrastive learning, based on which we propose a symmetric form and contrast loss resistant to noisy interference. We provide theoretical proof that our proposed SGCL method has a high tolerance to noisy views. Further demonstration is given by conducting extensive experiments on three real-world datasets. The experimental results demonstrate that our approach substantially increases recommendation accuracy, with relative improvements reaching as high as 12.25% over nine other competing models. These results highlight the efficacy of our method. The code is available at https://github.com/user683/SGCL .
Chu Zhao, Enneng Yang, Yuliang Liang, Jianzhe Zhao, Guibing Guo, Xingwei Wang 0001
ACM Trans. Inf. Syst.6
2024 Repeated Padding for Sequential Recommendation
abstract
Sequential recommendation aims to provide users with personalized suggestions based on their historical interactions. When training sequential models, padding is a widely adopted technique for two main reasons: 1) The vast majority of models can only handle fixed-length sequences; 2) Batch-based training needs to ensure that the sequences in each batch have the same length. The special value 0 is usually used as the padding content, which does not contain the actual information and is ignored in the model calculations. This common-sense padding strategy leads us to a problem that has never been explored in the recommendation field: Can we utilize this idle input space by padding other content to improve model performance and training efficiency further?
Yizhou Dang, Yuting Liu 0003, Enneng Yang, Guibing Guo, Linying Jiang, Xingwei Wang 0001, Jianzhe Zhao
RecSys6
2024 Pre-training enhanced unsupervised contrastive domain adaptation for industrial equipment remaining useful life prediction
Peng Cao 0001, Xingwei Wang 0001, Ying Li 0037, Bo Yi 0002, Min Huang 0001
Adv. Eng. Informatics3
2024 Deconfounding User Preference in Recommendation Systems through Implicit and Explicit Feedback
abstract
Recommender systems are influenced by many confounding factors (i.e., confounders) which result in various biases (e.g., popularity biases) and inaccurate user preference. Existing approaches try to eliminate these biases by inference with causal graphs. However, they assume all confounding factors can be observed and no hidden confounders exist. We argue that many confounding factors (e.g., season) may not be observable from user–item interaction data, resulting inaccurate user preference. In this article, we propose a deconfounded recommender considering unobservable confounders. Specifically, we propose a new causal graph with explicit and implicit feedback, which can better model user preference. Then, we realize a deconfounded estimator by the front-door adjustment, which is able to eliminate the effect of unobserved confounders. Finally, we conduct a series of experiments on two real-world datasets, and the results show that our approach performs better than other counterparts in terms of recommendation accuracy.
Yuliang Liang, Enneng Yang, Guibing Guo, Linying Jiang, Xingwei Wang 0001
ACM Trans. Knowl. Discov. Data6
2024 Multi-Scenario and Multi-Task Aware Feature Interaction for Recommendation System
abstract
Multi-scenario and multi-task recommendation can use various feedback behaviors of users in different scenarios to learn users’ preferences and then make recommendations, which has attracted attention. However, the existing work ignores feature interactions and the fact that a pair of feature interactions will have differing levels of importance under different scenario-task pairs, leading to sub-optimal user preference learning. In this article, we propose a M ulti-scenario and M ulti-task aware F eature I nteraction model, dubbed MMFI , to explicitly model feature interactions and learn the importance of feature interaction pairs in different scenarios and tasks. Specifically, MMFI first incorporates a pairwise feature interaction unit and a scenario-task interaction unit to effectively capture the interaction of feature pairs and scenario-task pairs. Then MMFI designs a scenario-task aware attention layer for learning the importance of feature interactions from coarse-grained to fine-grained, improving the model’s performance on various scenario-task pairs. More specifically, this attention layer consists of three modules: a fully shared bottom module, a partially shared middle module, and a specific output module. Finally, MMFI adapts two sparsity-aware functions to remove some useless feature interactions. Extensive experiments on two public datasets demonstrate the superiority of the proposed method over the existing multi-task recommendation, multi-scenario recommendation, and multi-scenario & multi-task recommendation models.
Derun Song, Enneng Yang, Guibing Guo, Li Shen 0008, Linying Jiang, Xingwei Wang 0001
ACM Trans. Knowl. Discov. Data6
2024 TiCoSeRec: Augmenting Data to Uniform Sequences by Time Intervals for Effective Recommendation
abstract
Sequential recommendation has now been more widely studied, characterized by its well-consistency with real-world recommendation situations. Most existing works model user preference as the transition pattern from the previous item to the next, ignoring the time interval between these two items. However, we find that the time intervals in different sequences may vary significantly and thus result in the ineffectiveness of user modeling due to the issue ofpreference drift. Thus we propose an assumption that a sequence with uniformly distributed time intervals (denoted as uniform sequence) is more beneficial for preference learning than that with greatly varying time intervals. We then conduct an empirical study on four real datasets and the results support this assumption. Therefore, we advocate to augment sequence data from the perspective of time intervals, which is not studied in the literature. Specifically, we design five operators (Ti-Crop, Ti-CateReorder, Ti-Mask, Ti-Substitute, Ti-Insert) to transform the original non-uniform sequence to uniform sequence with the consideration of time intervals. Then, we devise a control strategy to execute data augmentation on item sequences in different lengths and a looseness range to ensure the generalization (or diversity) of generated data. Finally, we implement these improvements on a state-of-the-art model CoSeRec and proposeTimeInterval AwareCoSeRec(TiCoSeRec). Experimental results on four datasets demonstrate that TiCoSeRec achieves significantly better performance than other 11 counterparts recommendation techniques.
Yizhou Dang, Enneng Yang, Guibing Guo, Linying Jiang, Xingwei Wang 0001, Qinghui Sun
IEEE Trans. Knowl. Data Eng.5
2023 Multi-task spatio-temporal augmented net for industry equipment remaining useful life prediction
Peng Cao 0001, Xingwei Wang 0001, Bo Yi 0002, Min Huang 0001, Qiuye Sun, Yanfeng Zhang 0001
Adv. Eng. Informatics3
2023 Dynamic Opinion Maximization in Social Networks
abstract
Opinion Maximization (OM) aims at determining a small set of influential individuals, spreading the expected opinions of an object (e.g., product or individual) to their neighbors through the social relationships and eventually producing the largest opinion spread. In previous studies, once the corresponding nodes are activated, their opinions usually keep unchanged, which fails to capture the real scenarios where the opinion of each node on the object can dynamically change over time. In this view, we propose a Dynamic Opinion Maximization Framework (DOMF) to settle the OM problem, which consists of two parts: dynamic opinion formation and adaptive seeding process. Specifically, we formulate the OM problem by maximizing rational opinions, and prove that: 1) the OM problem within a constant ratio is NP-hard, and 2) the objective function does not satisfy the monotonicity and submodularity properties anymore. To model the dynamic opinion issue, we propose adaptive cooperation model based on Q-learning theory, which is proved to be capable of eventually reaching convergence. Moreover, to dynamically generate the initial seed nodes, we design the Multi-stage Heuristic Algorithm (MHA). Experimental results demonstrate that each component of our model is effective, and the proposed approach improves the rational opinion spread.
Qiang He 0002, Hui Fang 0002, Jie Zhang 0002, Xingwei Wang 0001
IEEE Trans. Knowl. Data Eng.4
2021 Positive opinion maximization in signed social networks
Qiang He 0002, Lihong Sun, Xingwei Wang 0001, Zhenkun Wang 0001, Min Huang 0001, Bo Yi 0002, Yuantian Wang, Lianbo Ma 0004
Inf. Sci.3
2020 Dynamic organization model of automated negotiation for 3PL providers selection
Taiguang Gao, Min Huang 0001, Qing Wang 0049, Xingwei Wang 0001
Inf. Sci.4
2020 CAOM: A community-based approach to tackle opinion maximization for social networks
Qiang He 0002, Xingwei Wang 0001, Fubing Mao, Jianhui Lv, Yuliang Cai, Min Huang 0001, Qingzheng Xu
Inf. Sci.2
2020 A novel many-objective evolutionary algorithm based on transfer matrix with Kriging model
Lianbo Ma 0004, Rui Wang 0017, Shengminjie Chen, Shi Cheng 0002, Xingwei Wang 0001, Zhiwei Lin 0002, Yuhui Shi 0001, Min Huang 0001
Inf. Sci.5
2020 Exploiting review embedding and user attention for item recommendation
Yatong Sun, Guibing Guo, Penghai Zhang, Xingwei Wang 0001
Knowl. Inf. Syst.5
2018 PCCF: Periodic and continual temporal co-factorization for recommender systems
Guibing Guo, Feida Zhu 0001, Shilin Qu, Xingwei Wang 0001
Inf. Sci.4
2016 Model and algorithm for 4PLRP with uncertain delivery time
Min Huang 0001, Liang Ren, Loo Hay Lee, Xingwei Wang 0001, Hanbin Kuang, Haibo Shi
Inf. Sci.4
2009 ABC Supporting QoS Unicast Routing Scheme with Particle Swarm Optimization
abstract
In this paper, a QoS unicast routing scheme with ABC supported is proposed. With gaming analysis and particle swarm optimization algorithm, it tries to find a QoS unicast path with Pareto optimum under Nash equilibrium on both the network provider utility and the user utility achieved or approached. Simulation results have shown that it is both feasible and effective.
Xingwei Wang 0001, Hai-Quan Yang, Min Huang 0001, Lei Guo 0005
ACIIDS1
2009 A survivable routing algorithm with differentiated domain protection based on a virtual topology graph in multi-domain optical networks
Lei Guo 0005, Xingwei Wang 0001, Jiannong Cao 0001, Xiaobing Zheng, Xuekui Wang, Weigang Hou
Inf. Sci.2
2008 New insights on survivability in multi-domain optical networks
Lei Guo 0005, Xingwei Wang 0001, Qingyang Song, Xuetao Wei, Weigang Hou
Inf. Sci.2
2008 Availability guarantee in survivable WDM mesh networks: A time perspective
Xuetao Wei, Lei Guo 0005, Xingwei Wang 0001, Qingyang Song, Lemin Li
Inf. Sci.3