What is Copula ? (About DeepVAR and GPVAR) #2303
-
Hello. I'm still learning Python and GluonTS. When I want to try "Vec-LSTM-lowrank-Copula", how should I set arguments in DeepVAREstimator ? Especially, could you teach me how to use "Copula" ? I would appreciate your cooperation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
"Copula" here refers to whether the marginal distributions are transformed to be (approximately) Gaussian before the model is applied. This is controlled by the |
Beta Was this translation helpful? Give feedback.
"Copula" here refers to whether the marginal distributions are transformed to be (approximately) Gaussian before the model is applied. This is controlled by the
use_marginal_transformation
parameter which can be set when constructing bothGPVar
andDeepVar
estimators. Setting this parameter toTrue
will give you the Copula variants. Scaling is enabled by settingscaling=True
.gluonts/src/gluonts/mx/model/gpvar/_estimator.py
Line 132 in 015ff06