Source author record

Tao Ma

Tao Ma appears in the imported research catalog. Authorship, coauthor and topic links are available while profile ownership is still unclaimed.

ResearcherUnclaimed source record

Catalog footprint

What is connected

24works
21topics
4close collaborators

Actions

Connect this record

Log in to claim

Research graph

See the researcher in context

Open full explorer

Inspect adjacent papers, topics, institutions and collaborators without losing the researcher page.

Building this map preview

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

Published work

24 published item(s)

preprint2024arXiv

Real-Time Asphalt Pavement Layer Thickness Prediction Using Ground-Penetrating Radar Based on a Modified Extended Common Mid-Point (XCMP) Approach

The conventional surface reflection method has been widely used to measure the asphalt pavement layer dielectric constant using ground-penetrating radar (GPR). This method may be inaccurate for in-service pavement thickness estimation with dielectric constant variation through the depth, which could be addressed using the extended common mid-point method (XCMP) with air-coupled GPR antennas. However, the factors affecting the XCMP method on thickness prediction accuracy haven't been studied. Manual acquisition of key factors is required, which hinders its real-time applications. This study investigates the affecting factors and develops a modified XCMP method to allow automatic thickness prediction of in-service asphalt pavement with non-uniform dielectric properties through depth. A sensitivity analysis was performed, necessitating the accurate estimation of time of flights (TOFs) from antenna pairs. A modified XCMP method based on edge detection was proposed to allow real-time TOFs estimation, then dielectric constant and thickness predictions. Field tests using a multi-channel GPR system were performed for validation. Both the surface reflection and XCMP setups were conducted. Results show that the modified XCMP method is recommended with a mean prediction error of 1.86%, which is more accurate than the surface reflection method (5.73%).

preprint2023arXiv

Async-fork: Mitigating Query Latency Spikes Incurred by the Fork-based Snapshot Mechanism from the OS Level

In-memory key-value stores (IMKVSes) serve many online applications because of their efficiency. To support data backup, popular industrial IMKVSes periodically take a point-in-time snapshot of the in-memory data with the system call fork. However, this mechanism can result in latency spikes for queries arriving during the snapshot period because fork leads the engine into the kernel mode in which the engine is out-of-service for queries. In contrast to existing research focusing on optimizing snapshot algorithms, we optimize the fork operation to address the latency spikes problem from the operating system (OS) level, while keeping the data persistent mechanism in IMKVSes unchanged. Specifically, we first conduct an in-depth study to reveal the impact of the fork operation as well as the optimization techniques on query latency. Based on findings in the study, we propose Async-fork to offload the work of copying the page table from the engine (the parent process) to the child process as copying the page table dominates the execution time of fork. To keep data consistent between the parent and the child, we design the proactive synchronization strategy. Async-fork is implemented in the Linux kernel and deployed into the online Redis database in public clouds. Our experiment results show that compared with the default fork method in OS, Async-fork reduces the tail latency of queries arriving during the snapshot period by 81.76% on an 8GB instance and 99.84% on a 64GB instance.

preprint2022arXiv

Comprehensive Review of Deep Learning-Based 3D Point Cloud Completion Processing and Analysis

Point cloud completion is a generation and estimation issue derived from the partial point clouds, which plays a vital role in the applications in 3D computer vision. The progress of deep learning (DL) has impressively improved the capability and robustness of point cloud completion. However, the quality of completed point clouds is still needed to be further enhanced to meet the practical utilization. Therefore, this work aims to conduct a comprehensive survey on various methods, including point-based, convolution-based, graph-based, and generative model-based approaches, etc. And this survey summarizes the comparisons among these methods to provoke further research insights. Besides, this review sums up the commonly used datasets and illustrates the applications of point cloud completion. Eventually, we also discussed possible research trends in this promptly expanding field.

preprint2022arXiv

OpenCalib: A Multi-sensor Calibration Toolbox for Autonomous Driving

Accurate sensor calibration is a prerequisite for multi-sensor perception and localization systems for autonomous vehicles. The intrinsic parameter calibration of the sensor is to obtain the mapping relationship inside the sensor, and the extrinsic parameter calibration is to transform two or more sensors into a unified spatial coordinate system. Most sensors need to be calibrated after installation to ensure the accuracy of sensor measurements. To this end, we present OpenCalib, a calibration toolbox that contains a rich set of various sensor calibration methods. OpenCalib covers manual calibration tools, automatic calibration tools, factory calibration tools, and online calibration tools for different application scenarios. At the same time, to evaluate the calibration accuracy and subsequently improve the accuracy of the calibration algorithm, we released a corresponding benchmark dataset. This paper introduces various features and calibration methods of this toolbox. To our knowledge, this is the first open-sourced calibration codebase containing the full set of autonomous-driving-related calibration approaches in this area. We wish that the toolbox could be helpful to autonomous driving researchers. We have open-sourced our code on GitHub to benefit the community. Code is available at https://github.com/PJLab-ADG/SensorsCalibration.

