I'm trying to use sklearn's gaussian process for timeseries decomposition.
kernel = ConstantKernel() *
RBF() *
ExpSineSquared(periodicity=7)
Is there a way to fix the parameters other then periodicity_bounds=(7, 7)
If i do kernel.hyperparameters
i can see they have a attribute fixed=False
How do i set this to true?