DanielBok / copulae

Multivariate data modelling with Copulas in Python
https://copulae.readthedocs.io/en/latest/
MIT License
143 stars 26 forks source link

Gaussian Mixture Copula Model gives wrong sampling #53

Open WindIsFeng opened 1 year ago

WindIsFeng commented 1 year ago

I am using class GaussianMixtureCopula to fit my data: gmc = GaussianMixtureCopula(6, 2).fit(X) and this model performs well, but when I try to generate some samples from the fitted model (gmc.random(2000)), it only produces random numbers between 0 and 1. I tried to figure out the reason but failed. Could you please fix this issue?