preprint2022arXiv

Pavementscapes: a large-scale hierarchical image dataset for asphalt pavement damage segmentation

Pavement damage segmentation has benefited enormously from deep learning. % and large-scale datasets. However, few current public datasets limit the potential exploration of deep learning in the application of pavement damage segmentation. To address this problem, this study has proposed Pavementscapes, a large-scale dataset to develop and evaluate methods for pavement damage segmentation. Pavementscapes is comprised of 4,000 images with a resolution of $1024 \times 2048$, which have been recorded in the real-world pavement inspection projects with 15 different pavements. A total of 8,680 damage instances are manually labeled with six damage classes at the pixel level. The statistical study gives a thorough investigation and analysis of the proposed dataset. The numeral experiments propose the top-performing deep neural networks capable of segmenting pavement damages, which provides the baselines of the open challenge for pavement inspection. The experiment results also indicate the existing problems for damage segmentation using deep learning, and this study provides potential solutions.

preprint2021arXiv

CRLF: Automatic Calibration and Refinement based on Line Feature for LiDAR and Camera in Road Scenes

For autonomous vehicles, an accurate calibration for LiDAR and camera is a prerequisite for multi-sensor perception systems. However, existing calibration techniques require either a complicated setting with various calibration targets, or an initial calibration provided beforehand, which greatly impedes their applicability in large-scale autonomous vehicle deployment. To tackle these issues, we propose a novel method to calibrate the extrinsic parameter for LiDAR and camera in road scenes. Our method introduces line features from static straight-line-shaped objects such as road lanes and poles in both image and point cloud and formulates the initial calibration of extrinsic parameters as a perspective-3-lines (P3L) problem. Subsequently, a cost function defined under the semantic constraints of the line features is designed to perform refinement on the solved coarse calibration. The whole procedure is fully automatic and user-friendly without the need to adjust environment settings or provide an initial calibration. We conduct extensive experiments on KITTI and our in-house dataset, quantitative and qualitative results demonstrate the robustness and accuracy of our method.

preprint2020arXiv

ASAPP-ASR: Multistream CNN and Self-Attentive SRU for SOTA Speech Recognition

In this paper we present state-of-the-art (SOTA) performance on the LibriSpeech corpus with two novel neural network architectures, a multistream CNN for acoustic modeling and a self-attentive simple recurrent unit (SRU) for language modeling. In the hybrid ASR framework, the multistream CNN acoustic model processes an input of speech frames in multiple parallel pipelines where each stream has a unique dilation rate for diversity. Trained with the SpecAugment data augmentation method, it achieves relative word error rate (WER) improvements of 4% on test-clean and 14% on test-other. We further improve the performance via N-best rescoring using a 24-layer self-attentive SRU language model, achieving WERs of 1.75% on test-clean and 4.46% on test-other.

preprint2020arXiv

Contamination of TEM Holders Quantified and Mitigated with Open-Hardware, High-Vacuum Bakeout System

Hydrocarbon contamination plagues high-resolution and analytical electron microscopy by depositing carbonaceous layers onto surfaces during electron irradiation, which can render carefully prepared specimens useless. Increased specimen thickness degrades resolution with beam broadening alongside loss of contrast. The large inelastic cross-section of carbon hampers accurate atomic species detection. Oxygen and water molecules pose problems of lattice damage by chemically etching the specimen during imaging. These constraints on high-resolution and spectroscopic imaging demand clean, high-vacuum microscopes with dry pumps. Here, we present an open-hardware design of a high-vacuum manifold for transmission electron microscopy (TEM) holders to mitigate hydrocarbon and residual species exposure. We quantitatively show that TEM holders are inherently dirty and introduce a range of unwanted chemical species. Overnight storage in our manifold reduces contaminants by 1-2 orders of magnitude and promotes 2-4 times faster vacuum recovery. A built-in bakeout system further reduces contaminants partial pressure to below $10^{-10}$ Torr (~4 orders of magnitude down from ambient storage) and alleviates monolayer adsorption during a typical TEM experiment. We determine that bakeout of TEM holder with specimen held therein is the optimal cleaning method. Our high-vacuum manifold design is published with open-source blueprints, parts list, and cost.

preprint2020arXiv

Speech Fusion to Face: Bridging the Gap Between Human's Vocal Characteristics and Facial Imaging

