Trust snapshot

Quick read

Trust 21 - EmergingVerification L1Unclaimed author
29works
0followers
17topics
4close collaborators

Actions

Decide how to stay connected

Follow researcher0

Identity and collaboration

How to connect with this researcher

Claiming links this public author record to a researcher profile and unlocks direct collaboration workflows.

Log in to claim

Direct collaboration

Open a focused conversation when the fit is right

Claim this author entity first to unlock direct invitations.

Research graph

See the researcher in context

Open full explorer

Inspect adjacent work, topics, institutions and collaborators without jumping out to a separate graph page.

Building this graph slice

BZPEER is loading the nearby papers, people, topics and institutions for this page.

Published work

29 published item(s)

preprint2026arXiv

Knowledge Homophily in Large Language Models

Large Language Models (LLMs) have been increasingly studied as neural knowledge bases for supporting knowledge-intensive applications such as question answering and fact checking. However, the structural organization of their knowledge remains unexplored. Inspired by cognitive neuroscience findings, such as semantic clustering and priming, where knowing one fact increases the likelihood of recalling related facts, we investigate an analogous knowledge homophily pattern in LLMs. To this end, we map LLM knowledge into a graph representation through knowledge checking at both the triplet and entity levels. After that, we analyze the knowledgeability relationship between an entity and its neighbors, discovering that LLMs tend to possess a similar level of knowledge about entities positioned closer in the graph. Motivated by this homophily principle, we propose a Graph Neural Network (GNN) regression model to estimate entity-level knowledgeability scores for triplets by leveraging their neighborhood scores. The predicted knowledgeability enables us to prioritize checking less well-known triplets, thereby maximizing knowledge coverage under the same labeling budget. This not only improves the efficiency of active labeling for fine-tuning to inject knowledge into LLMs but also enhances multi-hop path retrieval in reasoning-intensive question answering.

preprint2022arXiv

A dispersive analysis of low energy pion photo- and electroproduction

A dispersive representation based on unitarity and analyticity is used to study the low energy $γN \to πN\ \text{and}\ γ^* N \to πN$ partial wave amplitudes. Final state interactions of the $πN$ system are critical to this analysis. The left-hand cut contribution is estimated by invoking baryon chiral perturbation theory results, while the right-hand cut contribution responsible for final state interaction effects is taken into account via an Omnès formalism with elastic phase shifts as input. It is found that a good numerical fit can be achieved with only one subtraction parameter, and the experimental data of the multipole amplitudes $E_{0+}, S_{0+}$ in the energy region below the $Δ(1232)$ are well described when the photon virtuality $Q^2 \leq 0.1 \mathrm{GeV}^2$. Furthermore, we extend the partial wave amplitudes to the second Riemann sheet to extract the couplings of the subthreshold resonance $N^*(890)$. Its couplings extracted from the multipole amplitudes $E_{0+}, S_{0+}$ are comparable to those of the $N^* (1535)$ resonance.

preprint2022arXiv

Attacking Black-box Recommendations via Copying Cross-domain User Profiles

