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?
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?