Setting hyperparameter optimization bounds in GPflow 2.0
问题 In GPflow 1.0, if I wanted to set hard bounds on a parameter like lengthscale (i.e. limiting the optimisation range for the parameter), transforms.Logistic(a=4., b=6.) would bound the parameter between 4 and 6. GPflow 2.0's documentation says that transforms are handled by TensorFlow Probability's Bijector classes. Which Bijector class handles setting hard limits on parameters, and what is the proper way to implement it? A similar question was asked here (Kernel's hyper-parameters;