53 double log_conditional_density_V(
double v)
const;
63 std::random_device rd;
66 mutable std::mt19937 gen;
77 static constexpr double proposal_std = 0.5;
91 const double tau_power_sigma = std::pow(
params.tau,
params.sigma);
187 int size_old_cj)
const override;
203 int ci,
int cj)
const override;
Abstract interface for Bayesian nonparametric processes.
Manages distance matrices and cluster allocations for points.
Definition Data.hpp:26
void update_params() override
Updates the NGGPW parameters by updating the latent variable U.
Definition NGGPW.hpp:258
int get_neighbors_obs(int obs_idx, int cls_idx) const
Returns the number of neighbors for a given observation in a specific cluster.
Definition NGGPW.cpp:16
Eigen::VectorXd gibbs_prior_existing_clusters(int obs_idx) const override
Computes the log prior probabilities of assigning a data point to every existing cluster....
Definition NGGPW.cpp:86
double prior_ratio_split(int ci, int cj) const override
Computes the prior ratio for a split operation in a spatially-aware NGGP-based split-merge MCMC algor...
Definition NGGPW.cpp:145
double gibbs_prior_new_cluster() const override
Computes the log prior probability of assigning a data point to a new cluster.
Definition NGGPW.cpp:131
double prior_ratio_merge(int size_old_ci, int size_old_cj) const override
Computes the prior ratio for a merge operation in a spatially-aware NGGP-based split-merge MCMC algor...
Definition NGGPW.cpp:177
double prior_ratio_shuffle(int size_old_ci, int size_old_cj, int ci, int cj) const override
Computes the prior ratio for a shuffle operation in a spatially-aware NGGP-based split-merge MCMC alg...
Definition NGGPW.cpp:211
double get_U() const
Gets the current value of the latent variable U.
Definition NGGPW.hpp:271
double gibbs_prior_existing_cluster(int cls_idx, int obs_idx=0) const override
Computes the log prior probability of assigning a data point to an existing cluster.
Definition NGGPW.cpp:112
int get_neighbors_cls(int cls_idx, bool old_allo=false) const
Returns the total number of neighbors for all observations in a given cluster.
Definition NGGPW.cpp:43
NGGPW(Data &d, Params &p)
Constructor for the Normalized Generalized Gamma Process with spatial Weights.
Definition NGGPW.hpp:114
int get_accepted_U() const
Gets the number of accepted U updates for monitoring convergence.
Definition NGGPW.hpp:277
Process(Data &d, Params &p)
Constructor initializing process with data and parameters.
Definition Process.hpp:75
Params & params
Reference to the parameters object containing process hyperparameters.
Definition Process.hpp:49
Structure containing all parameters needed for the NGGP (Normalized Generalized Gamma Process) and DP...
Definition Params.hpp:35