Recently, recommender systems that aim to suggest personalized lists of items for users to interact with online have drawn a lot of attention. In fact, many of these state-of-the-art techniques have been deep learning based. Recent studies have shown that these deep learning models (in particular for recommendation systems) are vulnerable to attacks, such as data poisoning, which generates users to promote a selected set of items. However, more recently, defense strategies have been developed to detect these generated users with fake profiles. Thus, advanced injection attacks of creating more `realistic' user profiles to promote a set of items is still a key challenge in the domain of deep learning based recommender systems. In this work, we present our framework CopyAttack, which is a reinforcement learning based black-box attack method that harnesses real users from a source domain by copying their profiles into the target domain with the goal of promoting a subset of items. CopyAttack is constructed to both efficiently and effectively learn policy gradient networks that first select, and then further refine/craft, user profiles from the source domain to ultimately copy into the target domain. CopyAttack's goal is to maximize the hit ratio of the targeted items in the Top-$k$ recommendation list of the users in the target domain. We have conducted experiments on two real-world datasets and have empirically verified the effectiveness of our proposed framework and furthermore performed a thorough model analysis.

preprint2022arXiv

Automated Self-Supervised Learning for Graphs

Graph self-supervised learning has gained increasing attention due to its capacity to learn expressive node representations. Many pretext tasks, or loss functions have been designed from distinct perspectives. However, we observe that different pretext tasks affect downstream tasks differently cross datasets, which suggests that searching pretext tasks is crucial for graph self-supervised learning. Different from existing works focusing on designing single pretext tasks, this work aims to investigate how to automatically leverage multiple pretext tasks effectively. Nevertheless, evaluating representations derived from multiple pretext tasks without direct access to ground truth labels makes this problem challenging. To address this obstacle, we make use of a key principle of many real-world graphs, i.e., homophily, or the principle that "like attracts like," as the guidance to effectively search various self-supervised pretext tasks. We provide theoretical understanding and empirical evidence to justify the flexibility of homophily in this search task. Then we propose the AutoSSL framework which can automatically search over combinations of various self-supervised tasks. By evaluating the framework on 7 real-world datasets, our experimental results show that AutoSSL can significantly boost the performance on downstream tasks including node clustering and node classification compared with training under individual tasks. Code is released at https://github.com/ChandlerBang/AutoSSL.

preprint2022arXiv

Distributed Stochastic Model Predictive Control for Human-Leading Heavy-Duty Truck Platoon

Human-leading truck platooning systems have been proposed to leverage the benefits of both human supervision and vehicle autonomy. Equipped with human guidance and autonomous technology, human-leading truck platooning systems are more versatile to handle uncertain traffic conditions than fully automated platooning systems. This paper presents a novel distributed stochastic model predictive control (DSMPC) design for a human-leading heavy-duty truck platoon. The proposed DSMPC design integrates the stochastic driver behavior model of the human-driven leader truck with a distributed formation control design for the following automated trucks in the platoon. The driver behavior of the human-driven leader truck is learned by a stochastic inverse reinforcement learning (SIRL) approach. The proposed stochastic driver behavior model aims to learn a distribution of cost function, which represents the richness and uniqueness of human driver behaviors, with a given set of driver-specific demonstrations. The distributed formation control includes a serial DSMPC with guaranteed recursive feasibility, closed-loop chance constraint satisfaction, and string stability. Simulation studies are conducted to investigate the efficacy of the proposed design under several realistic traffic scenarios. Compared to the baseline platoon control strategy (deterministic distributed model predictive control), the proposed DSMPC achieves superior controller performance in constraint violations and spacing errors.

preprint2022arXiv

Enhancing Graph Contrastive Learning with Node Similarity

Graph Neural Networks (GNNs) have achieved great success in learning graph representations and thus facilitating various graph-related tasks. However, most GNN methods adopt a supervised learning setting, which is not always feasible in real-world applications due to the difficulty to obtain labeled data. Hence, graph self-supervised learning has been attracting increasing attention. Graph contrastive learning (GCL) is a representative framework for self-supervised learning. In general, GCL learns node representations by contrasting semantically similar nodes (positive samples) and dissimilar nodes (negative samples) with anchor nodes. Without access to labels, positive samples are typically generated by data augmentation, and negative samples are uniformly sampled from the entire graph, which leads to a sub-optimal objective. Specifically, data augmentation naturally limits the number of positive samples that involve in the process (typically only one positive sample is adopted). On the other hand, the random sampling process would inevitably select false-negative samples (samples sharing the same semantics with the anchor). These issues limit the learning capability of GCL. In this work, we propose an enhanced objective that addresses the aforementioned issues. We first introduce an unachievable ideal objective that contains all positive samples and no false-negative samples. This ideal objective is then transformed into a probabilistic form based on the distributions for sampling positive and negative samples. We then model these distributions with node similarity and derive the enhanced objective. Comprehensive experiments on various datasets demonstrate the effectiveness of the proposed enhanced objective under different settings.

preprint2022arXiv

Feature Overcorrelation in Deep Graph Neural Networks: A New Perspective

Recent years have witnessed remarkable success achieved by graph neural networks (GNNs) in many real-world applications such as recommendation and drug discovery. Despite the success, oversmoothing has been identified as one of the key issues which limit the performance of deep GNNs. It indicates that the learned node representations are highly indistinguishable due to the stacked aggregators. In this paper, we propose a new perspective to look at the performance degradation of deep GNNs, i.e., feature overcorrelation. Through empirical and theoretical study on this matter, we demonstrate the existence of feature overcorrelation in deeper GNNs and reveal potential reasons leading to this issue. To reduce the feature correlation, we propose a general framework DeCorr which can encourage GNNs to encode less redundant information. Extensive experiments have demonstrated that DeCorr can help enable deeper GNNs and is complementary to existing techniques tackling the oversmoothing issue.

preprint2022arXiv

Fuel-Economical Distributed Model Predictive Control for Heavy-Duty Truck Platoon

This paper proposes a fuel-economical distributed model predictive control design (Eco-DMPC) for a homogenous heavy-duty truck platoon. The proposed control strategy integrates a fuel-optimal control strategy for the leader truck with a distributed formation control for the following trucks in the heavy-duty truck platoon. The fuel-optimal control strategy is implemented by a nonlinear model predictive control (NMPC) design with an instantaneous fuel consumption model. The proposed fuel-optimal control strategy utilizes the preview information of the preceding traffic to achieve the fuel-economical speed planning by avoiding energy-inefficient maneuvers, particularly under transient traffic conditions. The distributed formation control is designed with a serial distributed model predictive control (DMPC) strategy with guaranteed local and string stability. In the DMPC strategy, each following truck acquires the future predicted state information of its predecessor through vehicle connectivity and then applies local optimal control to maintain constant spacing. Simulation studies are conducted to investigate the fuel economy performance of the proposed control strategy and to validate the local and string stability of the platoon under a realistic traffic scenario. Compared with a human-operated platoon and a benchmark formation-controlled platoon, the proposed Eco-DMPC significantly improves the fuel economy and road utilization.

preprint2022arXiv

Inverse Resource Rational Based Stochastic Driver Behavior Model

Human drivers have limited and time-varying cognitive resources when making decisions in real-world traffic scenarios, which often leads to unique and stochastic behaviors that can not be explained by perfect rationality assumption, a widely accepted premise in modeling driving behaviors that presume drivers rationally make decisions to maximize their own rewards under all circumstances. To explicitly address this disadvantage, this study presents a novel driver behavior model that aims to capture the resource rationality and stochasticity of the human driver's behaviors in realistic longitudinal driving scenarios. The resource rationality principle can provide a theoretic framework to better understand the human cognition processes by modeling human's internal cognitive mechanisms as utility maximization subject to cognitive resource limitations, which can be represented as finite and time-varying preview horizons in the context of driving. An inverse resource rational-based stochastic inverse reinforcement learning approach (IRR-SIRL) is proposed to learn a distribution of the planning horizon and cost function of the human driver with a given series of human demonstrations. A nonlinear model predictive control (NMPC) with a time-varying horizon approach is used to generate driver-specific trajectories by using the learned distributions of the planning horizon and the cost function of the driver. The simulation experiments are carried out using human demonstrations gathered from the driver-in-the-loop driving simulator. The results reveal that the proposed inverse resource rational-based stochastic driver model can address the resource rationality and stochasticity of human driving behaviors in a variety of realistic longitudinal driving scenarios.

preprint2022arXiv

Learning Representations for Hyper-Relational Knowledge Graphs

Knowledge graphs (KGs) have gained prominence for their ability to learn representations for uni-relational facts. Recently, research has focused on modeling hyper-relational facts, which move beyond the restriction of uni-relational facts and allow us to represent more complex and real-world information. However, existing approaches for learning representations on hyper-relational KGs majorly focus on enhancing the communication from qualifiers to base triples while overlooking the flow of information from base triple to qualifiers. This can lead to suboptimal qualifier representations, especially when a large amount of qualifiers are presented. It motivates us to design a framework that utilizes multiple aggregators to learn representations for hyper-relational facts: one from the perspective of the base triple and the other one from the perspective of the qualifiers. Experiments demonstrate the effectiveness of our framework for hyper-relational knowledge graph completion across multiple datasets. Furthermore, we conduct an ablation study that validates the importance of the various components in our framework. The code to reproduce our results can be found at \url{https://github.com/HarryShomer/QUAD}.

preprint2022arXiv

Multimodality in Meta-Learning: A Comprehensive Survey

Meta-learning has gained wide popularity as a training framework that is more data-efficient than traditional machine learning methods. However, its generalization ability in complex task distributions, such as multimodal tasks, has not been thoroughly studied. Recently, some studies on multimodality-based meta-learning have emerged. This survey provides a comprehensive overview of the multimodality-based meta-learning landscape in terms of the methodologies and applications. We first formalize the definition of meta-learning in multimodality, along with the research challenges in this growing field, such as how to enrich the input in few-shot learning (FSL) or zero-shot learning (ZSL) in multimodal scenarios and how to generalize the models to new tasks. We then propose a new taxonomy to discuss typical meta-learning algorithms in multimodal tasks systematically. We investigate the contributions of related papers and summarize them by our taxonomy. Finally, we propose potential research directions for this promising field.

preprint2022arXiv

Personalized Driving Behaviors and Fuel Economy over Realistic Commute Traffic: Modeling, Correlation, and Prediction

Drivers have distinctively diverse behaviors when operating vehicles in natural traffic flow, such as preferred pedal position, car-following distance, preview time headway, etc. These highly personalized behavioral variations are known to impact vehicle fuel economy qualitatively. Nevertheless, the quantitative relationship between driving behaviors and vehicle fuel consumption remains obscure. Addressing this critical missing link will contribute to the improvement of transportation sustainability, as well as understanding drivers' behavioral diversity. This study proposed an integrated microscopic driver behavior and fuel consumption model to assess and predict vehicle fuel economy with naturalistic highway and local commuting traffic data. Through extensive Monte Carlo simulations, significant correlation results are revealed between specific individual driving preferences and fuel economy over drivers' frequent commuting routes. Correlation results indicate that the differences in fuel consumption incurred by various driving behaviors, even in the same traffic conditions, can be as much as 29% for a light-duty truck and 15% for a passenger car. A Gaussian Process Regression model is further trained, validated, and tested under different traffic and vehicle conditions to predict fuel consumption based on drivers' personalized behaviors. Such a quantitative and personalized model can be used to identify and recommend fuel-friendly driving behaviors and routes, demonstrating a strong incentive for relevant stakeholders.

preprint2022arXiv

Relative Rota-Baxter operators of nonzero weights on Lie Triple Systems

In this paper, we introduce the notion of a relative Rota-Baxter operator of weight $λ$ on a Lie triple system with respect to an action on another Lie triple system, which can be characterized by the graph of their semidirect product. We also establish a cohomology theory for a relative Rota-Baxter operator of weight $λ$ on Lie triple systems and use the first cohomology group to classify infinitesimal deformations.

preprint2022arXiv

Temperature and Velocity Characteristics of Rotating Turbulent Boundary Layers Under Non-Isothermal Conditions

This paper describes an experimental investigation, by means of hot-wire anemometry, of the characteristics of velocity and temperature in a rotating turbulent boundary layer under isothermal and non-isothermal conditions. The ranges of experimental parameters are: Reynolds number from 10000 to 25000, rotational speed from 0 to 150 rpm, and y+ from 1.8 to 100. The relative temperature difference is held constant at 0.1. Detailed velocity and temperature distributions in the boundary layer are measured in the rotating state, and a new criterion for boundary layer segmentation under rotation is proposed. The applicability of boundary layer theory under the rotating state is extended. The influence of Coriolis force and buoyancy on the velocity and temperature distributions in the turbulent boundary layers are analyzed. Coriolis force is found to play an important role in the behavior of the boundary layer under rotation, as it shifts the velocity and temperature boundary layers. Under isothermal conditions, such effects can be classified according to the dominant force: viscous, Coriolis, or inertial. Under non-isothermal conditions, buoyancy occurs. The buoyancy induced by the Coriolis force suppresses the effect of the Coriolis force, and the suppression effect increases with temperature difference. The variation of turbulent Prandtl number Prt under rotation is also obtained.

preprint2022arXiv

Trust-Aware Control of Automated Vehicles in Car-Following Interactions with Human Drivers

Trust is essential for automated vehicles (AVs) to promote and sustain technology acceptance in human-dominated traffic scenarios. However, computational trust dynamic models describing the interactive relationship between the AVs and surrounding human drivers in traffic rarely exist. This paper aims to fill this gap by developing a quantitative trust dynamic model of the human driver in the car-following interaction with the AV and incorporating the proposed trust dynamic model into the AV's control design. The human driver's trust level is modeled as a plan evaluation metric that measures the explicability of the AV's plan from the human driver's perspective, and the explicability score of the AV's plan is integrated into the AV's decision-making process. With the proposed approach, trust-aware AVs generate explicable plans by optimizing both predefined plans and explicability of the plans in the car-following interactions with the following human driver. The results collectively demonstrate that the trust-aware AV can generate more explicable plans and achieve a higher trust level for the human driver compared to trust-unaware AV in human-AV interactions.

preprint2021arXiv

An $N/D$ study of the $S_{11}$ channel $πN$ scattering amplitude

Extensive dynamical $N/D$ calculations are made in the study of $S_{11}$ channel low energy $π$N scatterings, based on various phenomenological model inputs of left cuts at tree level. The subtleties of the singular behavior of the partial wave amplitude at the origin of the complex $s$ plane are carefully analysed. Furthermore, { it is found that the dispersion representation for the phase shift, $δ$, has to be modified in the case of $π$N scatterings. An additional contribution from the dispersion integral exists, which is, however, almost exactly cancelled the contribution from two virtual poles located near the end points of the segment cut induced by $u$ channel nucleon exchanges.} Relying very little on the details of the dynamical inputs, the subthreshold resonance $N^*(890)$ survives.

preprint2021arXiv

Multi-Criteria Radio Spectrum Sharing With Subspace-Based Pareto Tracing

Radio spectrum is a high-demand finite resource. To meet growing demands of data throughput for forthcoming and deployed wireless networks, new wireless technologies must operate in shared spectrum over unlicensed bands (coexist). As an example application, we consider a model of Long-Term Evolution (LTE) License-Assisted Access (LAA) with incumbent IEEE 802.11 wireless-fidelity (Wi-Fi) systems in a coexistence scenario. This scenario considers multiple LAA and Wi-Fi links sharing an unlicensed band; however, a multitude of other scenarios could be applicable to our general approach. We aim to improve coexistence by maximizing the key performance indicators (KPIs) of two networks simultaneously via dimension reduction and multi-criteria optimization. These KPIs are network throughputs as a function of medium access control (MAC) protocols and physical layer parameters. We perform an exploratory analysis of coexistence behavior by approximating active subspaces to identify low-dimensional structure in the optimization criteria, i.e., few linear combinations of parameters for simultaneously maximizing LAA and Wi-Fi throughputs. We take advantage of an aggregate low-dimensional subspace parametrized by approximate active subspaces of both throughputs to regularize a multi-criteria optimization. Additionally, a choice of two-dimensional subspace enables visualizations augmenting interpretability and explainability of the results. The visualizations and approximations suggest a predominantly convex set of KPIs over active coordinates leading to a regularized manifold of approximately Pareto optimal solutions. Subsequent geodesics lead to continuous traces through parameter space constituting non-dominated solutions in contrast to random grid search.

preprint2021arXiv

Node Similarity Preserving Graph Convolutional Networks

Graph Neural Networks (GNNs) have achieved tremendous success in various real-world applications due to their strong ability in graph representation learning. GNNs explore the graph structure and node features by aggregating and transforming information within node neighborhoods. However, through theoretical and empirical analysis, we reveal that the aggregation process of GNNs tends to destroy node similarity in the original feature space. There are many scenarios where node similarity plays a crucial role. Thus, it has motivated the proposed framework SimP-GCN that can effectively and efficiently preserve node similarity while exploiting graph structure. Specifically, to balance information from graph structure and node features, we propose a feature similarity preserving aggregation which adaptively integrates graph structure and node features. Furthermore, we employ self-supervised learning to explicitly capture the complex feature similarity and dissimilarity relations between nodes. We validate the effectiveness of SimP-GCN on seven benchmark datasets including three assortative and four disassorative graphs. The results demonstrate that SimP-GCN outperforms representative baselines. Further probe shows various advantages of the proposed framework. The implementation of SimP-GCN is available at \url{https://github.com/ChandlerBang/SimP-GCN}.

preprint2021arXiv

Optimizing Unlicensed Band Spectrum Sharing With Subspace-Based Pareto Tracing

To meet the ever-growing demands of data throughput for forthcoming and deployed wireless networks, new wireless technologies like Long-Term Evolution License-Assisted Access (LTE-LAA) operate in shared and unlicensed bands. However, the LAA network must co-exist with incumbent IEEE 802.11 Wi-Fi systems. We consider a coexistence scenario where multiple LAA and Wi-Fi links share an unlicensed band. We aim to improve this coexistence by maximizing the key performance indicators (KPIs) of these networks simultaneously via dimension reduction and multi-criteria optimization. These KPIs are network throughputs as a function of medium access control protocols and physical layer parameters. We perform an exploratory analysis of coexistence behavior by approximating active subspaces to identify low-dimensional structure in the optimization criteria, i.e., few linear combinations of parameters for simultaneously maximizing KPIs. We leverage an aggregate low-dimensional subspace parametrized by approximated active subspaces of throughputs to facilitate multi-criteria optimization. The low-dimensional subspace approximations inform visualizations revealing convex KPIs over mixed active coordinates leading to an analytic Pareto trace of near-optimal solutions.

preprint2021arXiv

Personalized Adaptive Cruise Control and Impacts on Mixed Traffic

This paper presents a personalized adaptive cruise control (PACC) design that can learn driver behavior and adaptively control the semi-autonomous vehicle (SAV) in the car-following scenario, and investigates its impacts on mixed traffic. In mixed traffic where the SAV and human-driven vehicles share the road, the SAV's driver can choose a PACC tuning that better fits the driver's preferred driving behaviors. The individual driver's preferences are learned through the inverse reinforcement learning (IRL) approach by recovering a unique cost function from the driver's demonstrated driving data that best explains the observed driving style. The proposed PACC design plans the motion of the SAV by minimizing the learned unique cost function considering the short preview information of the preceding human-driven vehicle. The results reveal that the learned driver model can identify and replicate the personalized driving behaviors accurately and consistently when following the preceding vehicle in a variety of traffic conditions. Furthermore, we investigated the impacts of the PACC with different drivers on mixed traffic by considering time headway, gap distance, and fuel economy assessments. A statistical investigation shows that the impacts of the PACC on mixed traffic vary among tested drivers due to their intrinsic driving preferences.

preprint2020arXiv

Biderivations and commuting linear maps on Hom-Lie algebras

The purpose of this paper is to determine skew-symmetric biderivations $\text{Bider}_{\text{s}}(L, V)$ and commuting linear maps $\text{Com}(L, V)$ on a Hom-Lie algebra $(L,α)$ having their ranges in an $(L,α)$-module $(V, ρ, β)$, which are both closely related to $\text{Cent} (L, V)$, the centroid of $(V, ρ, β)$. Specifically, under appropriate assumptions, every $δ\in\text{Bider}_{\text{s}}(L, V)$ is of the form $δ(x,y)=β^{-1}γ([x,y])$ for some $γ\in \text{Cent} (L, V)$, and $\text{Com}(L, V)$ coincides with $\text{Cent} (L, V)$. Besides, we give the algorithm for describing $\text{Bider}_{\text{s}}(L, V)$ and $\text{Com}(L, V)$ respectively, and provide several examples.

preprint2020arXiv

Dispersive Analysis of Low Energy $γN\toπN$ Process and Studies on the $N^*(890)$ Resonance

We present a dispersive representation of the $γN\rightarrow πN$ partial-wave amplitude based on unitarity and analyticity. In this representation, the right-hand-cut contribution responsible for $πN$ final-state-interaction effect are taken into account via an Omnés formalism with elastic $πN$ phase shifts as inputs, while the left-hand-cut contribution is estimated by invoking chiral perturbation theory. Numerical fits are performed in order to pin down the involved subtraction constants. It is found that good fit quality can be achieved with only one free parameter and the experimental data of the multipole amplitude $E_{0}^+$ in the energy region below the $Δ(1232)$ are well described. Furthermore, we extend the $γN\rightarrow πN$ partial-wave amplitude to the second Riemann sheet so as to extract the couplings of the $N^\ast(890)$. The modulus of the residue of the multipole amplitude $E_{0}^+$ ($S_{11pE}$) is $2.41\rm{mfm\cdot GeV^2}$ and the partial width of $N^*(890)\toγN$ at the pole is about $0.369\ {\rm MeV}$, which is almost the same as the one of $N^*(1535)$, indicating that $N^\ast(890)$ strongly couples to $πN$ system.

preprint2020arXiv

Generalized derivations, quasiderivations and centroids of ternary Jordan algebras

In this paper, we give some construction about ternary Jordan algebras at first. Next we study relationships between generalized derivations, quasiderivations and centroids of ternary Jordan algebras. We show that for ternary Jordan algebras, generalized derivation algebras are the sum of quasiderivation algebras and centroids where centroids are ideals of generalized derivation algebras. We also prove that quasiderivations can be embedded into larger ternary Jordan algebras as derivations. In particular, we also determine dimensions of ternary Jordan algebras in the case of all linear transformations are quasiderivations. Some properties about centroids of ternary Jordan algebras are also displayed.

preprint2020arXiv

Gradient Descent for Sparse Rank-One Matrix Completion for Crowd-Sourced Aggregation of Sparsely Interacting Workers

We consider worker skill estimation for the single-coin Dawid-Skene crowdsourcing model. In practice, skill-estimation is challenging because worker assignments are sparse and irregular due to the arbitrary and uncontrolled availability of workers. We formulate skill estimation as a rank-one correlation-matrix completion problem, where the observed components correspond to observed label correlations between workers. We show that the correlation matrix can be successfully recovered and skills are identifiable if and only if the sampling matrix (observed components) does not have a bipartite connected component. We then propose a projected gradient descent scheme and show that skill estimates converge to the desired global optima for such sampling matrices. Our proof is original and the results are surprising in light of the fact that even the weighted rank-one matrix factorization problem is NP-hard in general. Next, we derive sample complexity bounds in terms of spectral properties of the signless Laplacian of the sampling matrix. Our proposed scheme achieves state-of-art performance on a number of real-world datasets.

preprint2020arXiv

Graph Structure Learning for Robust Graph Neural Networks

Graph Neural Networks (GNNs) are powerful tools in representation learning for graphs. However, recent studies show that GNNs are vulnerable to carefully-crafted perturbations, called adversarial attacks. Adversarial attacks can easily fool GNNs in making predictions for downstream tasks. The vulnerability to adversarial attacks has raised increasing concerns for applying GNNs in safety-critical applications. Therefore, developing robust algorithms to defend adversarial attacks is of great significance. A natural idea to defend adversarial attacks is to clean the perturbed graph. It is evident that real-world graphs share some intrinsic properties. For example, many real-world graphs are low-rank and sparse, and the features of two adjacent nodes tend to be similar. In fact, we find that adversarial attacks are likely to violate these graph properties. Therefore, in this paper, we explore these properties to defend adversarial attacks on graphs. In particular, we propose a general framework Pro-GNN, which can jointly learn a structural graph and a robust graph neural network model from the perturbed graph guided by these properties. Extensive experiments on real-world graphs demonstrate that the proposed framework achieves significantly better performance compared with the state-of-the-art defense methods, even when the graph is heavily perturbed. We release the implementation of Pro-GNN to our DeepRobust repository for adversarial attacks and defenses (footnote: https://github.com/DSE-MSU/DeepRobust). The specific experimental settings to reproduce our results can be found in https://github.com/ChandlerBang/Pro-GNN.

preprint2020arXiv

Structure of multiplicative simple Hom-Jordan algebras

In this paper, we mainly study structure of multiplicative simple Hom-Jordan algebras. We talk about equivalent conditions for multiplicative Hom-Jordan algebras being solvable, simple and semi-simple. As an application, we give a theorem about classification of multiplicative simple Hom-Jordan algebras. Moreover, some propositions about bimodules of multiplicative Hom-Jordan algebras are also displayed.

preprint2019arXiv

A Forest Formula to Subtract Infrared Singularities in Amplitudes for Wide-angle Scattering

For any hard QCD amplitude with massless partons, infrared (IR) singularities arise from pinches in the complex planes of loop momenta, called pinch surfaces. To organize and study their leading behaviors in the neighborhoods of these surfaces, we can construct approximation operators for collinear and soft singularities. A BPHZ-like forest formula can be developed to subtract them systematically. In this paper, we utilize the position-space analysis of Erdogan and Sterman for Green functions, and develop the formalism for momentum space. A related analysis has been carried out by Collins for the Sudakov form factors, and is generalized here to any wide-angle kinematics with an arbitrary number of external momenta. We will first see that the approximations yield much richer IR structures than those of an original amplitude, then construct the forest formula and prove that all the singularities appearing in its subtraction terms cancel pairwise. With the help of the forest formula, the full amplitude can also be reorganized into a factorized expression, which helps to generalize the Sudakov form factor result to arbitrary numbers of external momenta. All our analysis will be on the amplitude level.

preprint2019arXiv

Phenomenological Single-Particle Green's Function for the Pseudogap and Superconducting Phases of High-T$_c$ Cuprates

We present a phenomenological Green's function to characterize the superconducting and pseudogap phases of the cuprates based on a microscopic theory of doped Mott insulators. In this framework, the "Fermi arc" and "kink" phenomena observed by angle-resolved photoemission spectroscopy (ARPES) experiments in the pseudogap phase can be systematically explained as a function of doping, which is further connected to the two-gap feature in the superconducting phase with dichotomy between the nodal and antinodal physics. We demonstrate that a phase-string-induced fractionalization plays the key role in giving rise to such a peculiar Green's function with a unique two-component structure.