-
Auto-Labeling Data for Object Detection
Authors:
Brent A. Griffin,
Manushree Gangwar,
Jacob Sela,
Jason J. Corso
Abstract:
Great labels make great models. However, traditional labeling approaches for tasks like object detection have substantial costs at scale. Furthermore, alternatives to fully-supervised object detection either lose functionality or require larger models with prohibitive computational costs for inference at scale. To that end, this paper addresses the problem of training standard object detection mod…
▽ More
Great labels make great models. However, traditional labeling approaches for tasks like object detection have substantial costs at scale. Furthermore, alternatives to fully-supervised object detection either lose functionality or require larger models with prohibitive computational costs for inference at scale. To that end, this paper addresses the problem of training standard object detection models without any ground truth labels. Instead, we configure previously-trained vision-language foundation models to generate application-specific pseudo "ground truth" labels. These auto-generated labels directly integrate with existing model training frameworks, and we subsequently train lightweight detection models that are computationally efficient. In this way, we avoid the costs of traditional labeling, leverage the knowledge of vision-language models, and keep the efficiency of lightweight models for practical application. We perform exhaustive experiments across multiple labeling configurations, downstream inference models, and datasets to establish best practices and set an extensive auto-labeling benchmark. From our results, we find that our approach is a viable alternative to standard labeling in that it maintains competitive performance on multiple datasets and substantially reduces labeling time and costs.
△ Less
Submitted 2 June, 2025;
originally announced June 2025.
-
Choosing an analytic approach: Key study design considerations in state policy evaluation
Authors:
Elizabeth M. Stone,
Megan S. Schuler,
Elizabeth A. Stuart,
Max Rubinstein,
Max Griswold,
Bradley D. Stein,
Beth Ann Griffin
Abstract:
This paper reviews and details methods for state policy evaluation to guide selection of a research approach based on evaluation setting and available data. We highlight key design considerations for an analysis, including treatment and control group selection, timing of policy adoption, expected effect heterogeneity, and data considerations. We then provide an overview of analytic approaches and…
▽ More
This paper reviews and details methods for state policy evaluation to guide selection of a research approach based on evaluation setting and available data. We highlight key design considerations for an analysis, including treatment and control group selection, timing of policy adoption, expected effect heterogeneity, and data considerations. We then provide an overview of analytic approaches and differentiate between methods based on evaluation context, such as settings with no control units, a single treated unit, multiple treated units, or with multiple treatment cohorts. Methods discussed include interrupted time series models, difference-in-differences estimators, autoregressive models, and synthetic control methods, along with method extensions which address issues like staggered policy adoption and heterogenous treatment effects. We end with an illustrative example, applying the developed framework to evaluate the impacts of state-level naloxone standing order policies on overdose rates. Overall, we provide researchers with an approach for deciding on methods for state policy evaluations, which can be used to select study designs and inform methodological choices.
△ Less
Submitted 4 April, 2025;
originally announced April 2025.
-
Assessing Bias and Precision in State Policy Evaluations: A Comparative Analysis of Time-Varying Estimators Using Policy Simulations
Authors:
Max Griswold,
Beth Ann Griffin,
Max Rubinstein,
Mincen Liu,
Megan Schuler,
Elizabeth Stone,
Pedro Nascimento de Lima,
Bradley D. Stein,
Elizabeth A. Stuart
Abstract:
Using state-level opioid overdose mortality data from 1999-2016, we simulated four time-varying treatment scenarios, which correspond to real-world policy dynamics (ramp up, ramp down, temporary and inconsistent). We then evaluated seven commonly used policy evaluation methods: two-way fixed effects event study, debiased autoregressive model, augmented synthetic control, difference-in-differences…
▽ More
Using state-level opioid overdose mortality data from 1999-2016, we simulated four time-varying treatment scenarios, which correspond to real-world policy dynamics (ramp up, ramp down, temporary and inconsistent). We then evaluated seven commonly used policy evaluation methods: two-way fixed effects event study, debiased autoregressive model, augmented synthetic control, difference-in-differences with staggered adoption, event study with heterogeneous treatment, two-stage differences-in-differences and differences-in-differences imputation. Statistical performance was assessed by comparing bias, standard errors, coverage, and root mean squared error over 1,000 simulations.
Results Our findings indicate that estimator performance varied across policy scenarios. In settings where policy effectiveness diminished over time, synthetic control methods recovered effects with lower bias and higher variance. Difference-in-difference approaches, while offering reasonable coverage under some scenarios, struggled when effects were non-monotonic. Autoregressive methods, although demonstrating lower variability, underestimated uncertainty. Overall, a clear bias-variance tradeoff emerged, underscoring that no single method uniformly excelled across scenarios.
Conclusions This study highlights the importance of tailoring the choice of estimator to the expected trajectory of policy effects. In dynamic time-varying settings, particularly when a policy has an anticipated diminishing impact, methods like augmented synthetic controls may offer advantages despite reduced precision. Researchers should carefully consider these tradeoffs to ensure robust and credible state-policy evaluations.
△ Less
Submitted 26 March, 2025;
originally announced March 2025.
-
Class-wise Autoencoders Measure Classification Difficulty And Detect Label Mistakes
Authors:
Jacob Marks,
Brent A. Griffin,
Jason J. Corso
Abstract:
We introduce a new framework for analyzing classification datasets based on the ratios of reconstruction errors between autoencoders trained on individual classes. This analysis framework enables efficient characterization of datasets on the sample, class, and entire dataset levels. We define reconstruction error ratios (RERs) that probe classification difficulty and allow its decomposition into (…
▽ More
We introduce a new framework for analyzing classification datasets based on the ratios of reconstruction errors between autoencoders trained on individual classes. This analysis framework enables efficient characterization of datasets on the sample, class, and entire dataset levels. We define reconstruction error ratios (RERs) that probe classification difficulty and allow its decomposition into (1) finite sample size and (2) Bayes error and decision-boundary complexity. Through systematic study across 19 popular visual datasets, we find that our RER-based dataset difficulty probe strongly correlates with error rate for state-of-the-art (SOTA) classification models. By interpreting sample-level classification difficulty as a label mistakenness score, we further find that RERs achieve SOTA performance on mislabel detection tasks on hard datasets under symmetric and asymmetric label noise. Our code is publicly available at https://github.com/voxel51/reconstruction-error-ratios.
△ Less
Submitted 3 December, 2024;
originally announced December 2024.
-
Zero-Shot Coreset Selection: Efficient Pruning for Unlabeled Data
Authors:
Brent A. Griffin,
Jacob Marks,
Jason J. Corso
Abstract:
Deep learning increasingly relies on massive data with substantial costs for storage, annotation, and model training. To reduce these costs, coreset selection aims to find a representative subset of data to train models while ideally performing on par with the full data training. State-of-the-art coreset methods use carefully-designed criteria to quantify the importance of each data example via gr…
▽ More
Deep learning increasingly relies on massive data with substantial costs for storage, annotation, and model training. To reduce these costs, coreset selection aims to find a representative subset of data to train models while ideally performing on par with the full data training. State-of-the-art coreset methods use carefully-designed criteria to quantify the importance of each data example via ground truth labels and dataset-specific training, then select examples whose scores lie in a certain range to construct a coreset. These methods work well in their respective settings, however, they cannot select data that are unlabeled, which is the majority of real-world data. To that end, this paper motivates and formalizes the problem of unlabeled coreset selection to enable greater scale and reduce annotation costs for deep learning. As a solution, we develop Zero-Shot Coreset Selection (ZCore), a method that efficiently selects coresets without ground truth labels or training on candidate data. Instead, ZCore uses existing foundation models to generate a zero-shot embedding space for unlabeled data, then quantifies the relative importance of each example based on overall coverage and redundancy within the embedding distribution. We evaluate ZCore on four datasets and outperform several state-of-the-art label-based methods, leading to a strong baseline for future research in unlabeled coreset selection. On ImageNet, ZCore selections achieve a downstream model accuracy of 53.99% with only 10% training data, which outperforms label-based methods while removing annotation requirements for 1.15 million images. Our code is publicly available at https://github.com/voxel51/zcore.
△ Less
Submitted 22 November, 2024;
originally announced November 2024.
-
Autoregressive models for panel data causal inference with application to state-level opioid policies
Authors:
Joseph Antonelli,
Max Rubinstein,
Denis Agniel,
Rosanna Smart,
Elizabeth Stuart,
Matthew Cefalu,
Terry Schell,
Joshua Eagan,
Elizabeth Stone,
Max Griswold,
Mark Sorbero,
Beth Ann Griffin
Abstract:
Motivated by the study of state opioid policies, we propose a novel approach that uses autoregressive models for causal effect estimation in settings with panel data and staggered treatment adoption. Specifically, we seek to estimate of the impact of key opioid-related policies by quantifying the effects of must access prescription drug monitoring programs (PDMPs), naloxone access laws (NALs), and…
▽ More
Motivated by the study of state opioid policies, we propose a novel approach that uses autoregressive models for causal effect estimation in settings with panel data and staggered treatment adoption. Specifically, we seek to estimate of the impact of key opioid-related policies by quantifying the effects of must access prescription drug monitoring programs (PDMPs), naloxone access laws (NALs), and medical marijuana laws on opioid prescribing. Existing methods, such as differences-in-differences and synthetic controls, are challenging to apply in these types of dynamic policy landscapes where multiple policies are implemented over time and sample sizes are small. Autoregressive models are an alternative strategy that have been used to estimate policy effects in similar settings, but until this paper have lacked formal justification. We outline a set of assumptions that tie these models to causal effects, and we study biases of estimates based on this approach when key causal assumptions are violated. In a set of simulation studies that mirror the structure of our application, we also show that our proposed estimators frequently outperform existing estimators. In short, we justify the use of autoregressive models to provide robust evidence on the effectiveness of four state policies in combating the opioid crisis.
△ Less
Submitted 16 August, 2024;
originally announced August 2024.
-
Design, Construction, and Test of Compact, Distributed-Charge, X-Band Accelerator Systems that Enable Image-Guided, VHEE FLASH Radiotherapy
Authors:
Christopher P. J. Barty,
J. Martin Algots,
Alexander J. Amador,
James C. R. Barty,
Shawn M. Betts,
Marcelo A. Castañeda,
Matthew M. Chu,
Michael E. Daley,
Ricardo A. De Luna Lopez,
Derek A. Diviak,
Haytham H. Effarah,
Roberto Feliciano,
Adan Garcia,
Keith J. Grabiel,
Alex S. Griffin,
Frederic V. Hartemann,
Leslie Heid,
Yoonwoo Hwang,
Gennady Imeshev,
Michael Jentschel,
Christopher A. Johnson,
Kenneth W. Kinosian,
Agnese Lagzda,
Russell J. Lochrie,
Michael W. May
, et al. (18 additional authors not shown)
Abstract:
The design and optimization of laser-Compton x-ray systems based on compact distributed charge accelerator structures can enable micron-scale imaging of disease and the concomitant production of beams of Very High Energy Electrons (VHEEs) capable of producing FLASH-relevant dose rates. The physics of laser-Compton x-ray scattering ensures that the scattered x-rays follow exactly the trajectory of…
▽ More
The design and optimization of laser-Compton x-ray systems based on compact distributed charge accelerator structures can enable micron-scale imaging of disease and the concomitant production of beams of Very High Energy Electrons (VHEEs) capable of producing FLASH-relevant dose rates. The physics of laser-Compton x-ray scattering ensures that the scattered x-rays follow exactly the trajectory of the incident electrons, thus providing a route to image-guided, VHEE FLASH radiotherapy. The keys to a compact architecture capable of producing both laser-Compton x-rays and VHEEs are the use of X-band RF accelerator structures which have been demonstrated to operate with over 100 MeV/m acceleration gradients. The operation of these structures in a distributed charge mode in which each radiofrequency (RF) cycle of the drive RF pulse is filled with a low-charge, high-brightness electron bunch is enabled by the illumination of a high-brightness photogun with a train of UV laser pulses synchronized to the frequency of the underlying accelerator system. The UV pulse trains are created by a patented pulse synthesis approach which utilizes the RF clock of the accelerator to phase and amplitude modulate a narrow band continuous wave (CW) seed laser. In this way it is possible to produce up to 10 $μ$A of average beam current from the accelerator. Such high current from a compact accelerator enables production of sufficient x-rays via laser-Compton scattering for clinical imaging and does so from a machine of "clinical" footprint. At the same time, the production of 1000 or greater individual micro-bunches per RF pulse enables > 10 nC of charge to be produced in a macrobunch of < 100 ns. The design, construction, and test of the 100-MeV class prototype system in Irvine, CA is also presented.
△ Less
Submitted 2 January, 2025; v1 submitted 7 August, 2024;
originally announced August 2024.
-
The Local Interaction Basis: Identifying Computationally-Relevant and Sparsely Interacting Features in Neural Networks
Authors:
Lucius Bushnaq,
Stefan Heimersheim,
Nicholas Goldowsky-Dill,
Dan Braun,
Jake Mendel,
Kaarel Hänni,
Avery Griffin,
Jörn Stöhler,
Magdalena Wache,
Marius Hobbhahn
Abstract:
Mechanistic interpretability aims to understand the behavior of neural networks by reverse-engineering their internal computations. However, current methods struggle to find clear interpretations of neural network activations because a decomposition of activations into computational features is missing. Individual neurons or model components do not cleanly correspond to distinct features or functi…
▽ More
Mechanistic interpretability aims to understand the behavior of neural networks by reverse-engineering their internal computations. However, current methods struggle to find clear interpretations of neural network activations because a decomposition of activations into computational features is missing. Individual neurons or model components do not cleanly correspond to distinct features or functions. We present a novel interpretability method that aims to overcome this limitation by transforming the activations of the network into a new basis - the Local Interaction Basis (LIB). LIB aims to identify computational features by removing irrelevant activations and interactions. Our method drops irrelevant activation directions and aligns the basis with the singular vectors of the Jacobian matrix between adjacent layers. It also scales features based on their importance for downstream computation, producing an interaction graph that shows all computationally-relevant features and interactions in a model. We evaluate the effectiveness of LIB on modular addition and CIFAR-10 models, finding that it identifies more computationally-relevant features that interact more sparsely, compared to principal component analysis. However, LIB does not yield substantial improvements in interpretability or interaction sparsity when applied to language models. We conclude that LIB is a promising theory-driven approach for analyzing neural networks, but in its current form is not applicable to large language models.
△ Less
Submitted 20 May, 2024; v1 submitted 17 May, 2024;
originally announced May 2024.
-
Identifying Optimal Methods for Addressing Confounding Bias When Estimating the Effects of State-Level Policies
Authors:
Beth Ann Griffin,
Megan S. Schuler,
Elizabeth M. Stone,
Stephen W. Patrick,
Bradley D. Stein,
Pedro Nascimento de Lima,
Max Griswold,
Adam Scherling,
Elizabeth A. Stuart
Abstract:
Background: Policy evaluation studies that assess how state-level policies affect health-related outcomes are foundational to health and social policy research. The relative ability of newer analytic methods to address confounding, a key source of bias in observational studies, has not been closely examined. Methods: We conducted a simulation study to examine how differing magnitudes of confoundin…
▽ More
Background: Policy evaluation studies that assess how state-level policies affect health-related outcomes are foundational to health and social policy research. The relative ability of newer analytic methods to address confounding, a key source of bias in observational studies, has not been closely examined. Methods: We conducted a simulation study to examine how differing magnitudes of confounding affected the performance of four methods used for policy evaluations: (1) the two-way fixed effects (TWFE) difference-in-differences (DID) model; (2) a one-period lagged autoregressive (AR) model; (3) augmented synthetic control method (ASCM); and (4) the doubly robust DID approach with multiple time periods from Callaway-Sant'Anna (CSA). We simulated our data to have staggered policy adoption and multiple confounding scenarios (i.e., varying the magnitude and nature of confounding relationships). Results: Bias increased for each method: (1) as confounding magnitude increases; (2) when confounding is generated with respect to prior outcome trends (rather than levels), and (3) when confounding associations are nonlinear (rather than linear). The AR and ASCM have notably lower root mean squared error than the TWFE model and CSA approach for all scenarios; the exception is nonlinear confounding by prior trends, where CSA excels. Coverage rates are unreasonably high for ASCM (e.g., 100%), reflecting large model-based standard errors and wide confidence intervals in practice. Conclusions: Our simulation study indicated that no single method consistently outperforms the others. But a researcher's toolkit should include all methodological options. Our simulations and associated R package can help researchers choose the most appropriate approach for their data.
△ Less
Submitted 3 July, 2023;
originally announced July 2023.
-
A tutorial for using propensity score weighting for moderation analysis: an application to smoking disparities among sexual minority adults
Authors:
Beth Ann Griffin,
Megan S. Schuler,
Matt Cefalu,
Lynsay Ayer,
Mark Godley,
Noah Greifer,
Donna L. Coffman,
Daniel McCaffrey
Abstract:
Objective. To provide step-by-step guidance and STATA and R code for using propensity score (PS) weighting to estimate moderation effects. Research Design. Tutorial illustrating the key steps for estimating and testing moderation using observational data. Steps include (1) examining covariate overlap across treatment groups within levels of the moderator, (2) estimating the PS weights, (3) evaluat…
▽ More
Objective. To provide step-by-step guidance and STATA and R code for using propensity score (PS) weighting to estimate moderation effects. Research Design. Tutorial illustrating the key steps for estimating and testing moderation using observational data. Steps include (1) examining covariate overlap across treatment groups within levels of the moderator, (2) estimating the PS weights, (3) evaluating whether PS weights improved covariate balance, (4) estimating moderated treatment effects, and (5) assessing sensitivity of findings to unobserved confounding. Our illustrative case study uses data from 41,832 adults from the 2019 National Survey on Drug Use and Health to examine if gender moderates the association between sexual minority status (e.g., lesbian, gay, or bisexual [LGB] identity) and adult smoking prevalence. Results. For our case study, there were no noted concerns about covariate overlap and we were able to successfully estimate the PS weights within each level of the moderator. Moreover, balance criteria indicated that PS weights successfully achieved covariate balance for both moderator groups. PS weighted results indicated there was significant evidence of moderation for the case study and sensitivity analyses demonstrated that results were highly robust for one level of the moderator but not the other. Conclusions. When conducting moderation analyses, covariate imbalances across levels of the moderator can cause biased estimates. As demonstrated in this tutorial, PS weighting within each level of the moderator can improve the estimated moderation effects by minimizing bias from imbalance within the moderator subgroups.
△ Less
Submitted 9 May, 2023; v1 submitted 7 April, 2022;
originally announced April 2022.
-
Vortex creation, annihilation and nonlinear dynamics in atomic vapors
Authors:
P. Azam,
A. Griffin,
S. Nazarenko,
R. Kaiser
Abstract:
We exploit new techniques for generating vortices and controlling their interactions in an optical beam in a nonlinear atomic vapor. A precise control of the vortex positions allows us to observe strong interactions leading to vortex dynamics involving annihilations. With this improved controlled nonlinear system, we get closer to the pure hydrodynamic regime than in previous experiments while a w…
▽ More
We exploit new techniques for generating vortices and controlling their interactions in an optical beam in a nonlinear atomic vapor. A precise control of the vortex positions allows us to observe strong interactions leading to vortex dynamics involving annihilations. With this improved controlled nonlinear system, we get closer to the pure hydrodynamic regime than in previous experiments while a wavefront sensor offers us a direct access to the fluid's density and velocity. Finally, we developed a relative phase shift method which mimics a time evolution process without changing non-linear parameters. These observations are an important step toward the experimental implementation of 2D turbulent state
△ Less
Submitted 8 March, 2022;
originally announced March 2022.
-
Energy spectrum of two-dimensional acoustic turbulence
Authors:
Adam Griffin,
Giorgio Krstulovic,
Victor L'vov,
Sergey Nazarenko
Abstract:
We report an exact unique constant-flux power-law analytical solution of the wave kinetic equation for the turbulent energy spectrum, $E(k)=C_1 \sqrt{\varepsilon\, a c_{\rm s} }/k$, of acoustic waves in 2D with almost linear dispersion law, $ω_k = c_{\rm s} k[1+(ak)^2]$, $ ak \ll 1$. Here $\varepsilon$ is the energy flux over scales, and $C_1$ is the universal constant which was found analytically…
▽ More
We report an exact unique constant-flux power-law analytical solution of the wave kinetic equation for the turbulent energy spectrum, $E(k)=C_1 \sqrt{\varepsilon\, a c_{\rm s} }/k$, of acoustic waves in 2D with almost linear dispersion law, $ω_k = c_{\rm s} k[1+(ak)^2]$, $ ak \ll 1$. Here $\varepsilon$ is the energy flux over scales, and $C_1$ is the universal constant which was found analytically. Our theory describes, for example, acoustic turbulence in 2D Bose-Einstein condensates (BECs). The corresponding 3D counterpart of turbulent acoustic spectrum was found over half a century ago, however, due to the singularity in 2D, no solution has been obtained until now. We show the spectrum $E(k)$ is realizable in direct numerical simulations of forced-dissipated Gross-Pitaevskii equation in the presence of strong condensate.
△ Less
Submitted 8 April, 2022; v1 submitted 20 December, 2021;
originally announced December 2021.
-
Estimating effects within nonlinear autoregressive models: a case study on the impact of child access prevention laws on firearm mortality
Authors:
Matthew Cefalu,
Terry Schell,
Beth Ann Griffin,
Rosanna Smart,
Andrew Morral
Abstract:
Autoregressive models are widely used for the analysis of time-series data, but they remain underutilized when estimating effects of interventions. This is in part due to endogeneity of the lagged outcome with any intervention of interest, which creates difficulty interpreting model coefficients. These problems are only exacerbated in nonlinear or nonadditive models that are common when studying c…
▽ More
Autoregressive models are widely used for the analysis of time-series data, but they remain underutilized when estimating effects of interventions. This is in part due to endogeneity of the lagged outcome with any intervention of interest, which creates difficulty interpreting model coefficients. These problems are only exacerbated in nonlinear or nonadditive models that are common when studying crime, mortality, or disease. In this paper, we explore the use of negative binomial autoregressive models when estimating the effects of interventions on count data. We derive a simple approximation that facilitates direct interpretation of model parameters under any order autoregressive model. We illustrate the approach using an empirical simulation study using 36 years of state-level firearm mortality data from the United States and use the approach to estimate the effect of child access prevention laws on firearm mortality.
△ Less
Submitted 7 September, 2021;
originally announced September 2021.
-
Analysing spatiotemporal instabilities in magneto-optical traps with the tools of turbulence theory
Authors:
Adam Griffin,
Marius Gaudesius,
Robin Kaiser,
Sergey Nazarenko,
Guillaume Labeyrie
Abstract:
A large cloud of $^{87}$Rb atoms confined in a magneto-optical trap exhibits, in a certain regime of parameters, spatio-temporal instabilities with a dynamics resembling that of a turbulent fluid. We apply the methods of turbulence theory based on structure function analysis to extract scaling exponents which are compared to known turbulent regimes. This analysis also allows us to make a clear dis…
▽ More
A large cloud of $^{87}$Rb atoms confined in a magneto-optical trap exhibits, in a certain regime of parameters, spatio-temporal instabilities with a dynamics resembling that of a turbulent fluid. We apply the methods of turbulence theory based on structure function analysis to extract scaling exponents which are compared to known turbulent regimes. This analysis also allows us to make a clear distinction between different instability regimes.
△ Less
Submitted 24 January, 2023; v1 submitted 27 August, 2021;
originally announced August 2021.
-
How balance and sample size impact bias in the estimation of causal treatment effects: A simulation study
Authors:
Andreas Markoulidakis,
Peter Holmans,
Philip Pallmann,
Monica Busse,
Beth Ann Griffin
Abstract:
Observational studies are often used to understand relationships between exposures and outcomes. They do not, however, allow conclusions about causal relationships to be drawn unless statistical techniques are used to account for the imbalance of confounders across exposure groups. Propensity score and balance weighting (PSBW) are useful techniques that aim to reduce the imbalances between exposur…
▽ More
Observational studies are often used to understand relationships between exposures and outcomes. They do not, however, allow conclusions about causal relationships to be drawn unless statistical techniques are used to account for the imbalance of confounders across exposure groups. Propensity score and balance weighting (PSBW) are useful techniques that aim to reduce the imbalances between exposure groups by weighting the groups to look alike on the observed confounders. Despite the plethora of available methods to estimate PSBW, there is little guidance on what one defines as adequate balance, and unbiased and robust estimation of the causal treatment effect is not guaranteed unless several conditions hold. Accurate inference requires that 1. the treatment allocation mechanism is known, 2. the relationship between the baseline covariates and the outcome is known, 3. adequate balance of baseline covariates is achieved post-weighting, 4. a proper set of covariates to control for confounding bias is known, and 5. a large enough sample size is available. In this article, we use simulated data of various sizes to investigate the influence of these five factors on statistical inference. Our findings provide evidence that the maximum Kolmogorov- Smirnov statistic is the proper statistical measure to assess balance on the baseline covariates, in contrast to the mean standardised mean difference used in many applications, and 0.1 is a suitable threshold to consider as acceptable balance. Finally, we recommend that 60-80 observations, per confounder per treatment group, are required to obtain a reliable and unbiased estimation of the causal treatment effect.
△ Less
Submitted 19 July, 2021;
originally announced July 2021.
-
Balancing Higher Moments Matters for Causal Estimation: Further Context for the Results of Setodji et al. (2017)
Authors:
Melody Y. Huang,
Brian G. Vegetabile,
Lane F. Burgette,
Claude Setodji,
Beth Ann Griffin
Abstract:
We expand upon the simulation study of Setodji et al. (2017) which compared three promising balancing methods when assessing the average treatment effect on the treated for binary treatments: generalized boosted models (GBM), covariate-balancing propensity scores (CBPS), and entropy balance (EB). The study showed that GBM can outperform CBPS and EB when there are likely to be non-linear associatio…
▽ More
We expand upon the simulation study of Setodji et al. (2017) which compared three promising balancing methods when assessing the average treatment effect on the treated for binary treatments: generalized boosted models (GBM), covariate-balancing propensity scores (CBPS), and entropy balance (EB). The study showed that GBM can outperform CBPS and EB when there are likely to be non-linear associations in both the treatment assignment and outcome models and CBPS and EB are fine-tuned to obtain balance only on first order moments. We explore the potential benefit of using higher-order moments in the balancing conditions for CBPS and EB. Our findings showcase that CBPS and EB should, by default, include higher order moments and that focusing only on first moments can result in substantial bias in both CBPS and EB estimated treatment effect estimates that could be avoided by the use of higher moments.
△ Less
Submitted 8 July, 2021;
originally announced July 2021.
-
Methodological considerations for estimating policy effects in the context of co-occurring policies
Authors:
Beth Ann Griffin,
Megan S. Schuler,
Joseph Pane,
Stephen W. Patrick,
Rosanna Smart,
Bradley D. Stein,
Geoffrey Grimm,
Elizabeth A. Stuart
Abstract:
Understanding how best to estimate state-level policy effects is important, and several unanswered questions remain, particularly about the ability of statistical models to disentangle the effects of concurrently enacted policies. In practice, many policy evaluation studies do not attempt to control for effects of co-occurring policies, and this issue has not received extensive attention in the me…
▽ More
Understanding how best to estimate state-level policy effects is important, and several unanswered questions remain, particularly about the ability of statistical models to disentangle the effects of concurrently enacted policies. In practice, many policy evaluation studies do not attempt to control for effects of co-occurring policies, and this issue has not received extensive attention in the methodological literature to date. In this study, we utilized Monte Carlo simulations to assess the impact of co-occurring policies on the performance of commonly-used statistical models in state policy evaluations. Simulation conditions varied effect sizes of the co-occurring policies and length of time between policy enactment dates, among other factors. Outcome data (annual state-specific opioid mortality rate per 100,000) were obtained from 1999-2016 National Vital Statistics System (NVSS) Multiple Cause of Death mortality files, thus yielding longitudinal annual state-level data over 18 years from 50 states. When co-occurring policies are ignored (i.e., omitted from the analytic model), our results demonstrated that high relative bias (>85%) arises, particularly when policies are enacted in rapid succession. Moreover, as expected, controlling for all co-occurring policies will effectively mitigate the threat of confounding bias; however, effect estimates may be relatively imprecise (i.e., larger variance) when policies are enacted in near succession. Our findings highlight several key methodological issues regarding co-occurring policies in the context of opioid-policy research yet also generalize more broadly to evaluation of other state-level policies, such as policies related to firearms or COVID-19, showcasing the need to think critically about co-occurring policies that are likely to influence the outcome when specifying analytic models.
△ Less
Submitted 9 August, 2022; v1 submitted 8 June, 2021;
originally announced June 2021.
-
Depth from Camera Motion and Object Detection
Authors:
Brent A. Griffin,
Jason J. Corso
Abstract:
This paper addresses the problem of learning to estimate the depth of detected objects given some measurement of camera motion (e.g., from robot kinematics or vehicle odometry). We achieve this by 1) designing a recurrent neural network (DBox) that estimates the depth of objects using a generalized representation of bounding boxes and uncalibrated camera movement and 2) introducing the Object Dept…
▽ More
This paper addresses the problem of learning to estimate the depth of detected objects given some measurement of camera motion (e.g., from robot kinematics or vehicle odometry). We achieve this by 1) designing a recurrent neural network (DBox) that estimates the depth of objects using a generalized representation of bounding boxes and uncalibrated camera movement and 2) introducing the Object Depth via Motion and Detection Dataset (ODMD). ODMD training data are extensible and configurable, and the ODMD benchmark includes 21,600 examples across four validation and test sets. These sets include mobile robot experiments using an end-effector camera to locate objects from the YCB dataset and examples with perturbations added to camera motion or bounding box data. In addition to the ODMD benchmark, we evaluate DBox in other monocular application domains, achieving state-of-the-art results on existing driving and robotics benchmarks and estimating the depth of objects using a camera phone.
△ Less
Submitted 1 March, 2021;
originally announced March 2021.
-
Best Practices in Statistical Computing
Authors:
Ricardo Sanchez,
Beth Ann Griffin,
Joseph Pane,
Daniel McCaffrey
Abstract:
The world is becoming increasingly complex, both in terms of the rich sources of data we have access to as well as in terms of the statistical and computational methods we can use on those data. These factors create an ever-increasing risk for errors in our code and sensitivity in our findings to data preparation and execution of complex statistical and computing methods. The consequences of codin…
▽ More
The world is becoming increasingly complex, both in terms of the rich sources of data we have access to as well as in terms of the statistical and computational methods we can use on those data. These factors create an ever-increasing risk for errors in our code and sensitivity in our findings to data preparation and execution of complex statistical and computing methods. The consequences of coding and data mistakes can be substantial. Openness (e.g., providing others with data code) and transparency (e.g., requiring that data processing and code follow standards) are two key solutions to help alleviate concerns about replicability and errors. In this paper, we describe the key steps for implementing a code quality assurance (QA) process for researchers to follow to improve their coding practices throughout a project to assure the quality of the final data, code, analyses and ultimately the results. These steps include: (i) adherence to principles for code writing and style that follow best practices, (ii) clear written documentation that describes code, workflow and key analytic decisions; (iii) careful version control, (iv) good data management; and (iv) regular testing and review. Following all these steps will greatly improve the ability of a study to assure results are accurate and reproducible. The responsibility for code QA falls not only on individual researchers but institutions, journals, and funding agencies as well.
△ Less
Submitted 6 August, 2021; v1 submitted 28 January, 2021;
originally announced January 2021.
-
A tutorial comparing different covariate balancing methods with an application evaluating the causal effects of substance use treatment programs for adolescents
Authors:
Andreas Markoulidakis,
Khadijeh Taiyari,
Peter Holmans,
Philip Pallmann,
Monica Busse,
Mark D. Godley,
Beth Ann Griffin
Abstract:
Randomized controlled trials are the gold standard for measuring causal effects. However, they are often not always feasible, and causal treatment effects must be estimated from observational data. Observational studies do not allow robust conclusions about causal relationships unless statistical techniques account for the imbalance of pretreatment confounders across groups while key assumptions h…
▽ More
Randomized controlled trials are the gold standard for measuring causal effects. However, they are often not always feasible, and causal treatment effects must be estimated from observational data. Observational studies do not allow robust conclusions about causal relationships unless statistical techniques account for the imbalance of pretreatment confounders across groups while key assumptions hold. Propensity score and balance weighting (PSBW) are useful techniques that aim to reduce the imbalances between treatment groups by weighting the groups to look alike on the observed confounders. There are many methods available to estimate PSBW. However, it is unclear a priori which will achieve the best trade-off between covariate balance and effective sample size. Moreover, it is critical to assess the validity of key assumptions required for robust estimation of the needed treatment effects, including the overlap and no unmeasured confounding assumptions. We present a step-by-step guide to covariate balancing strategies, including how to evaluate overlap, obtain estimates of PSBW, check for covariate balance, and assess sensitivity to unobserved confounding. We compare the performance of several estimation methods using a case study examining the relative effectiveness of substance use treatment programs and provide a user-friendly web application that can implement the proposed steps.
△ Less
Submitted 15 May, 2021; v1 submitted 19 October, 2020;
originally announced October 2020.
-
An epidemic model for an evolving pathogen with strain-dependent immunity
Authors:
Adam Griffin,
Simon E. F. Spencer,
Gareth O. Roberts
Abstract:
Between pandemics, the influenza virus exhibits periods of incremental evolution via a process known as antigenic drift. This process gives rise to a sequence of strains of the pathogen that are continuously replaced by newer strains, preventing a build up of immunity in the host population. In this paper, a parsimonious epidemic model is defined that attempts to capture the dynamics of evolving s…
▽ More
Between pandemics, the influenza virus exhibits periods of incremental evolution via a process known as antigenic drift. This process gives rise to a sequence of strains of the pathogen that are continuously replaced by newer strains, preventing a build up of immunity in the host population. In this paper, a parsimonious epidemic model is defined that attempts to capture the dynamics of evolving strains within a host population. The `evolving strains' epidemic model has many properties that lie in-between the Susceptible-Infected-Susceptible and the Susceptible-Infected-Removed epidemic models, due to the fact that individuals can only be infected by each strain once, but remain susceptible to reinfection by newly emerged strains. Coupling results are used to identify key properties, such as the time to extinction. A range of reproduction numbers are explored to characterize the model, including a novel quasi-stationary reproduction number that can be used to describe the re-emergence of the pathogen into a population with `average' levels of strain immunity, analogous to the beginning of the winter peak in influenza. Finally the quasi-stationary distribution of the evolving strains model is explored via simulation.
△ Less
Submitted 17 August, 2020;
originally announced August 2020.
-
Learning Object Depth from Camera Motion and Video Object Segmentation
Authors:
Brent A. Griffin,
Jason J. Corso
Abstract:
Video object segmentation, i.e., the separation of a target object from background in video, has made significant progress on real and challenging videos in recent years. To leverage this progress in 3D applications, this paper addresses the problem of learning to estimate the depth of segmented objects given some measurement of camera motion (e.g., from robot kinematics or vehicle odometry). We a…
▽ More
Video object segmentation, i.e., the separation of a target object from background in video, has made significant progress on real and challenging videos in recent years. To leverage this progress in 3D applications, this paper addresses the problem of learning to estimate the depth of segmented objects given some measurement of camera motion (e.g., from robot kinematics or vehicle odometry). We achieve this by, first, introducing a diverse, extensible dataset and, second, designing a novel deep network that estimates the depth of objects using only segmentation masks and uncalibrated camera movement. Our data-generation framework creates artificial object segmentations that are scaled for changes in distance between the camera and object, and our network learns to estimate object depth even with segmentation errors. We demonstrate our approach across domains using a robot camera to locate objects from the YCB dataset and a vehicle camera to locate obstacles while driving.
△ Less
Submitted 18 December, 2020; v1 submitted 10 July, 2020;
originally announced July 2020.
-
Equipartition of Energy Defines the Size-Thickness Relationship in Liquid-Exfoliated Nanosheets
Authors:
Claudia Backes,
Davide Campi,
Beata M. Szydlowska,
Kevin Synnatschke,
Ezgi Ojala,
Farnia Rashvand,
Andrew Harvey,
Aideen Griffin,
Zdenek Sofer,
Nicola Marzari,
Jonathan N. Coleman,
David D. O'Regan
Abstract:
Liquid phase exfoliation is a commonly used method to produce 2D nanosheets from a range of layered crystals. However, such nanosheets display broad size and thickness distributions and correlations between area and thickness, issues that limit nanosheet application potential. To understand the factors controlling the exfoliation process, we have liquid-exfoliated 11 different layered materials, s…
▽ More
Liquid phase exfoliation is a commonly used method to produce 2D nanosheets from a range of layered crystals. However, such nanosheets display broad size and thickness distributions and correlations between area and thickness, issues that limit nanosheet application potential. To understand the factors controlling the exfoliation process, we have liquid-exfoliated 11 different layered materials, size-selecting each into fractions before using AFM to measure the nanosheet length, width, and thickness distributions for each fraction. The resultant data show a clear power-law scaling of nanosheet area with thickness for each material. We have developed a simple nonequilibrium thermodynamics-based model predicting that the power-law prefactor is proportional to both the ratios of in-plane-tearing/out-of-plane-peeling energies and in-plane/out-of-plane moduli. By comparing the experimental data with the modulus ratio calculated from first-principles, we find close agreement between experiment and theory. This supports our hypothesis that energy equipartition holds between nanosheet tearing and peeling during sonication-assisted exfoliation.
△ Less
Submitted 26 June, 2020;
originally announced June 2020.
-
Towards Detection of Sheep Onboard a UAV
Authors:
Farah Sarwar,
Anthony Griffin,
Saeed Ur Rehman,
Timotius Pasang
Abstract:
In this work we consider the task of detecting sheep onboard an unmanned aerial vehicle (UAV) flying at an altitude of 80 m. At this height, the sheep are relatively small, only about 15 pixels across. Although deep learning strategies have gained enormous popularity in the last decade and are now extensively used for object detection in many fields, state-of-the-art detectors perform poorly in th…
▽ More
In this work we consider the task of detecting sheep onboard an unmanned aerial vehicle (UAV) flying at an altitude of 80 m. At this height, the sheep are relatively small, only about 15 pixels across. Although deep learning strategies have gained enormous popularity in the last decade and are now extensively used for object detection in many fields, state-of-the-art detectors perform poorly in the case of smaller objects. We develop a novel dataset of UAV imagery of sheep and consider a variety of object detectors to determine which is the most suitable for our task in terms of both accuracy and speed. Our findings indicate that a UNet detector using the weighted Hausdorff distance as a loss function during training is an excellent option for detection of sheep onboard a UAV.
△ Less
Submitted 18 March, 2020;
originally announced April 2020.
-
Moving beyond the classic difference-in-differences model: A simulation study comparing statistical methods for estimating effectiveness of state-level policies
Authors:
Beth Ann Griffin,
Megan S. Schuler,
Elizabeth A. Stuart,
Stephen Patrick,
Elizabeth McNeer,
Rosanna Smart,
David Powell,
Bradley D. Stein,
Terry Schell,
Rosalie L. Pacula
Abstract:
State-level policy evaluations commonly employ a difference-in-differences (DID) study design; yet within this framework, statistical model specification varies notably across studies. Motivated by applied state-level opioid policy evaluations, this simulation study compares statistical performance of multiple variations of two-way fixed effect models traditionally used for DID under a range of si…
▽ More
State-level policy evaluations commonly employ a difference-in-differences (DID) study design; yet within this framework, statistical model specification varies notably across studies. Motivated by applied state-level opioid policy evaluations, this simulation study compares statistical performance of multiple variations of two-way fixed effect models traditionally used for DID under a range of simulation conditions. While most linear models resulted in minimal bias, non-linear models and population-weighted versions of classic linear two-way fixed effect and linear GEE models yielded considerable bias (60 to 160%). Further, root mean square error is minimized by linear AR models when examining crude mortality rates and by negative binomial models when examining raw death counts. In the context of frequentist hypothesis testing, many models yielded high Type I error rates and very low rates of correctly rejecting the null hypothesis (< 10%), raising concerns of spurious conclusions about policy effectiveness. When considering performance across models, the linear autoregressive models were optimal in terms of directional bias, root mean squared error, Type I error, and correct rejection rates. These findings highlight notable limitations of traditional statistical models commonly used for DID designs, designs widely used in opioid policy studies and in state policy evaluations more broadly.
△ Less
Submitted 8 June, 2021; v1 submitted 26 March, 2020;
originally announced March 2020.
-
Nonparametric Estimation of Population Average Dose-Response Curves using Entropy Balancing Weights for Continuous Exposures
Authors:
Brian G. Vegetabile,
Beth Ann Griffin,
Donna L. Coffman,
Matthew Cefalu,
Daniel F. McCaffrey
Abstract:
Weighted estimators are commonly used for estimating exposure effects in observational settings to establish causal relations. These estimators have a long history of development when the exposure of interest is binary and where the weights are typically functions of an estimated propensity score. Recent developments in optimization-based estimators for constructing weights in binary exposure sett…
▽ More
Weighted estimators are commonly used for estimating exposure effects in observational settings to establish causal relations. These estimators have a long history of development when the exposure of interest is binary and where the weights are typically functions of an estimated propensity score. Recent developments in optimization-based estimators for constructing weights in binary exposure settings, such as those based on entropy balancing, have shown more promise in estimating treatment effects than those methods that focus on the direct estimation of the propensity score using likelihood-based methods. This paper explores recent developments of entropy balancing methods to continuous exposure settings and the estimation of population dose-response curves using nonparametric estimation combined with entropy balancing weights, focusing on factors that would be important to applied researchers in medical or health services research. The methods developed here are applied to data from a study assessing the effect of non-randomized components of an evidence-based substance use treatment program on emotional and substance use clinical outcomes.
△ Less
Submitted 5 March, 2020;
originally announced March 2020.
-
Do model emission line galaxies live in filaments at z~1?
Authors:
V. Gonzalez-Perez,
W. Cui,
S. Contreras,
C. M. Baugh,
J. Comparat,
A. J. Griffin,
J. Helly,
A. Knebe,
C. Lacey,
P. Norberg
Abstract:
Current and future cosmological surveys are targeting star-forming galaxies at $z\sim 1$ with nebular emission lines. We use a state-of-the-art semi-analytical model of galaxy formation and evolution to explore the large scale environment of star-forming emission line galaxies (ELGs). Model ELGs are selected such that they can be compared directly with the DEEP2, VVDS, eBOSS-SGC and DESI surveys.…
▽ More
Current and future cosmological surveys are targeting star-forming galaxies at $z\sim 1$ with nebular emission lines. We use a state-of-the-art semi-analytical model of galaxy formation and evolution to explore the large scale environment of star-forming emission line galaxies (ELGs). Model ELGs are selected such that they can be compared directly with the DEEP2, VVDS, eBOSS-SGC and DESI surveys. The large scale environment of the ELGs is classified using velocity-shear-tensor and tidal-tensor algorithms. Half of the model ELGs live in filaments and about a third in sheets. Model ELGs which reside in knots have the largest satellite fractions. We find that the shape of the mean halo occupation distribution of model ELGs varies widely for different large scale environments. To interpret our results, we also study fixed number density samples of ELGs and galaxies selected using simpler criteria, with single cuts in stellar mass, star formation rate and [OII] luminosity. The fixed number density ELG selection produces samples that are close to L[OII] and SFR selected samples for densities above $10^{-4.2}h^{3}{\rm Mpc}^{-3}$. ELGs with an extra cut in stellar mass applied to fix their number density, present differences in sheets and knots with respect to the other samples. ELGs, SFR and L[OII] selected samples with equal number density have similar large scale bias but their clustering below separations of $1h^{-1}$Mpc is different.
△ Less
Submitted 14 August, 2020; v1 submitted 17 January, 2020;
originally announced January 2020.
-
The evolution of radio jets across cosmic time
Authors:
Andrew J. Griffin,
Cedric G. Lacey,
Violeta Gonzalez-Perez,
Claudia del P. Lagos
Abstract:
We present predictions for the evolution of radio emission from Active Galactic Nuclei (AGNs). We use a model that follows the evolution of Supermassive Black Hole (SMBH) masses and spins, within the latest version of the GALFORM semi-analytic model of galaxy formation. We use a Blandford-Znajek type model to calculate the power of the relativistic jets produced by black hole accretion discs, and…
▽ More
We present predictions for the evolution of radio emission from Active Galactic Nuclei (AGNs). We use a model that follows the evolution of Supermassive Black Hole (SMBH) masses and spins, within the latest version of the GALFORM semi-analytic model of galaxy formation. We use a Blandford-Znajek type model to calculate the power of the relativistic jets produced by black hole accretion discs, and a scaling model to calculate radio luminosities. First, we present the predicted evolution of the jet power distribution, finding that this is dominated by objects fuelled by hot halo accretion and an ADAF accretion state for jet powers above $10^{32}\mathrm{W}$ at $z=0$, with the contribution from objects fuelled by starbursts and in a thin disc accretion state being more important for lower jet powers at $z=0$ and at all jet powers at high redshifts ($z\geq3$). We then present the evolution of the jet power density from the model. The model is consistent with current observational estimates of jet powers from radio luminosities, once we allow for the significant uncertainties in these observational estimates. Next, we calibrate the model for radio emission to a range of observational estimates of the $z=0$ radio luminosity function. We compare the evolution of the model radio luminosity function to observational estimates for $0<z<6$, finding that the predicted evolution is similar to that observed. Finally, we explore recalibrating the model to reproduce luminosity functions of core radio emission, finding that the model is in approximate agreement with the observations.
△ Less
Submitted 7 January, 2020; v1 submitted 19 December, 2019;
originally announced December 2019.
-
Quantifying the effect of electrical conductivity on the rate-performance of nanocomposite battery electrodes
Authors:
Ruiyuan Tian,
Nolito Alcala,
Stephen JK ONeill,
Dominik Horvath,
Joao Coelho,
Aideen Griffin,
Yan Zhang,
Valeria Nicolosi,
Colm ODwyer,
Jonathan N Coleman
Abstract:
While it is well-known that electrode conductivity has a critical impact on rate-performance in battery electrodes, this relationship has been quantified only by computer simulations. Here we investigate the relationship between electrode conductivity and rate-performance in Lithium-Nickel-Manganese-Cobalt-Oxide (NMC) cathodes filled with various quantities of carbon black, single-walled carbon na…
▽ More
While it is well-known that electrode conductivity has a critical impact on rate-performance in battery electrodes, this relationship has been quantified only by computer simulations. Here we investigate the relationship between electrode conductivity and rate-performance in Lithium-Nickel-Manganese-Cobalt-Oxide (NMC) cathodes filled with various quantities of carbon black, single-walled carbon nanotubes and graphene. The electrode conductivity is always extremely anisotropic with the out-of-plane conductivity, which is most relevant to rate-performance, roughly 1000 smaller than the in-plane conductivity. For all fillers the conductivity increases with filler loading although the nanotube-filled electrodes show by far the most rapid increase. Fitting capacity versus rate curves yielded the characteristic time associated with charge/discharge. This parameter increased linearly with the inverse of the out-of-plane conductivity, with all data points falling on the same master curve. Using a simple mechanistic model for the characteristic time, we develop an equation which matches the experimental data almost perfectly with no adjustable parameters. This implies that increasing the electrode conductivity improves the rate-performance by decreasing the RC charging time of the electrode. This model shows the effect of electrode resistance on the rate-performance to become negligible in almost all cases once the out-of-plane conductivity of the electrode exceeds 1 S/m. Our results show that this can be achieved by including <1wt% single-walled carbon nanotubes in the electrode.
△ Less
Submitted 5 December, 2019;
originally announced December 2019.
-
Breaking of Josephson junction oscillations and onset of quantum turbulence in Bose--Einstein condensates
Authors:
Adam Griffin,
Sergey Nazarenko,
Davide Proment
Abstract:
We analyse the formation and the dynamics of quantum turbulence in a two-dimensional Bose-Einstein condensate with a Josephson junction barrier modelled using the Gross-Pitaevskii equation. We show that a sufficiently high initial superfluid density imbalance leads to randomisation of the dynamics and generation of turbulence, namely, the formation of a quasi-1D dispersive shock consisting of a tr…
▽ More
We analyse the formation and the dynamics of quantum turbulence in a two-dimensional Bose-Einstein condensate with a Josephson junction barrier modelled using the Gross-Pitaevskii equation. We show that a sufficiently high initial superfluid density imbalance leads to randomisation of the dynamics and generation of turbulence, namely, the formation of a quasi-1D dispersive shock consisting of a train of grey solitons that eventually breakup into chains of distinct quantised vortices of alternating vorticity followed by random turbulent flow. The Josephson junction barrier allows us to create two turbulent regimes: acoustic turbulence on one side and vortex turbulence on the other. Throughout the dynamics, a key mechanism for mixing these two regimes is the transmission of vortex dipoles through the barrier: we analyse this scattering process in terms of the barrier parameters, sound emission and vortex annihilation. Finally, we discuss how the vortex turbulence evolves for long times, presenting the optimal configurations for the density imbalance and barrier height in order to create the desired turbulent regimes which last as long as possible.
△ Less
Submitted 25 February, 2020; v1 submitted 23 September, 2019;
originally announced October 2019.
-
The Vortex-Particle Magnus Effect
Authors:
Adam Griffin,
Sergey Nazarenko,
Vishwanath Shukla,
Marc-Etienne Brachet
Abstract:
Experimentalists use particles as tracers in liquid helium. The intrusive effects of particles on the dynamics of vortices remain poorly understood. We implement a study of how basic well understood vortex states, such as a propagating pair of oppositely signed vortices, change in the presence of particles by using a simple model based on the Magnus force. We focus on the 2D case, and compare the…
▽ More
Experimentalists use particles as tracers in liquid helium. The intrusive effects of particles on the dynamics of vortices remain poorly understood. We implement a study of how basic well understood vortex states, such as a propagating pair of oppositely signed vortices, change in the presence of particles by using a simple model based on the Magnus force. We focus on the 2D case, and compare the analytic and semi-analytic model with simulations of the Gross-Pitaevskii (GP) equation with particles modelled by dynamic external potentials. The results confirm that the Magnus force model is an effective way to approximate vortex-particle motion either with closed-form simplified solutions or with a more accurate numerically solvable ordinary differential equations (ODEs). Furthermore, we increase the complexity of the vortex states and show that the suggested semi-analytical model remains robust in capturing the dynamics observed in the GP simulations.
△ Less
Submitted 22 September, 2019;
originally announced September 2019.
-
AGNs at the cosmic dawn: predictions for future surveys from a $Λ$CDM cosmological model
Authors:
Andrew J. Griffin,
Cedric G. Lacey,
Violeta Gonzalez-Perez,
Claudia del P. Lagos,
Carlton M. Baugh,
Nikos Fanidakis
Abstract:
Telescopes to be launched over the next decade-and-a-half, such as JWST, EUCLID, ATHENA and Lynx, promise to revolutionise the study of the high redshift Universe and greatly advance our understanding of the early stages of galaxy formation. We use a model that follows the evolution of the masses and spins of supermassive black holes (SMBHs) within a semi-analytic model of galaxy formation to make…
▽ More
Telescopes to be launched over the next decade-and-a-half, such as JWST, EUCLID, ATHENA and Lynx, promise to revolutionise the study of the high redshift Universe and greatly advance our understanding of the early stages of galaxy formation. We use a model that follows the evolution of the masses and spins of supermassive black holes (SMBHs) within a semi-analytic model of galaxy formation to make predictions for the Active Galactic Nucleus (AGN) luminosity function at $z\geq7$ in the broadband filters of JWST and EUCLID at near-infrared wavelengths, and ATHENA and Lynx at X-ray energies. The predictions of our model are relatively insensitive to the choice of seed black hole mass, except at the lowest luminosities ($L_{\mathrm{bol}}<10^{43}\mathrm{ergs^{-1}}$) and the highest redshifts ($z>10$). We predict that surveys with these different telescopes will select somewhat different samples of SMBHs, with EUCLID unveiling the most massive, highest accretion rate SMBHs, Lynx the least massive, lowest accretion rate SMBHs, and JWST and ATHENA covering objects inbetween. At $z=7$, we predict that typical detectable SMBHs will have masses, $M_{\mathrm{BH}}\sim10^{5-8}M_{\odot}$, and Eddington normalised mass accretion rates, $\dot{M}/\dot{M}_{\mathrm{Edd}}\sim0.6-2$. The SMBHs will be hosted by galaxies of stellar mass $M_{\star}\sim10^{8-10}M_{\odot}$, and dark matter haloes of mass $M_{\mathrm{halo}}\sim10^{11-12}M_{\odot}$. We predict that the detectable SMBHs at $z=10$ will have slightly smaller black holes, accreting at slightly higher Eddington normalised mass accretion rates, in slightly lower mass host galaxies compared to those at $z=7$, and reside in haloes of mass $M_{\mathrm{halo}}\sim10^{10-11}M_{\odot}$.
△ Less
Submitted 6 January, 2020; v1 submitted 7 August, 2019;
originally announced August 2019.
-
BubbleNets: Learning to Select the Guidance Frame in Video Object Segmentation by Deep Sorting Frames
Authors:
Brent A. Griffin,
Jason J. Corso
Abstract:
Semi-supervised video object segmentation has made significant progress on real and challenging videos in recent years. The current paradigm for segmentation methods and benchmark datasets is to segment objects in video provided a single annotation in the first frame. However, we find that segmentation performance across the entire video varies dramatically when selecting an alternative frame for…
▽ More
Semi-supervised video object segmentation has made significant progress on real and challenging videos in recent years. The current paradigm for segmentation methods and benchmark datasets is to segment objects in video provided a single annotation in the first frame. However, we find that segmentation performance across the entire video varies dramatically when selecting an alternative frame for annotation. This paper address the problem of learning to suggest the single best frame across the video for user annotation-this is, in fact, never the first frame of video. We achieve this by introducing BubbleNets, a novel deep sorting network that learns to select frames using a performance-based loss function that enables the conversion of expansive amounts of training examples from already existing datasets. Using BubbleNets, we are able to achieve an 11% relative improvement in segmentation performance on the DAVIS benchmark without any changes to the underlying method of segmentation.
△ Less
Submitted 23 November, 2020; v1 submitted 27 March, 2019;
originally announced March 2019.
-
Video Object Segmentation-based Visual Servo Control and Object Depth Estimation on a Mobile Robot
Authors:
Brent A. Griffin,
Victoria Florence,
Jason J. Corso
Abstract:
To be useful in everyday environments, robots must be able to identify and locate real-world objects. In recent years, video object segmentation has made significant progress on densely separating such objects from background in real and challenging videos. Building off of this progress, this paper addresses the problem of identifying generic objects and locating them in 3D using a mobile robot wi…
▽ More
To be useful in everyday environments, robots must be able to identify and locate real-world objects. In recent years, video object segmentation has made significant progress on densely separating such objects from background in real and challenging videos. Building off of this progress, this paper addresses the problem of identifying generic objects and locating them in 3D using a mobile robot with an RGB camera. We achieve this by, first, introducing a video object segmentation-based approach to visual servo control and active perception and, second, developing a new Hadamard-Broyden update formulation. Our segmentation-based methods are simple but effective, and our update formulation lets a robot quickly learn the relationship between actuators and visual features without any camera calibration. We validate our approach in experiments by learning a variety of actuator-camera configurations on a mobile HSR robot, which subsequently identifies, locates, and grasps objects from the YCB dataset and tracks people and other dynamic articulated objects in real-time.
△ Less
Submitted 9 January, 2020; v1 submitted 20 March, 2019;
originally announced March 2019.
-
The first Super Massive Black Holes: indications from models for future observations
Authors:
Stergios Amarantidis,
José Afonso,
Hugo Messias,
Bruno Henriques,
Andrew Griffin,
Cedric Lacey,
Claudia del P. Lagos,
Violeta Gonzalez-Perez,
Yohan Dubois,
Marta Volonteri,
Israel Matute,
Ciro Pappalardo,
Yuxiang Qin,
Ranga-Ram Chary,
Ray P. Norris
Abstract:
We present an exploration of the expected detection of the earliest Active Galactic Nuclei (AGN) in the Universe from state-of-art galaxy formation and evolution semi-analytic models and hydro-dynamical simulations. We estimate the number and radiative characteristics of Super Massive Black Holes (SMBHs) at $z\geq 6$, a redshift range that will be intensively explored by the next generation of tel…
▽ More
We present an exploration of the expected detection of the earliest Active Galactic Nuclei (AGN) in the Universe from state-of-art galaxy formation and evolution semi-analytic models and hydro-dynamical simulations. We estimate the number and radiative characteristics of Super Massive Black Holes (SMBHs) at $z\geq 6$, a redshift range that will be intensively explored by the next generation of telescopes, in particular in the radio through the Square Kilometre Array (SKA) and at high energies with ESA's Athena X-ray Observatory. We find that Athena will be able to observe over 5000 AGN/$\rm deg^2$ at the Epoch of Re-ionization (EoR), $6\leq z \leq 10$. Similarly, for the same redshift range the models/simulations suggest that SKA will detect at least 400 AGN/$\rm deg^2$. Additionally, we stress the importance of the volume of the simulation box as well as the initial physical conditions of the models/simulations on their effect on the luminosity functions (LFs) and the creation of the most massive SMBHs that we currently observe at the EoR. Furthermore, following the evolution of the accretion mode of the SMBHs in each model/simulation, we show that, while the quasar dominates over the radio mode at the EoR, detection at radio wavelengths still reaches significant numbers even at the highest redshifts. Finally, we present the effect that the radiative efficiency has on the LFs by comparing results produced with a constant value for the radiative efficiency and more complex calculations based on the spin of each SMBH.
△ Less
Submitted 21 February, 2019;
originally announced February 2019.
-
Tukey-Inspired Video Object Segmentation
Authors:
Brent A. Griffin,
Jason J. Corso
Abstract:
We investigate the problem of strictly unsupervised video object segmentation, i.e., the separation of a primary object from background in video without a user-provided object mask or any training on an annotated dataset. We find foreground objects in low-level vision data using a John Tukey-inspired measure of "outlierness". This Tukey-inspired measure also estimates the reliability of each data…
▽ More
We investigate the problem of strictly unsupervised video object segmentation, i.e., the separation of a primary object from background in video without a user-provided object mask or any training on an annotated dataset. We find foreground objects in low-level vision data using a John Tukey-inspired measure of "outlierness". This Tukey-inspired measure also estimates the reliability of each data source as video characteristics change (e.g., a camera starts moving). The proposed method achieves state-of-the-art results for strictly unsupervised video object segmentation on the challenging DAVIS dataset. Finally, we use a variant of the Tukey-inspired measure to combine the output of multiple segmentation methods, including those using supervision during training, runtime, or both. This collectively more robust method of segmentation improves the Jaccard measure of its constituent methods by as much as 28%.
△ Less
Submitted 29 November, 2018; v1 submitted 19 November, 2018;
originally announced November 2018.
-
The evolution of SMBH spin and AGN luminosities for $z<6$ within a semi-analytic model of galaxy formation
Authors:
Andrew J. Griffin,
Cedric G. Lacey,
Violeta Gonzalez-Perez,
Claudia del P. Lagos,
Carlton M. Baugh,
Nikos Fanidakis
Abstract:
Understanding how Active Galactic Nuclei (AGN) evolve through cosmic time allows us to probe the physical processes that control their evolution. We use an updated model for the evolution of masses and spins of supermassive black holes (SMBHs), coupled to the latest version of the semi-analytical model of galaxy formation GALFORM using the Planck cosmology and a high resolution Millennium style da…
▽ More
Understanding how Active Galactic Nuclei (AGN) evolve through cosmic time allows us to probe the physical processes that control their evolution. We use an updated model for the evolution of masses and spins of supermassive black holes (SMBHs), coupled to the latest version of the semi-analytical model of galaxy formation GALFORM using the Planck cosmology and a high resolution Millennium style dark matter simulation to make predictions for AGN and SMBH properties for $0 < z < 6$. We compare the model to the observed black hole mass function and the SMBH versus galaxy bulge mass relation at $z=0$, and compare the predicted bolometric, hard X-ray, soft X-ray and optical AGN luminosity functions to observations at $z < 6$, and find that the model is in good agreement with the observations. The model predicts that at $z<2$ and $L_{\mathrm{bol}} < 10^{43} \mathrm{ergs^{-1}}$, the AGN luminosity function is dominated by objects accreting in an Advection Dominated Accretion Flow (ADAF) disc state, while at higher redshifts and higher luminosities the dominant contribution is from objects accreting via a thin disc or at super-Eddington rates. The model also predicts that the AGN luminosity function at $z<3$ and $L_{\mathrm{bol}} < 10^{44} \mathrm{ergs^{-1}}$ is dominated by the contribution from AGN fuelled by quiescent hot halo accretion, while at higher luminosities and higher redshifts, the AGN luminosity function is dominated by the contribution from AGN fuelled by starbursts triggered by disc instabilities. We employ this model to predict the evolution of SMBH masses, Eddington ratios, and spins, finding that the median SMBH spin evolves very little for $0<z<6$.
△ Less
Submitted 30 April, 2019; v1 submitted 21 June, 2018;
originally announced June 2018.
-
Spectroscopic size and thickness metrics for liquid-exfoliated h-BN
Authors:
Aideen Griffin,
Andrew Harvey,
Brian Cunningham,
Declan Scullion,
Tian Tian,
Chih-Jen Shih,
Myrta Gruening,
John Donegan,
Elton J. G. Santos,
Claudia Backes,
Jonathan N. Coleman
Abstract:
For many 2D materials, optical and Raman spectra are richly structured, and convey information on a range of parameters including nanosheet size and defect content. By contrast, the equivalent spectra for h-BN are relatively simple, with both the absorption and Raman spectra consisting of a single feature each, disclosing relatively little information. Here, the ability to size-select liquid-exfol…
▽ More
For many 2D materials, optical and Raman spectra are richly structured, and convey information on a range of parameters including nanosheet size and defect content. By contrast, the equivalent spectra for h-BN are relatively simple, with both the absorption and Raman spectra consisting of a single feature each, disclosing relatively little information. Here, the ability to size-select liquid-exfoliated h-BN nanosheets has allowed us to comprehensively study the dependence of h-BN optical spectra on nanosheet dimensions. We find the optical extinction coefficient spectrum to vary systematically with nanosheet lateral size due to the presence of light scattering. Conversely, once light scattering has been decoupled to give the optical absorbance spectra, we find the size dependence to be mostly removed save for a weak but well-defined variation in energy of peak absorbance with nanosheet thickness. This finding is corroborated by our ab initio GW and Bethe-Salpeter equation calculations, which include electron correlations and quasiparticle self-consistency (QSGW). In addition, while we find the position of the sole h-BN Raman line to be invariant with nanosheet dimensions, the linewidth appears to vary weakly with nanosheet thickness. These size-dependent spectroscopic properties can be used as metrics to estimate nanosheet thickness from spectroscopic data.
△ Less
Submitted 6 March, 2018;
originally announced March 2018.
-
The environment of radio galaxies: A signature of AGN feedback at high redshifts
Authors:
David Izquierdo-Villalba,
Alvaro A. Orsi,
Silvia Bonoli,
Cedric G. Lacey,
Carlton M. Baugh,
Andrew J. Griffin
Abstract:
We use the semi-analytical model of galaxy formation GALFORM to characterise an indirect signature of AGN feedback in the environment of radio galaxies at high redshifts. The predicted environment of radio galaxies is denser than that of radio-quiet galaxies with the same stellar mass. This is consistent with observational results from the CARLA survey. Our model shows that the differences in envi…
▽ More
We use the semi-analytical model of galaxy formation GALFORM to characterise an indirect signature of AGN feedback in the environment of radio galaxies at high redshifts. The predicted environment of radio galaxies is denser than that of radio-quiet galaxies with the same stellar mass. This is consistent with observational results from the CARLA survey. Our model shows that the differences in environment are due to radio galaxies being hosted by dark matter haloes that are ~1.5 dex more massive than those hosting radio-quiet galaxies with the same stellar mass. By running a control-simulation in which AGN feedback is switched-off, we identify AGN feedback as the primary mechanism affecting the build-up of the stellar component of radio galaxies, thus explaining the different environment in radio galaxies and their radio-quiet counterparts. The difference in host halo mass between radio loud and radio quiet galaxies translates into different galaxies populating each environment. We predict a higher fraction of passive galaxies around radio loud galaxies compared to their radio-quiet counterparts. Furthermore, such a high fraction of passive galaxies shapes the predicted infrared luminosity function in the environment of radio galaxies in a way that is consistent with observational findings. Our results suggest that the impact of AGN feedback at high redshifts and environmental mechanisms affecting galaxies in high halo masses can be revealed by studying the environment of radio galaxies, thus providing new constraints on galaxy formation physics at high redshifts.
△ Less
Submitted 19 December, 2017;
originally announced December 2017.
-
Video Object Segmentation using Supervoxel-Based Gerrymandering
Authors:
Brent A. Griffin,
Jason J. Corso
Abstract:
Pixels operate locally. Superpixels have some potential to collect information across many pixels; supervoxels have more potential by implicitly operating across time. In this paper, we explore this well established notion thoroughly analyzing how supervoxels can be used in place of and in conjunction with other means of aggregating information across space-time. Focusing on the problem of strictl…
▽ More
Pixels operate locally. Superpixels have some potential to collect information across many pixels; supervoxels have more potential by implicitly operating across time. In this paper, we explore this well established notion thoroughly analyzing how supervoxels can be used in place of and in conjunction with other means of aggregating information across space-time. Focusing on the problem of strictly unsupervised video object segmentation, we devise a method called supervoxel gerrymandering that links masks of foregroundness and backgroundness via local and non-local consensus measures. We pose and answer a series of critical questions about the ability of supervoxels to adequately sway local voting; the questions regard type and scale of supervoxels as well as local versus non-local consensus, and the questions are posed in a general way so as to impact the broader knowledge of the use of supervoxels in video understanding. We work with the DAVIS dataset and find that our analysis yields an unsupervised method that outperforms all other known unsupervised methods and even many supervised ones.
△ Less
Submitted 17 April, 2017;
originally announced April 2017.
-
Simulation from quasi-stationary distributions on reducible state spaces
Authors:
Adam Griffin,
Paul A. Jenkins,
Gareth O. Roberts,
Simon E. F. Spencer
Abstract:
Quasi-stationary distributions (QSDs)arise from stochastic processes that exhibit transient equilibrium behaviour on the way to absorption QSDs are often mathematically intractable and even drawing samples from them is not straightforward. In this paper the framework of Sequential Monte Carlo samplers is utilized to simulate QSDs and several novel resampling techniques are proposed to accommodate…
▽ More
Quasi-stationary distributions (QSDs)arise from stochastic processes that exhibit transient equilibrium behaviour on the way to absorption QSDs are often mathematically intractable and even drawing samples from them is not straightforward. In this paper the framework of Sequential Monte Carlo samplers is utilized to simulate QSDs and several novel resampling techniques are proposed to accommodate models with reducible state spaces, with particular focus on preserving particle diversity on discrete spaces. Finally an approach is considered to estimate eigenvalues associated with QSDs, such as the decay parameter.
△ Less
Submitted 17 January, 2017; v1 submitted 6 December, 2016;
originally announced December 2016.
-
Vortex scattering by impurities in a Bose-Einstein condensate
Authors:
A. Griffin,
G. W. Stagg,
N. P. Proukakis,
C. F. Barenghi
Abstract:
Understanding quantum dynamics in a two-dimensional Bose-Einstein condensate (BEC) relies on understanding how vortices interact with each others microscopically and with local imperfections of the potential which confines the condensate. Within a system consisting of many vortices, the trajectory of a vortex-antivortex pair is often scattered by a third vortex, an effect previously characterised.…
▽ More
Understanding quantum dynamics in a two-dimensional Bose-Einstein condensate (BEC) relies on understanding how vortices interact with each others microscopically and with local imperfections of the potential which confines the condensate. Within a system consisting of many vortices, the trajectory of a vortex-antivortex pair is often scattered by a third vortex, an effect previously characterised. However, the natural question remains as to how much of this effect is due to the velocity induced by this third vortex and how much is due to the density inhomogeneity which it introduces. In this work, we describe the various qualitative scenarios which occur when a vortex-antivortex pair interacts with a smooth density impurity whose profile is identical to that of a vortex but lacks the circulation around it.
△ Less
Submitted 19 April, 2017; v1 submitted 20 September, 2016;
originally announced September 2016.
-
The Beliaev Broken Symmetry Description of Superfluidity vs the Classical-Field Approach
Authors:
Allan Griffin,
Eugene Zaremba
Abstract:
The standard theoretical basis for understanding superfluidity in Bose systems was formulated by Beliaev in 1957, based on splitting the quantum field operator into a macroscopically occupied condensate component and a non-condensate component. This leads to a description of the condensate in terms of a 'single-particle state', the so-called macroscopic wavefunction. Since the discovery of Bose-co…
▽ More
The standard theoretical basis for understanding superfluidity in Bose systems was formulated by Beliaev in 1957, based on splitting the quantum field operator into a macroscopically occupied condensate component and a non-condensate component. This leads to a description of the condensate in terms of a 'single-particle state', the so-called macroscopic wavefunction. Since the discovery of Bose-condensed gases, an alternative theoretical picture has been developed which is based on a 'coherent band' of classically occupied states. This is often called the classical or c-field approach. The goal of this chapter is to review the differences between the Beliaev broken symmetry and c-field approach, and to argue that the c-field concept of a coherent condensate band of states has problems as a description of Bose superfluidity. However, the c-field idea of treating the lowest energy excitations classically can be used to advantage to simplify calculations within the Beliaev broken-symmetry formalism.
△ Less
Submitted 26 June, 2012; v1 submitted 24 June, 2012;
originally announced June 2012.
-
Post-Nonlinear Sparse Component Analysis Using Single-Source Zones and Functional Data Clustering
Authors:
Matthieu Puigt,
Anthony Griffin,
Athanasios Mouchtaris
Abstract:
In this paper, we introduce a general extension of linear sparse component analysis (SCA) approaches to postnonlinear (PNL) mixtures. In particular, and contrary to the state-of-art methods, our approaches use a weak sparsity source assumption: we look for tiny temporal zones where only one source is active. We investigate two nonlinear single-source confidence measures, using the mutual informati…
▽ More
In this paper, we introduce a general extension of linear sparse component analysis (SCA) approaches to postnonlinear (PNL) mixtures. In particular, and contrary to the state-of-art methods, our approaches use a weak sparsity source assumption: we look for tiny temporal zones where only one source is active. We investigate two nonlinear single-source confidence measures, using the mutual information and a local linear tangent space approximation (LTSA). For this latter measure, we derive two extensions of linear single-source measures, respectively based on correlation (LTSA-correlation) and eigenvalues (LTSA-PCA). A second novelty of our approach consists of applying functional data clustering techniques to the scattered observations in the above single-source zones, thus allowing us to accurately estimate them.We first study a classical approach using a B-spline approximation, and then two approaches which locally approximate the nonlinear functions as lines. Finally, we extend our PNL methods to more general nonlinear mixtures. Combining single-source zones and functional data clustering allows us to tackle speech signals, which has never been performed by other PNL-SCA methods. We investigate the performance of our approaches with simulated PNL mixtures of real speech signals. Both the mutual information and the LTSA-correlation measures are better-suited to detecting single-source zones than the LTSA-PCA measure. We also find local-linear-approximation-based clustering approaches to be more flexible and more accurate than the B-spline one.
△ Less
Submitted 4 April, 2012;
originally announced April 2012.
-
Single-Particle Spectral Density of a Bose Gas in the Two-Fluid Hydrodynamic Regime
Authors:
Emiko Arahata,
Tetsuro Nikuni,
Allan Griffin
Abstract:
In Bose supefluids, the single-particle Green's function can be directly related to the superfluid velocity-velocity correlation function in the hydrodynamic regime. An explicit expression for the single-particle spectral density was originally written down by Hohenberg and Martin in 1965, starting from the two-fluid equations for a superfluid. We give a simple derivation of their results. Using t…
▽ More
In Bose supefluids, the single-particle Green's function can be directly related to the superfluid velocity-velocity correlation function in the hydrodynamic regime. An explicit expression for the single-particle spectral density was originally written down by Hohenberg and Martin in 1965, starting from the two-fluid equations for a superfluid. We give a simple derivation of their results. Using these results, we calculate the relative weights of first and second sound modes in the single-particle spectral density as a function of temperature in a uniform Bose gas. We show that the second sound mode makes a dominant contribution to the single-particle spectrum in relatively high temperature region. We also discuss the possibility of experimental observation of the second sound mode in a Bose gas by photoemission spectroscopy.
△ Less
Submitted 11 August, 2011;
originally announced August 2011.
-
Second sound and the density response function in uniform superfluid atomic gases
Authors:
H. Hu,
E. Taylor,
X. -J. Liu,
S. Stringari,
A. Griffin
Abstract:
Recently there has been renewed interest in second sound in superfluid Bose and Fermi gases. By using two-fluid hydrodynamic theory, we review the density response $χ_{nn}(\bq,ω)$ of these systems as a tool to identify second sound in experiments based on density probes. Our work generalizes the well-known studies of the dynamic structure factor $S(\bq,ω)$ in superfluid $^4$He in the critical reg…
▽ More
Recently there has been renewed interest in second sound in superfluid Bose and Fermi gases. By using two-fluid hydrodynamic theory, we review the density response $χ_{nn}(\bq,ω)$ of these systems as a tool to identify second sound in experiments based on density probes. Our work generalizes the well-known studies of the dynamic structure factor $S(\bq,ω)$ in superfluid $^4$He in the critical region. We show that, in the unitary limit of uniform superfluid Fermi gases, the relative weight of second vs. first sound in the compressibility sum rule is given by the Landau--Placzek ratio $\lp\equiv (\bar{c}_p-\bar{c}_v)/\bar{c}_v$ for all temperatures below $T_c$. In contrast to superfluid $^4$He, $\lp$ is much larger in strongly interacting Fermi gases, being already of order unity for $T \sim 0.8 T_c$, thereby providing promising opportunities to excite second sound with density probes. The relative weights of first and second sound are quite different in $S(\bq,ω)$ (measured in pulse propagation studies) as compared to $\mathrm{Im}χ_{nn}(\bq,ω)$ (measured in two-photon Bragg scattering). We show that first and second sound in $S(\bq,ω)$ in a strongly interacting Bose-condensed gas are similar to those in a Fermi gas at unitarity. However, in a weakly interacting Bose gas, first and second sound are mainly uncoupled oscillations of the thermal cloud and condensate, respectively, and second sound has most of the spectral weight in $S(\bq,ω)$. We also discuss the behaviour of the superfluid and normal fluid velocity fields involved in first and second sound.
△ Less
Submitted 22 April, 2010; v1 submitted 6 January, 2010;
originally announced January 2010.
-
First and second sound in a strongly interacting Fermi gas
Authors:
E. Taylor,
H. Hu,
X. -J. Liu,
L. P. Pitaevskii,
A. Griffin,
S. Stringari
Abstract:
Using a variational approach, we solve the equations of two-fluid hydrodynamics for a uniform and trapped Fermi gas at unitarity. In the uniform case, we find that the first and second sound modes are remarkably similar to those in superfluid Helium, a consequence of strong interactions. In the presence of harmonic trapping, first and second sound become degenerate at certain temperatures. At th…
▽ More
Using a variational approach, we solve the equations of two-fluid hydrodynamics for a uniform and trapped Fermi gas at unitarity. In the uniform case, we find that the first and second sound modes are remarkably similar to those in superfluid Helium, a consequence of strong interactions. In the presence of harmonic trapping, first and second sound become degenerate at certain temperatures. At these points, second sound hybridizes with first sound and is strongly coupled with density fluctuations, giving a promising way of observing second sound. We also discuss the possibility of exciting second sound by generating local heat perturbations.
△ Less
Submitted 2 November, 2009; v1 submitted 3 May, 2009;
originally announced May 2009.
-
An application of principal stratification to control for institutionalization at follow-up in studies of substance abuse treatment programs
Authors:
Beth Ann Griffin,
Daniel F. McCaffrey,
Andrew R. Morral
Abstract:
Participants in longitudinal studies on the effects of drug treatment and criminal justice system interventions are at high risk for institutionalization (e.g., spending time in an environment where their freedom to use drugs, commit crimes, or engage in risky behavior may be circumscribed). Methods used for estimating treatment effects in the presence of institutionalization during follow-up ca…
▽ More
Participants in longitudinal studies on the effects of drug treatment and criminal justice system interventions are at high risk for institutionalization (e.g., spending time in an environment where their freedom to use drugs, commit crimes, or engage in risky behavior may be circumscribed). Methods used for estimating treatment effects in the presence of institutionalization during follow-up can be highly sensitive to assumptions that are unlikely to be met in applications and thus likely to yield misleading inferences. In this paper we consider the use of principal stratification to control for institutionalization at follow-up. Principal stratification has been suggested for similar problems where outcomes are unobservable for samples of study participants because of dropout, death or other forms of censoring. The method identifies principal strata within which causal effects are well defined and potentially estimable. We extend the method of principal stratification to model institutionalization at follow-up and estimate the effect of residential substance abuse treatment versus outpatient services in a large scale study of adolescent substance abuse treatment programs. Additionally, we discuss practical issues in applying the principal stratification model to data. We show via simulation studies that the model can only recover true effects provided the data meet strenuous demands and that there must be caution taken when implementing principal stratification as a technique to control for post-treatment confounders such as institutionalization.
△ Less
Submitted 12 November, 2008;
originally announced November 2008.
-
Variational theory of two-fluid hydrodynamic modes at unitarity
Authors:
Edward Taylor,
Hui Hu,
Xia-Ji Liu,
Allan Griffin
Abstract:
We present the results of a variational calculation of the frequencies of the low-lying Landau two-fluid hydrodynamic modes in a trapped Fermi superfluid gas at unitarity. Landau's two-fluid hydrodynamics is expected to be the correct theory of Fermi superfluids at finite temperatures close to unitarity, where strong interactions give rise to collisional hydrodynamics. Two-fluid hydrodynamics pr…
▽ More
We present the results of a variational calculation of the frequencies of the low-lying Landau two-fluid hydrodynamic modes in a trapped Fermi superfluid gas at unitarity. Landau's two-fluid hydrodynamics is expected to be the correct theory of Fermi superfluids at finite temperatures close to unitarity, where strong interactions give rise to collisional hydrodynamics. Two-fluid hydrodynamics predicts the existence of in-phase modes in which the superfluid and normal fluid components oscillate together, as well as out-of-phase modes where the two components move against each other. We prove that at unitarity, the dipole and breathing in-phase modes are locally isentropic. Their frequencies are independent of temperature and are the same above and below the superfluid transition. The out-of-phase modes, in contrast, are strongly dependent on temperature and hence, can be used to test the thermodynamic properties and superfluid density of a Fermi gas at unitarity. We give numerical results for the frequencies of these new modes as function of temperature in an isotropic trap at unitarity.
△ Less
Submitted 4 November, 2007;
originally announced November 2007.
-
Probing two-fluid hydrodynamics in a trapped Fermi superfluid at unitarity
Authors:
Edward Taylor,
Hui Hu,
Xia-Ji Liu,
Allan Griffin
Abstract:
We develop a variational approach to calculate the density response function at finite temperatures of the lowest-lying two-fluid modes in a trapped two-component Fermi superfluid close to a Feshbach resonance. The out-of-phase oscillations, which are the analogue in trapped gases of second sound in uniform superfluids, have so far not been observed in cold-atom experiments. At unitarity, we sho…
▽ More
We develop a variational approach to calculate the density response function at finite temperatures of the lowest-lying two-fluid modes in a trapped two-component Fermi superfluid close to a Feshbach resonance. The out-of-phase oscillations, which are the analogue in trapped gases of second sound in uniform superfluids, have so far not been observed in cold-atom experiments. At unitarity, we show that these modes are observable at finite temperatures via two-photon Bragg scattering, whose spectrum is related to the imaginary part of density response function. This provides direct evidence for superfluidity and a promising way to test microscopic results for thermodynamics at unitarity.
△ Less
Submitted 20 November, 2007; v1 submitted 5 September, 2007;
originally announced September 2007.