Is there a way to retrieve the weights from a GPflow GPR model?
I do not necessarily need the explicit weights. However, I have two issues that may be solved using the weights:
- I would like to compile and send a trained model to a third party. I would like to do this without sending the training data and without the third party having access to the training data.
- I would like to be able to predict new mean values without calculating new variances. Currently predict_f calculates both the mean and the variance, but I only use the mean. I believe I could speed up my prediction significantly if I didn't calculate the variance.
I could resolve both of these issues if I could retrieve the weights from the GPR model after training. However, if it is possible to resolve these tasks without ever dealing with explicit weights, that would be even better.