SearcharxivSearch

arXiv subjects

Qing Lan

Publications and source records attributed to Qing Lan.

14 recordsLinked to original sources

An Industrial-Scale Sequential Recommender for LinkedIn Feed Ranking

LinkedIn Feed enables professionals worldwide to discover relevant content, build connections, and share knowledge at scale. We present Feed Sequential Recommender (Feed SR), a transformer-based sequential ranking model for LinkedIn Feed that replaces a DCNv2-based ranker and meets strict production constraints. We detail the modeling choices, training techniques, and serving optimizations that enable deployment at a scale of 1.2 billion members. Feed SR has been serving the majority of LinkedIn's Feed traffic for over three months and shows significant improvements in member engagement (+2.10% time spent, +3.52% like, comments, or reshares) in online A/B tests compared to the existing production model. We also describe our deployment experience with alternative sequential and LLM-based ranking architectures and why Feed SR provided the best combination of online metrics and production efficiency.

cs.IR

Semantic Search At LinkedIn

Semantic search with large language models (LLMs) enables retrieval by meaning rather than keyword overlap, but scaling it requires major inference efficiency advances. We present LinkedIn's LLM-based semantic search framework for AI Job Search and AI People Search, combining an LLM relevance judge, embedding-based retrieval, and a compact Small Language Model trained via multi-teacher distillation to jointly optimize relevance and engagement. A prefill-oriented inference architecture co-designed with model pruning, context compression, and text-embedding hybrid interactions boosts ranking throughput by over 75x under a fixed latency constraint while preserving near-teacher-level NDCG, enabling one of the first production LLM-based ranking systems with efficiency comparable to traditional approaches and delivering significant gains in quality and user engagement.

cs.IR

Twisted torus links that are unlinks

A twisted torus link $T(p,q,r,s)$ is obtained by performing $s$ full twists on $r$ adjacent strands of the $(p,q)$-torus link. In this paper, we classify twisted torus links that are unlinks. We give a complete characterization of all parameter families $(p,q,r,s)$ for which the associated twisted torus link is an unlink.

math.GT

Rewritable Complementary Nanoelectronics Enabled by Electron-Beam Programmable Ambipolar Doping

The ability to reversibly and site-selectively tune ambipolar doping in a single semiconductor is crucial for reconfigurable electronics beyond silicon, but remains highly challenging. Here, we present a rewritable architecture based on electron-beam programmable field-effect transistors (FETs). Using WSe$_2$ as a model system, we demonstrate electron-beam-induced doping that enables reversible, precisely controlled carrier modulation exceeding $10^{13}$ cm$^{-2}$. The in-situ writing, erasing, and rewriting of ambipolar doping of nanoscale patterns was directly visualized by scanning microwave impedance microscopy. This mask-free, lithography-compatible approach can achieve precise band engineering within individual channels, yielding near-ideal subthreshold swings (~ 60 mV/dec) and finely tunable threshold voltages for both carrier types without specialized contact engineering. These capabilities allow on-demand realization of high performance logic, including CMOS inverters with high voltage gains and low power consumption, as well as NAND-to-NOR transitions on the same device via direct polarity rewriting. Our platform offers a scalable and versatile route for rapid prototyping of complementary electronics.

cond-mat.mtrl-sci

Acoustoelectric Probing of Fractal Energy Spectra in Graphene/hBN Moir\'e Superlattices

Moir\'e superlattices with long-range periodicity exhibit Hofstadter energy spectra under accessible magnetic fields, enabling the exploration of emergent quantum phenomena through a hierarchy of fractal states. However, higher-order features, located at elevated energies with narrow bandwidths, typically require high carrier densities and remain difficult to resolve using conventional electrical transport due to limited sensitivity and strong background conductivity. Here, we utilize acoustoelectric (AE) transport to probe high-order fractal states and the Hofstadter spectrum in graphene/hBN moir\'e superlattices. Surface acoustic waves on a ferroelectric LiNbO$_3$ substrate generate an AE voltage proportional to the derivative of electrical conductivity, significantly enhancing sensitivity to weak spectral features. Combined with substrate-induced high electron doping, this technique resolves fractal Brown-Zak oscillations up to the fifth-order and provides the first AE observation of the Hofstadter butterfly, revealing high-order fractal magnetic Bloch states and symmetry-broken Landau levels over a wide carrier density range. Our results establish AE transport as a powerful derivative-sensitive probe for emergent fractal quantum states in moir\'e-engineered 2D systems.

cond-mat.mes-hall

MixLM: High-Throughput and Effective LLM Ranking via Text-Embedding Mix-Interaction

