Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/issue 3121 beta neg binomial rng #3126

Merged

Conversation

lingium
Copy link
Collaborator

@lingium lingium commented Nov 15, 2024

Summary

With this PR the rng of beta negative binomial distribution are added.
See issue #3121

Expressions involved :

for $$Y\sim \text{BNB}(r,\alpha,\beta)$$ we have

$$ \begin{align} Y &\sim \text{NB}(r,p) \\ p &\sim {\textrm {Beta}}(\alpha ,\beta ), \end{align} $$

where $\text{NB}(y~|~r,p) = \binom {y+r-1}{y} (1-p)^{y} p^{r}.$

In Stan, the negative binomial distribution is given by

$$ \text{NegBinomial}(y~|~\alpha,\beta) = \binom{y + \alpha - 1}{y} \left( \frac{\beta}{\beta+1} \right)^{\alpha} \left( \frac{1}{\beta + 1} \right)^{y} $$

so

$$p = \frac{\beta}{\beta+1} \Rightarrow \beta = \frac{p}{1-p}$$

Therefore, provided $r, \alpha, \beta$, we generate $$p \sim \text{Beta}(\alpha ,\beta )$$ and then sample $Y \sim \text{NB}(r, \frac{p}{1-p})$.

Tests

Test is written follow test/unit/math/prim/prob/beta_binomial_test.cpp

Side Effects

Under more extreme paremeter combination that makes the tail of the distribution heavy, neg_binomial_rng might throw domain_error because rng_from_gamma >= POISSON_MAX_RATE. See