While deep learning technologies are now capable of generating realistic images confusing humans, the research efforts are turning to the synthesis of images for more concrete and application-specific purposes. Facial image generation based on vocal characteristics from speech is one of such important yet challenging tasks. It is the key enabler to influential use cases of image generation, especially for business in public security and entertainment. Existing solutions to the problem of speech2face renders limited image quality and fails to preserve facial similarity due to the lack of quality dataset for training and appropriate integration of vocal features. In this paper, we investigate these key technical challenges and propose Speech Fusion to Face, or SF2F in short, attempting to address the issue of facial image quality and the poor connection between vocal feature domain and modern image generation models. By adopting new strategies on data model and training, we demonstrate dramatic performance boost over state-of-the-art solution, by doubling the recall of individual identity, and lifting the quality score from 15 to 19 based on the mutual information score with VGGFace classifier.

preprint2014arXiv

Vector valued $q$-variation for differential operators and semigroups I

In this paper, we establish $\mathcal B$-valued variational inequalities for differential operators, ergodic averages and symmetric diffusion semigroups under the condition that Banach space $\mathcal B$ has martingale cotype property. These results generalize, on the one hand Pisier and Xu's result on the variational inequalities for $\mathcal B$-valued martingales, on the other hand many classical variational inequalities in harmonic analysis and ergodic theory. Moreover, we show that Rademacher cotype $q$ is necessary for the $\mathcal B$-valued $q$-variational inequalities. As applications of the variational inequalities, we deduce the jump estimates and obtain quantitative information on the rate of convergence. It turns out the rate of convergence depends on the geometric property of the Banach space under consideration, which considerably improve Cowling and Leinert's result where it is shown that the convergence always holds for all Banach spaces.

preprint2014arXiv

Vector valued $q$-variation for differential operators and semigroups II

In this paper, we establish UMD lattice-valued variational inequalities for differential operators, ergodic averages and analytic semigroups. These results generalize, on the one hand some scalar-valued variational inequalities in ergodic theory, on the other hand Xu's very recent result on UMD lattice-valued maximal inequality. As a consequence, we deduce the jump estimates and obtain quantitative information on the rate of the pointwise convergence.

preprint2013arXiv

A Model for Stock Returns and Volatility

We prove that Student's t-distribution provides one of the better fits to returns of S&P component stocks and the generalized inverse gamma distribution best fits VIX and VXO volatility data. We further argue that a more accurate measure of the volatility may be possible based on the fact that stock returns can be understood as the product distribution of the volatility and normal distributions. We find Brown noise in VIX and VXO time series and explain the mean and the variance of the relaxation times on approach to the steady-state distribution.

preprint2013arXiv

Cosmogenic Nuclei Production Rate on the Lunar Surface

A physical model of Geant4-based simulation of galactic cosmic ray (GCR) particles interaction with the lunar surface matter has been developed to investigate the production rate of cosmogenic nuclei. In this model the GCRs, mainly very high energy protons and $α$ particles, bombard the surface of the Moon and produce many secondary particles such as protons and neutrons. The energies of proton and neutron at different depths are recorded and saved into ROOT files, and the analytical expressions for the differential proton and neutron fluxes are obtained through the best-fit procedure under the ROOT software. To test the validity of this model, we calculate the production rates of long-lived nuclei $^{10}$Be and $^{26}$Al in the Apollo 15 long drill core by combining the above differential fluxes and the newly evaluated spallation reaction cross sections. Numerical results show that the theoretical production rates agree quite well with the measured data. It means that this model works well. Therefore, it can be expected that this model can be used to investigate the cosmogenic nuclei in lunar samples returned by Chinese lunar exploration program and can be extended to study other objects, such as the meteorites and the Earth's atmosphere.

preprint2013arXiv

Spectral and Parametric Averaging for Integrable Systems

We analyze two theoretical approaches to ensemble averaging for integrable systems in quantum chaos - spectral averaging and parametric averaging. For spectral averaging, we introduce a new procedure - rescaled spectral averaging. Unlike traditional spectral averaging, it can describe the correlation function of spectral staircase and produce persistent oscillations of the interval level number variance. Parametric averaging, while not as accurate as rescaled spectral averaging for the correlation function of spectral staircase and interval level number variance, can also produce persistent oscillations of the global level number variance and better describes saturation level rigidity as a function of the running energy. Overall, it is the most reliable method for a wide range of statistics.

preprint2013arXiv

Weighted variation inequalities for differential operators and singular integrals