Large language models (LLMs) excel at capturing semantic nuances and therefore show impressive relevance ranking performance in modern recommendation and search systems. However, they suffer from high computational overhead under industrial latency and throughput requirements. In particular, cross-encoder ranking systems often create long context prefill-heavy workloads, as the model has to be presented with the user, query and item information. To this end, we propose MixLM, a novel LLM-based ranking framework, which significantly improves the system throughput via reducing the input context length, while preserving the semantic strength of cross-encoder rankers. In contrast to a standard ranking system where the context is presented to the model as pure text, we propose to use mix-interaction, a mixture of text and embedding tokens to represent the input. Specifically, MixLM encodes all items in the catalog into a few embedding tokens and stores in a nearline cache. The encoded item descriptions are used during online inference, effectively reducing the item length from a few thousand text tokens to a few embedding tokens. We share insights from deploying our MixLM framework to a real-world search application at LinkedIn, including a detailed discussion of our training pipelines, as well as a thorough analysis of our online serving infrastructure optimization. With the same latency budget and on-par relevance metrics, MixLM increased throughput by 10.0x comparing with strong baselines, 75.9x over full-text LLM rerankers. The efficiency gains delivered by MixLM enabled full-traffic deployment of LLM-powered search, which resulted in a significant 0.47\% increase in Daily Active Users (DAU) in online A/B tests.

cs.IR

Scaling Up Efficient Small Language Models Serving and Deployment for Semantic Job Search

Large Language Models (LLMs) have demonstrated impressive quality when applied to predictive tasks such as relevance ranking and semantic search. However, deployment of such LLMs remains prohibitively expensive for industry applications with strict latency and throughput requirements. In this work, we present lessons and efficiency insights from developing a purely text-based decoder-only Small Language Model (SLM) for a semantic search application at LinkedIn. Particularly, we discuss model compression techniques such as pruning that allow us to reduce the model size by up to $40\%$ while maintaining the accuracy. Additionally, we present context compression techniques that allow us to reduce the input context length by up to $10$x with minimal loss of accuracy. Finally, we present practical lessons from optimizing the serving infrastructure for deploying such a system on GPUs at scale, serving millions of requests per second. Taken together, this allows us to increase our system's throughput by $10$x in a real-world deployment, while meeting our quality bar.

cs.IR

PrefillOnly: An Inference Engine for Prefill-only Workloads in Large Language Model Applications

Besides typical generative applications, like ChatGPT, GitHub Copilot, and Cursor, we observe an emerging trend that LLMs are increasingly used in traditional discriminative tasks, such as recommendation, credit verification, and data labeling. The key characteristic of these emerging use cases is that the LLM generates only a single output token, rather than an arbitrarily long sequence of tokens. We call this prefill-only workload. However, since existing LLM engines assume arbitrary output lengths, they fail to leverage the unique properties of prefill-only workloads. In this paper, we present PrefillOnly, the first LLM inference engine that improves the inference throughput and latency by fully embracing the properties of prefill-only workloads. First, since it generates only one token, PrefillOnly only needs to store the KV cache of only the last computed layer, rather than of all layers. This drastically reduces the GPU memory footprint of LLM inference and allows handling long inputs without using solutions that reduces throughput, such as cross-GPU KV cache parallelization. Second, because the output length is fixed, rather than arbitrary, PrefillOnly can precisely determine the job completion time (JCT) of each prefill-only request before it starts. This enables efficient JCT-aware scheduling policies such as shortest remaining job first. PrefillOnly can process upto 4x larger queries per second without inflating average and P99 latency.

cs.DC

Broadband photoresponse enhancement by band engineering in Sb-doped MnBi2Te4

Topological materials have attracted considerable attention for their potential in broadband and fast photoresponse, particularly in the infrared regime. However, the high carrier concentration in these systems often leads to rapid recombination of photogenerated carriers, limiting the photoresponsivity. Here, we demonstrate that Sb doping in MnBi2Te4 effectively reduces carrier concentration and suppresses electron-hole recombination, thereby significantly improving the optoelectronic performance across the visible to mid-infrared spectra. The optimally doped Mn(Bi0.82Sb0.18)2Te4 photodetector achieves a responsivity of 3.02 mA W-1 with a response time of 18.5 {\mu}s at 1550 nm, and 0.795 mA W-1 with a response time of 9.0 {\mu}s at 4 {\mu}m. These values represent nearly two orders of magnitude improvement compared to undoped MnBi2Te4. Our results highlight band engineering as an effective strategy to enhance the infrared performance of topological material-based photodetectors, opening new avenues for high-sensitivity infrared detection.

cond-mat.mtrl-sci

A generalization of Seifert geometry based on the Siegel upper half-space

