VineDensity.__init__
- VineDensity.__init__(backend=None, batch_size=100, random_state=None)
Vine-copula based density estimator.
- Parameters:
- backendVinecopBackend or compatible, default=None
Backend instance bundling fit-time controls and an optional pre-specified structure. None resolves to a default
VinecopBackendat fit time, which callsfrom_data()with the nonparametrictllpair family. PassTorchVinecopBackendfor the PyTorch backend.- batch_sizeint, default=100
Number of test points processed per batch when evaluating the density. Higher values trade memory for throughput.
- random_stateint, RandomState instance or None, default=None
Seeds the RNG used by stochastic operations (cdf quasi-MC, sample). Resolved via sklearn.utils.check_random_state inside fit.