1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
//! Chinese Restaurant Process
//!
//! [The Chinese Restaurant Process](https://en.wikipedia.org/wiki/Chinese_restaurant_process) (CRP)
//! is a distribution over partitions of items. The CRP defines a process by
//! which entities are assigned to an unknown number of partition.
//!
//! The CRP is parameterized CRP(α) where α is the 'discount' parameter in
//! (0, ∞). Higher α causes there to be more partitions, as it encourages new
//! entries to create new partitions.
#[cfg(feature = "serde1")]
use serde::{Deserialize, Serialize};
use crate::data::Partition;
use crate::impl_display;
use crate::misc::pflip;
use crate::traits::*;
use rand::Rng;
use special::Gamma as _;
use std::fmt;
/// [Chinese Restaurant Process](https://en.wikipedia.org/wiki/Chinese_restaurant_process),
/// a distribution over partitions.
///
/// # Example
///
/// ```
/// use::rv::prelude::*;
///
/// let mut rng = rand::thread_rng();
///
/// let crp = Crp::new(1.0, 10).expect("Invalid parameters");
/// let partition = crp.draw(&mut rng);
///
/// assert_eq!(partition.len(), 10);
/// ```
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde1", derive(Serialize, Deserialize))]
pub struct Crp {
/// Discount parameter
alpha: f64,
/// number of items in the partition
n: usize,
}
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde1", derive(Serialize, Deserialize))]
pub enum CrpError {
/// n parameter is zero
NIsZero,
/// alpha parameter is less than or equal to zero
AlphaTooLow { alpha: f64 },
/// alpha parameter is infinite or NaN
AlphaNotFinite { alpha: f64 },
}
impl Crp {
/// Create an empty `Crp` with parameter alpha
///
/// # Arguments
/// - alpha: Discount parameter in (0, Infinity)
/// - n: the number of items in the partition
pub fn new(alpha: f64, n: usize) -> Result<Self, CrpError> {
if n == 0 {
Err(CrpError::NIsZero)
} else if alpha <= 0.0 {
Err(CrpError::AlphaTooLow { alpha })
} else if !alpha.is_finite() {
Err(CrpError::AlphaNotFinite { alpha })
} else {
Ok(Crp { alpha, n })
}
}
/// Create a new Crp without checking whether the parametes are valid.
#[inline]
pub fn new_unchecked(alpha: f64, n: usize) -> Self {
Crp { alpha, n }
}
/// Get the discount parameter, `alpha`.
///
/// # Example
///
/// ```rust
/// # use rv::dist::Crp;
/// let crp = Crp::new(1.0, 12).unwrap();
/// assert_eq!(crp.alpha(), 1.0);
/// ```
#[inline]
pub fn alpha(&self) -> f64 {
self.alpha
}
/// Set the value of alpha
///
/// # Example
/// ```rust
/// # use rv::dist::Crp;
/// let mut crp = Crp::new(1.1, 20).unwrap();
/// assert_eq!(crp.alpha(), 1.1);
///
/// crp.set_alpha(2.3).unwrap();
/// assert_eq!(crp.alpha(), 2.3);
/// ```
///
/// Will error for invalid parameters
///
/// ```rust
/// # use rv::dist::Crp;
/// # let mut crp = Crp::new(1.1, 20).unwrap();
/// assert!(crp.set_alpha(0.5).is_ok());
/// assert!(crp.set_alpha(0.0).is_err());
/// assert!(crp.set_alpha(-1.0).is_err());
/// assert!(crp.set_alpha(std::f64::INFINITY).is_err());
/// assert!(crp.set_alpha(std::f64::NEG_INFINITY).is_err());
/// assert!(crp.set_alpha(std::f64::NAN).is_err());
/// ```
#[inline]
pub fn set_alpha(&mut self, alpha: f64) -> Result<(), CrpError> {
if alpha <= 0.0 {
Err(CrpError::AlphaTooLow { alpha })
} else if !alpha.is_finite() {
Err(CrpError::AlphaNotFinite { alpha })
} else {
self.set_alpha_unchecked(alpha);
Ok(())
}
}
/// Set the value of alpha without input validation
#[inline]
pub fn set_alpha_unchecked(&mut self, alpha: f64) {
self.alpha = alpha;
}
/// Get the number of entries in the partition, `n`.
///
/// # Example
///
/// ```rust
/// # use rv::dist::Crp;
/// let crp = Crp::new(1.0, 12).unwrap();
/// assert_eq!(crp.n(), 12);
/// ```
#[inline]
pub fn n(&self) -> usize {
self.n
}
/// Set the value of n
///
/// # Example
/// ```rust
/// # use rv::dist::Crp;
/// let mut crp = Crp::new(1.1, 20).unwrap();
/// assert_eq!(crp.n(), 20);
///
/// crp.set_n(11).unwrap();
/// assert_eq!(crp.n(), 11);
/// ```
///
/// Will error for invalid parameters
///
/// ```rust
/// # use rv::dist::Crp;
/// # let mut crp = Crp::new(1.1, 20).unwrap();
/// assert!(crp.set_n(5).is_ok());
/// assert!(crp.set_n(1).is_ok());
/// assert!(crp.set_n(0).is_err());
/// ```
#[inline]
pub fn set_n(&mut self, n: usize) -> Result<(), CrpError> {
if n == 0 {
Err(CrpError::NIsZero)
} else {
self.set_n_unchecked(n);
Ok(())
}
}
/// Set the value of alpha without input validation
#[inline]
pub fn set_n_unchecked(&mut self, n: usize) {
self.n = n;
}
}
impl From<&Crp> for String {
fn from(crp: &Crp) -> String {
format!("CRP({}; α: {})", crp.n, crp.alpha)
}
}
impl_display!(Crp);
impl Rv<Partition> for Crp {
fn ln_f(&self, x: &Partition) -> f64 {
let gsum = x
.counts()
.iter()
.fold(0.0, |acc, ct| acc + (*ct as f64).ln_gamma().0);
// TODO: could cache ln(alpha) and ln_gamma(alpha)
(x.k() as f64).mul_add(self.alpha.ln(), gsum) + self.alpha.ln_gamma().0
- (x.len() as f64 + self.alpha).ln_gamma().0
}
fn draw<R: Rng>(&self, rng: &mut R) -> Partition {
let mut k = 1;
let mut weights: Vec<f64> = vec![1.0];
let mut z: Vec<usize> = Vec::with_capacity(self.n);
z.push(0);
for _ in 1..self.n {
weights.push(self.alpha);
let zi = pflip(&weights, 1, rng)[0];
z.push(zi);
if zi == k {
weights[zi] = 1.0;
k += 1;
} else {
weights.truncate(k);
weights[zi] += 1.0;
}
}
// convert weights to counts, correcting for possible floating point
// errors
let counts: Vec<usize> =
weights.iter().map(|w| (w + 0.5) as usize).collect();
Partition::new_unchecked(z, counts)
}
}
impl Support<Partition> for Crp {
#[inline]
fn supports(&self, _x: &Partition) -> bool {
true
}
}
impl std::error::Error for CrpError {}
impl fmt::Display for CrpError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::AlphaTooLow { alpha } => {
write!(f, "alpha ({}) must be greater than zero", alpha)
}
Self::AlphaNotFinite { alpha } => {
write!(f, "alpha ({}) was non-finite", alpha)
}
Self::NIsZero => write!(f, "n must be greater than zero"),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::test_basic_impls;
const TOL: f64 = 1E-12;
test_basic_impls!(
Crp::new(1.0, 10).unwrap(),
Partition::new_unchecked(vec![0; 10], vec![10])
);
#[test]
fn new() {
let crp = Crp::new(1.2, 808).unwrap();
assert::close(crp.alpha, 1.2, TOL);
assert_eq!(crp.n, 808);
}
// TODO: More tests!
}