The Seifert geometry, $\widetilde{\mathrm{SL}(2,\mathbb{R})}$-geometry, is one of Thurston's eight $3$-dimensional geometries. It fibers over the hyperbolic plane $\mathbb{H}^2$, which is a special case of the Siegel upper half-space $\mathrm{Sp}(2n,\mathbb{R})\curvearrowright {\mathfrak{H}}_n$. In this paper we construct an analogous geometry fibering over the Siegel upper half-space, and provide a volume formula for some manifolds with this geometry. For $n=2$, a prototype is constructed via the normal bundle of an equivariant embedding into a Grassmannian manifold. It turns out that this geometry is the homogeneous space given by a central extension of $\widetilde{\mathrm{Sp}(2n,\mathbb{R})}$, modulo its maximal compact subgroup. The volume of a Siegel--Seifert closed manifold of this geometry is shown to be the length of the fiber circle times the Euler characteristic of the base manifold, up to a sign. Examples of Siegel--Seifert manifolds are provided, and it is shown that the volume of representations for this geometry is constant on every path-connected component of the representation space.

math.GT

Gate-tunable quantum acoustoelectric transport in graphene

Transport probes the motion of quasiparticles in response to external excitations. Apart from the well-known electric and thermoelectric transport, acoustoelectric transport induced by traveling acoustic waves has been rarely explored. Here, by adopting a hybrid nanodevices integrated with piezoelectric substrates, we establish a simple design of acoustoelectric transport with gate tunability. We fabricate dual-gated acoustoelectric devices based on BN-encapsuled graphene on LiNbO3. Longitudinal and transverse acoustoelectric voltages are generated by launching pulsed surface acoustic wave. The gate dependence of zero-field longitudinal acoustoelectric signal presents strikingly similar profiles as that of Hall resistivity, providing a valid approach for extracting carrier density without magnetic field. In magnetic fields, acoustoelectric quantum oscillations appear due to Landau quantization, which are more robust and pronounced than Shubnikov-de Haas oscillations. Our work demonstrates a feasible acoustoelectric setup with gate tunability, which can be extended to the broad scope of various Van der Waals materials.

cond-mat.mes-hall

Turaev-Viro TQFT and the Rank versus Genus Conjecture

This paper presents a way to estimate the Heegaard genus of a $3$-manifold using the Turaev-Viro state sum TQFT. The Turaev-Viro state sum TQFT is derived from the modular category associated to the quantum group $U_q(\mathfrak{sl}_2)$, which is unitary for some $q$ by Wenzl. Hence by Turaev and Virelizier the corresponding TQFT is unitary. We modify a proof by Garoufalidis to give a lower bound of the Heegaard genus using a unitary TQFT, and then use the software Regina to provide some known counterexamples to the rank versus genus conjecture.

math.GT

Integrative Analysis of Prognosis Data on Multiple Cancer Subtypes using Penalization

In cancer research, profiling studies have been extensively conducted, searching for genes/SNPs associated with prognosis. Cancer is a heterogeneous disease. Examining similarity and difference in the genetic basis of multiple subtypes of the same cancer can lead to better understanding of their connections and distinctions. Classic meta-analysis approaches analyze each subtype separately and then compare analysis results across subtypes. Integrative analysis approaches, in contrast, analyze the raw data on multiple subtypes simultaneously and can outperform meta-analysis. In this study, prognosis data on multiple subtypes of the same cancer are analyzed. An AFT (accelerated failure time) model is adopted to describe survival. The genetic basis of multiple subtypes is described using the heterogeneity model, which allows a gene/SNP to be associated with the prognosis of some subtypes but not the others. A compound penalization approach is developed to conduct gene-level analysis and identify genes that contain important SNPs associated with prognosis. The proposed approach has an intuitive formulation and can be realized using an iterative algorithm. Asymptotic properties are rigorously established. Simulation shows that the proposed approach has satisfactory performance and outperforms meta-analysis using penalization. An NHL (non-Hodgkin lymphoma) prognosis study with SNP measurements is analyzed. Genes associated with the three major subtypes, namely DLBCL, FL, and CLL/SLL, are identified. The proposed approach identifies genes different from alternative analysis and has reasonable prediction performance.

stat.ME

Mobility enhancement and highly efficient gating of monolayer MoS2 transistors with Polymer Electrolyte

We report electrical characterization of monolayer molybdenum disulfide (MoS2) devices using a thin layer of polymer electrolyte consisting of poly(ethylene oxide) (PEO) and lithium perchlorate (LiClO4) as both a contact-barrier reducer and channel mobility booster. We find that bare MoS2 devices (without polymer electrolyte) fabricated on Si/SiO2 have low channel mobility and large contact resistance, both of which severely limit the field-effect mobility of the devices. A thin layer of PEO/ LiClO4 deposited on top of the devices not only substantially reduces the contact resistance but also boost the channel mobility, leading up to three-orders-of-magnitude enhancement of the field-effect mobility of the device. When the polymer electrolyte is used as a gate medium, the MoS2 field-effect transistors exhibit excellent device characteristics such as a near ideal subthreshold swing and an on/off ratio of 106 as a result of the strong gate-channel coupling.

cond-mat.mtrl-sci