check_less(function, "Random number that came from gamma distribution",

This is also a problem for neg_binomial_rng and poisson_rng. But due to their nature, this situation is relatively rare.

The reason behind this is that the Poisson random number generator in Boost will overflow when it exceeds the type range. Stan uses 32-bit int, so there is an upper limit. The current code includes POISSON_MAX_RATE to prevent overflow.

Release notes

beta_neg_binomial_rng is available if merged.

Checklist

  • Copyright holder: (fill in copyright holder information)

    The copyright holder is typically you or your assignee, such as a university or company. By submitting this pull request, the copyright holder is agreeing to the license the submitted work under the following licenses:
    - Code: BSD 3-clause (https://opensource.org/licenses/BSD-3-Clause)
    - Documentation: CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/)

  • the basic tests are passing

    • unit tests pass (to run, use: ./runTests.py test/unit)
    • header checks pass, (make test-headers)
    • dependencies checks pass, (make test-math-dependencies)
    • docs build, (make doxygen)
    • code passes the built in C++ standards checks (make cpplint)
  • the code is written in idiomatic C++ and changes are documented in the doxygen

  • the new changes are tested

@stan-buildbot
Copy link
Contributor


Name Old Result New Result Ratio Performance change( 1 - new / old )
arma/arma.stan 0.38 0.34 1.12 10.92% faster
low_dim_corr_gauss/low_dim_corr_gauss.stan 0.01 0.01 1.03 3.01% faster
gp_regr/gen_gp_data.stan 0.03 0.03 0.97 -3.38% slower
gp_regr/gp_regr.stan 0.1 0.1 0.98 -2.22% slower
sir/sir.stan 70.19 71.6 0.98 -2.0% slower
irt_2pl/irt_2pl.stan 4.19 4.27 0.98 -1.86% slower
eight_schools/eight_schools.stan 0.06 0.06 1.01 1.03% faster
pkpd/sim_one_comp_mm_elim_abs.stan 0.25 0.25 1.0 -0.35% slower
pkpd/one_comp_mm_elim_abs.stan 19.58 18.87 1.04 3.64% faster
garch/garch.stan 0.44 0.42 1.06 5.56% faster
low_dim_gauss_mix/low_dim_gauss_mix.stan 2.75 2.64 1.04 4.13% faster
arK/arK.stan 1.79 1.71 1.05 4.45% faster
gp_pois_regr/gp_pois_regr.stan 2.87 2.72 1.05 5.07% faster
low_dim_gauss_mix_collapse/low_dim_gauss_mix_collapse.stan 8.94 8.56 1.05 4.32% faster
performance.compilation 190.79 193.33 0.99 -1.33% slower
Mean result: 1.0226495203590182

Jenkins Console Log
Blue Ocean
Commit hash: 699a5e6931000a42a5e00f93fc9c2e56cc9c7f48


Machine information No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.3 LTS Release: 20.04 Codename: focal

CPU:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 46 bits physical, 48 bits virtual
CPU(s): 80
On-line CPU(s) list: 0-79
Thread(s) per core: 2
Core(s) per socket: 20
Socket(s): 2
NUMA node(s): 2
Vendor ID: GenuineIntel
CPU family: 6
Model: 85
Model name: Intel(R) Xeon(R) Gold 6148 CPU @ 2.40GHz
Stepping: 4
CPU MHz: 2400.000
CPU max MHz: 3700.0000
CPU min MHz: 1000.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 1.3 MiB
L1i cache: 1.3 MiB
L2 cache: 40 MiB
L3 cache: 55 MiB
NUMA node0 CPU(s): 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78
NUMA node1 CPU(s): 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79
Vulnerability Gather data sampling: Mitigation; Microcode
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable
Vulnerability Mds: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Meltdown: Mitigation; PTI
Vulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Reg file data sampling: Not affected
Vulnerability Retbleed: Mitigation; IBRS
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; IBRS; IBPB conditional; STIBP conditional; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Mitigation; Clear CPU buffers; SMT vulnerable
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req pku ospke md_clear flush_l1d arch_capabilities

G++:
g++ (Ubuntu 9.4.0-1ubuntu1~20.04) 9.4.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Clang:
clang version 10.0.0-4ubuntu1
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin

Copy link
Collaborator

@SteveBronder SteveBronder left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two small changes then this is good to go!

Comment on lines 57 to 59
for (size_t n = 0; n < size_p; ++n) {
odds_ratio_p[n] = stan::math::exp(stan::math::log(p_vec.val(n))
- stan::math::log((1 - p_vec.val(n))));
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can add #include <stan/math/prim/fun/log.hpp> at the top to remove stan::math::log here

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be log1m as well

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! Will change it

Comment on lines 32 to 35
template <typename T_r, typename T_alpha, typename T_beta, class RNG>
inline typename VectorBuilder<true, int, T_r, T_alpha, T_beta>::type
beta_neg_binomial_rng(const T_r &r, const T_alpha &alpha, const T_beta &beta,
RNG &rng) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
template <typename T_r, typename T_alpha, typename T_beta, class RNG>
inline typename VectorBuilder<true, int, T_r, T_alpha, T_beta>::type
beta_neg_binomial_rng(const T_r &r, const T_alpha &alpha, const T_beta &beta,
RNG &rng) {
template <typename T_r, typename T_alpha, typename T_beta, typename RNG>
inline auto beta_neg_binomial_rng(const T_r& r, const T_alpha& alpha, const T_beta& beta, RNG& rng) {

@stan-buildbot
Copy link
Contributor


Name Old Result New Result Ratio Performance change( 1 - new / old )
arma/arma.stan 0.32 0.36 0.88 -13.19% slower
low_dim_corr_gauss/low_dim_corr_gauss.stan 0.01 0.01 1.01 1.34% faster
gp_regr/gen_gp_data.stan 0.03 0.03 1.01 0.59% faster
gp_regr/gp_regr.stan 0.09 0.09 1.01 0.88% faster
sir/sir.stan 70.27 80.94 0.87 -15.2% slower
irt_2pl/irt_2pl.stan 4.12 3.98 1.04 3.45% faster
eight_schools/eight_schools.stan 0.06 0.05 1.08 7.48% faster
pkpd/sim_one_comp_mm_elim_abs.stan 0.25 0.24 1.06 5.25% faster
pkpd/one_comp_mm_elim_abs.stan 19.54 18.58 1.05 4.91% faster
garch/garch.stan 0.44 0.41 1.07 6.71% faster
low_dim_gauss_mix/low_dim_gauss_mix.stan 2.73 2.58 1.06 5.56% faster
arK/arK.stan 1.8 1.73 1.04 3.5% faster
gp_pois_regr/gp_pois_regr.stan 2.82 2.75 1.03 2.54% faster
low_dim_gauss_mix_collapse/low_dim_gauss_mix_collapse.stan 8.81 8.34 1.06 5.41% faster
performance.compilation 180.54 183.81 0.98 -1.81% slower
Mean result: 1.0157324667079886

Jenkins Console Log
Blue Ocean
Commit hash: 1658c4db0f3f70a8cf171a60147187fde16f9644


Machine information No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.3 LTS Release: 20.04 Codename: focal

CPU:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 46 bits physical, 48 bits virtual
CPU(s): 80
On-line CPU(s) list: 0-79
Thread(s) per core: 2
Core(s) per socket: 20
Socket(s): 2
NUMA node(s): 2
Vendor ID: GenuineIntel
CPU family: 6
Model: 85
Model name: Intel(R) Xeon(R) Gold 6148 CPU @ 2.40GHz
Stepping: 4
CPU MHz: 3381.032
CPU max MHz: 3700.0000
CPU min MHz: 1000.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 1.3 MiB
L1i cache: 1.3 MiB
L2 cache: 40 MiB
L3 cache: 55 MiB
NUMA node0 CPU(s): 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78
NUMA node1 CPU(s): 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79
Vulnerability Gather data sampling: Mitigation; Microcode
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable
Vulnerability Mds: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Meltdown: Mitigation; PTI
Vulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Reg file data sampling: Not affected
Vulnerability Retbleed: Mitigation; IBRS
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; IBRS; IBPB conditional; STIBP conditional; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Mitigation; Clear CPU buffers; SMT vulnerable
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req pku ospke md_clear flush_l1d arch_capabilities

G++:
g++ (Ubuntu 9.4.0-1ubuntu1~20.04) 9.4.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Clang:
clang version 10.0.0-4ubuntu1
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin

Copy link
Collaborator

@SteveBronder SteveBronder left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

@lingium lingium merged commit 061ac50 into stan-dev:develop Nov 21, 2024
8 checks passed
@lingium lingium deleted the feature/issue-3121-beta-neg-binomial-rng branch November 21, 2024 02:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants