Qing Gu 0001

dblp:59/3358-1 · DBLP profile ↗
← Back
12ranked-venue papers in the field
0as first author
7since 2021 · last 2026
0000-0002-1112-790XORCID · conflict

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

Information Retrieval & Web Search · 9Data Mining & Knowledge Discovery · 2Knowledge Engineering, Semantic Web & Information Systems · 1
YearPublicationVenuePosition
2026 Enhancing Multi-Modal Entity Alignment via Multi-Grained Decision Fusion
abstract
Multi-modal entity alignment (MMEA) aims to identify equivalent entities across heterogeneous multi-modal knowledge graphs (MMKGs), which play a crucial role in organizing and integrating web knowledge from diverse modalities. Although prior studies have made progress by multi-modal features fusion, three inherent limitations remain unresolved. First, instance-level feature fusion is misaligned with the pair-wise task format of MMEA. Second, joint representations often overlook modality-specific characteristics, resulting in insufficient alignment. Third, most existing methods rely solely on global features of modality. This may lead to the misalignment of entities that are similar yet distinct. To address above issues, we propose DMEA, a new decision-fusion-based framework. Specifically, we first design a multi-modal knowledge encoding module to extract both global and local features for different modalities and then introduce a multi-grained alignment module, which consists of two components: intra-modal alignment and cross-modal alignment. The former computes alignment scores between the global and local features of entity pairs within the same modality, while the latter leverages the complementarity across modalities to compute cross-modal alignment scores. Each score is regarded as an independent decision, and the final alignment judgment is made by integrating all decisions. Finally, we incorporate an intra-modal contrastive loss to obtain more discriminative embedding representations. DMEA achieves improvements of 13.2% and 14.8% in hit@1 over the state-of-the-art models on two benchmark datasets, FB15K-DB15K and FB15K-YAGO15K, respectively, validating the superiority of our framework.
Qizhuo Xie, Qianzi Hou, Qing Gu 0001, Bin Chong, Tieke He
WWW6
2024 Short Video Ordering via Position Decoding and Successor Prediction
abstract
Short video collection is an easy way for users to consume coherent content on various online short video platforms, such as TikTok, YouTube, Douyin, and WeChat Channel. These collections cover a wide range of content, including online courses, TV series, movies, and cartoons. However, short video creators occasionally publish videos in a disorganized manner due to various reasons, such as revisions, secondary creations, deletions, and reissues, which often result in a poor browsing experience for users. Therefore, accurately reordering videos within a collection based on their content coherence is a vital task that can enhance user experience and presents an intriguing research problem in the field of video narrative reasoning. In this work, we curate a dedicated multimodal dataset for this Short Video Ordering (SVO) task and present the performance of some benchmark methods on the dataset. In addition, we further propose an advanced SVO framework with the aid of position decoding and successor prediction. The proposed framework combines both pairwise and listwise ordering paradigms, which can get rid of the issues from both quadratic growth and cascading conflict in the pairwise paradigm, and improve the performance of existing listwise methods. Extensive experiments demonstrate that our method achieves the best performance on our open SVO dataset, and each component of the framework contributes to the final performance. Both the SVO dataset and code will be released at https://github.com/ShipingGe/SVO.
Shiping Ge, Zhiwei Jiang 0001, Yafeng Yin 0002, Ziyao Chen, Qing Gu 0001
SIGIR6
2024 Unifying Token- and Span-level Supervisions for Few-shot Sequence Labeling
abstract
Few-shot sequence labeling aims to identify novel classes based on only a few labeled samples. Existing methods solve the data scarcity problem mainly by designing token-level or span-level labeling models based on metric learning. However, these methods are only trained at a single granularity (i.e., either token-level or span-level) and have some weaknesses of the corresponding granularity. In this article, we first unify token- and span-level supervisions and propose a Consistent Dual Adaptive Prototypical (CDAP) network for few-shot sequence labeling. CDAP contains the token- and span-level networks, jointly trained at different granularities. To align the outputs of two networks, we further propose a consistent loss to enable them to learn from each other. During the inference phase, we propose a consistent greedy inference algorithm that first adjusts the predicted probability and then greedily selects non-overlapping spans with maximum probability. Extensive experiments show that our model achieves new state-of-the-art results on three benchmark datasets. All the code and data of this work will be released at https://github.com/zifengcheng/CDAP .
Zifeng Cheng, Qingyu Zhou, Zhiwei Jiang 0001, Xuemin Zhao, Yunbo Cao, Qing Gu 0001
ACM Trans. Inf. Syst.6
2023 Unsupervised Readability Assessment via Learning from Weak Readability Signals
abstract
Unsupervised readability assessment aims to evaluate the reading difficulty of text without any manually-labeled data for model training. This is a challenging task because the absence of labeled data makes it difficult for the model to understand what readability is. In this paper, we propose a novel framework to Learn a neural model from Weak Readability Signals (LWRS). Instead of relying on labeled data, LWRS utilizes a set of heuristic signals that specialize in describing text readability from different aspects to guide the model in outputting readability scores for ranking. Specifically, to effectively use multiple heuristic weak signals for model training, we build a multi-signal learning model that ranks the unlabeled texts from multiple readability-related aspects based on intra- and inter-signal learning. We also adopt the pairwise ranking paradigm to reduce the cascade coupling among partial-order pairs. Furthermore, we propose identifying the most representative signal based on the batch-level consensus distribution of all signals. This strategy helps identify the predicted signal that is most correlated with readability in the absence of ground-truth labels. We conduct experiments on three public readability assessment datasets. The experimental results demonstrate that our LWRS outperforms each heuristic signal and their combinations significantly, and can even perform comparably with some supervised methods. Additionally, our LWRS trained on one dataset can be effectively transferred to other datasets, including those in other languages, which indicates its good generalization and potential for wide application.
Zhiwei Jiang 0001, Yafeng Yin 0002, Cong Wang 0034, Zhaoling Chen, Qing Gu 0001
SIGIR7
2023 Learning Robust Multi-Modal Representation for Multi-Label Emotion Recognition via Adversarial Masking and Perturbation
abstract
Recognizing emotions from multi-modal data is an emotion recognition task that requires strong multi-modal representation ability. The general approach to this task is to naturally train the representation model on training data without intervention. However, such natural training scheme is prone to modality bias of representation (i.e., tending to over-encode some informative modalities while neglecting other modalities) and data bias of training (i.e., tending to overfit training data). These biases may lead to instability (e.g., performing poorly when the neglected modality is dominant for recognition) and weak generalization (e.g., performing poorly when unseen data is inconsistent with overfitted data) of the model on unseen data. To address these problems, this paper presents two adversarial training strategies to learn more robust multi-modal representation for multi-label emotion recognition. Firstly, we propose an adversarial temporal masking strategy, which can enhance the encoding of other modalities by masking the most emotion-related temporal units (e.g., words for text or frames for video) of the informative modality. Secondly, we propose an adversarial parameter perturbation strategy, which can enhance the generalization of the model by adding the adversarial perturbation to the parameters of model. Both strategies boost model performance on the benchmark MMER datasets CMU-MOSEI and NEMu. Experimental results demonstrate the effectiveness of the proposed method compared with the previous state-of-the-art method. Code will be released at https://github.com/ShipingGe/MMER.
Shiping Ge, Zhiwei Jiang 0001, Zifeng Cheng, Cong Wang 0034, Yafeng Yin 0002, Qing Gu 0001
WWW6
2023 A Consistent Dual-MRC Framework for Emotion-cause Pair Extraction
abstract
Emotion-cause pair extraction (ECPE) is a recently proposed task that aims to extract the potential clause pairs of emotions and its corresponding causes in a document. In this article, we propose a new paradigm for the ECPE task. We cast the task as a two-turn machine reading comprehension (MRC) task, i.e., the extraction of emotions and causes is transformed to the task of identifying answer clauses from the input document specific to a query. This two-turn MRC formalization brings several key advantages: First, the QA manner provides an explicit pairing way to identify causes specific to the target emotion; second, it provides a natural way of jointly modeling the emotion extraction, the cause extraction, and the pairing of emotion and cause; and third, it allows us to exploit the well-developed MRC models. Based on the two-turn MRC formalization, we propose a dual-MRC framework to extract emotion-cause pairs in a dual-direction way, which enables a more comprehensive coverage of all pairing cases. Furthermore, we propose a consistent training strategy for the second-turn query, so the model is able to filter the errors produced by the first turn at inference. Experiments on two benchmark datasets demonstrate that our method outperforms previous methods and achieves state-of-the-art performance. All the code and data of this work can be obtained at https://github.com/zifengcheng/CD-MRC .
Zifeng Cheng, Zhiwei Jiang 0001, Yafeng Yin 0002, Cong Wang 0034, Shiping Ge, Qing Gu 0001
ACM Trans. Inf. Syst.6
2021 Learning from Graph Propagation via Ordinal Distillation for One-Shot Automated Essay Scoring
abstract
One-shot automated essay scoring (AES) aims to assign scores to a set of essays written specific to a certain prompt, with only one manually scored essay per distinct score. Compared to the previous-studied prompt-specific AES which usually requires a large number of manually scored essays for model training (e.g., about 600 manually scored essays out of totally 1000 essays), one-shot AES can greatly reduce the workload of manual scoring. In this paper, we propose a Transductive Graph-based Ordinal Distillation (TGOD) framework to tackle the task of one-shot AES. Specifically, we design a transductive graph-based model as a teacher model to generate pseudo labels of unlabeled essays based on the one-shot labeled essays. Then, we distill the knowledge in the teacher model into a neural student model by learning from the high confidence pseudo labels. Different from the general knowledge distillation, we propose an ordinal-aware unimodal distillation which makes a unimodal distribution constraint on the output of student model, to tolerate the minor errors existed in pseudo labels. Experimental results on the public dataset ASAP show that TGOD can improve the performance of existing neural AES models under the one-shot AES setting and achieve an acceptable average QWK of 0.69.
Zhiwei Jiang 0001, Yafeng Yin 0002, Zifeng Cheng, Qing Gu 0001
WWW6
2019 GRAW+: A two-view graph propagation method with word coupling for readability assessment
abstract
Existing methods for readability assessment usually construct inductive classification models to assess the readability of singular text documents based on extracted features, which have been demonstrated to be effective. However, they rarely make use of the interrelationship among documents on readability, which can help increase the accuracy of readability assessment. In this article, we adopt a graph‐based classification method to model and utilize the relationship among documents using the coupled bag‐of‐words model. We propose a word coupling method to build the coupled bag‐of‐words model by estimating the correlation between words on reading difficulty. In addition, we propose a two‐view graph propagation method to make use of both the coupled bag‐of‐words model and the linguistic features. Our method employs a graph merging operation to combine graphs built according to different views, and improves the label propagation by incorporating the ordinal relation among reading levels. Experiments were conducted on both English and Chinese data sets, and the results demonstrate both effectiveness and potential of the method.
Zhiwei Jiang 0001, Qing Gu 0001, Yafeng Yin 0002, Jianxiang Wang, Daoxu Chen
J. Assoc. Inf. Sci. Technol.2
2015 An Extended Graph-Based Label Propagation Method for Readability Assessment
Zhiwei Jiang 0001, Qing Gu 0001, Lixia Yu, Daoxu Chen
APWeb3
2014 An Ordinal Multi-class Classification Method for Readability Assessment of Chinese Documents
Zhiwei Jiang 0001, Qing Gu 0001, Daoxu Chen
KSEM3
2013 Product and User Dependent Social Network Models for Recommender Systems
Zhiwei Jiang 0001, Bin Luo 0003, Jiubin Tang, Qing Gu 0001, Daoxu Chen
PAKDD (2)5
2010 Estimate on Expectation for Influence Maximization in Social Networks
Qing Gu 0001, Daoxu Chen
PAKDD (1)2