We prove weighted strong $q$-variation inequalities with $2<q<\infty$ for differential and singular integral operators. For the first family of operators the weights used can be either Sawyer's one-sided $A^+_p$ weights or Muckenhoupt's $A_p$ weights according to that the differential operators in consideration are one-sided or symmetric. We use only Muckenhoupt's $A_p$ weights for the second family. All these inequalities hold equally in the vector-valued case, that is, for functions with values in $\el^ρ$ for $1<ρ<\infty$. As application, we show variation inequalities for mean bounded positive invertible operators on $L^p$ with positive inverses.

preprint2012arXiv

Global Level Number Variance in Integrable Systems

We study previously un-researched second order statistics - correlation function of spectral staircase and global level number variance - in generic integrable systems with no extra degeneracies. We show that the global level number variance oscillates persistently around the saturation spectral rigidity. Unlike other second order statistics - including correlation function of spectral staircase - which are calculated over energy scales much smaller than the running spectral energy, these oscillations cannot be explained within the diagonal approximation framework of the periodic orbit theory. We give detailed numerical illustration of our results using four integrable systems: rectangular billiard, modified Kepler problem, circular billiard and elliptic billiard.

preprint2012arXiv

Regularity estimates in Hölder spaces for Schrödinger operators via a T1 theorem

We derive Hölder regularity estimates for operators associated with a time independent Schrödinger operator of the form $-Δ+V$. The results are obtained by checking a certain condition on the function $T1$. Our general method applies to get regularity estimates for maximal operators and square functions of the heat and Poisson semigroups, for Laplace transform type multipliers and also for Riesz transforms and negative powers $(-Δ+V)^{-γ/2}$, all of them in a unified way.

preprint2011arXiv

Elliptic billiard - a non-trivial integrable system

We investigate the semiclassical energy spectrum of quantum elliptic billiard. The nearest neighbor spacing distribution, level number variance and spectral rigidity support the notion that the elliptic billiard is a generic integrable system. However, second order statistics exhibit a novel property of long-range oscillations. Classical simulation shows that all the periodic orbits except two are not isolated. In Fourier analysis of the spectrum, all the peaks correspond to periodic orbits. The two isolated periodic orbits have small contribution to the fluctuation of level density, while non-isolated periodic orbits have the main contribution. The heights of the majority of the peaks match our semiclassical theory except for type-O periodic orbits. Elliptic billiard is a nontrivial integrable system that will enrich our understanding of integrable systems.

preprint2011arXiv

Regularity properties of Schrödinger operators

Let L be a Schrödinger operator of the form L=-Δ+V, where the nonnegative potential V satisfies a reverse Hölder inequality. Using the method of L-harmonic extensions we study regularity estimates at the scale of adapted Hölder spaces. We give a pointwise description of L-Hölder spaces and provide some characterizations in terms of the growth of fractional derivatives of any order and Carleson measures. Applications to fractional powers of L and multipliers of Laplace transform type developed.

preprint2010arXiv

Level Repulsion in Integrable Systems

Contrary to conventional wisdom, level repulsion in semiclassical spectrum is not just a feature of classically chaotic systems, but classically integrable systems as well. While in chaotic systems level repulsion develops on a scale of the mean level spacing, regardless of location in the spectrum, in integrable systems it develops on a much longer scale - geometric mean of the mean level spacing and the running energy in the spectrum. We show that at this scale level correlations in integrable systems have a universal dependence on level separation, as well as discuss their exact form at any scale. These correlations have dramatic consequences, including deviations from Poissonian statistics in the nearest level spacing distribution and persistent oscillations of level number variance as a function of the interval width. We illustrate our findings on two models - a rectangular infinite well and a modified Kepler problem - that serve as generic types of hard-wall billiards and potential problems. Our theory is based on the concept of parametric averaging, which allows for a statistical ensemble of integrable systems at a given spectral location (running energy).

preprint2010arXiv

Quantum mechanical calculation of spectral statistics of modified Kepler problem

Discrepancy between periodic orbit theory and numerical calculation of a modified Kepler problem is cleared by a quantum mechanical calculation. The diagonal approximation already gives a good fit for the numerical calculation. A better result yet is gained by considering the coherent interference between the classical periodic orbits and the Balian-Bloch term. This approach produces improved results for the rectangular billiards as well.

preprint2007arXiv

Exact solution of one class of Maryland model

The Hamiltonian H of one-body Maryland model is defined as the sum of a linear unperturbed Hamiltonian H_0 and the interaction V, which is a Toeplitz matrix. Maryland model with a doubly infinite Hilbert space are exactly solved. Special cases of one-body Maryland model include the original Maryland model (Phys. Rev. Lett. 49, 833 (1982) and Physica 10D, 369 (1984)), which describes a quantum kickied linear rotator and single band Bloch oscillations. Maryland model and single band Bloch oscillations are the same Hamiltonian in two different representations. A special case of many-body Maryland model is Luttinger model.