From 67097c23f2dbb5b7fb1aed20fccfa80b933c61ea Mon Sep 17 00:00:00 2001 From: partev Date: Fri, 23 Aug 2024 14:54:44 -0400 Subject: [PATCH] fix a typo Althogh -> Although --- examples/00_Basic_Usage/Implementing_a_custom_Kernel.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/00_Basic_Usage/Implementing_a_custom_Kernel.ipynb b/examples/00_Basic_Usage/Implementing_a_custom_Kernel.ipynb index 3bb5e4c07..1883b85b0 100644 --- a/examples/00_Basic_Usage/Implementing_a_custom_Kernel.ipynb +++ b/examples/00_Basic_Usage/Implementing_a_custom_Kernel.ipynb @@ -209,7 +209,7 @@ "source": [ "### Adding hyperparameters\n", "\n", - "Althogh the `FirstSincKernel` can be used for defining a model, it lacks a parameter that controls the correlation length. This lengthscale will be implemented as a hyperparameter. See also the [tutorial on hyperparamaters](https://docs.gpytorch.ai/en/latest/examples/00_Basic_Usage/Hyperparameters.html), for information on raw vs. actual parameters.\n", + "Although the `FirstSincKernel` can be used for defining a model, it lacks a parameter that controls the correlation length. This lengthscale will be implemented as a hyperparameter. See also the [tutorial on hyperparamaters](https://docs.gpytorch.ai/en/latest/examples/00_Basic_Usage/Hyperparameters.html), for information on raw vs. actual parameters.\n", "\n", "The parameter has to be registered, using the method `register_parameter()`, which `Kernel` inherits from `Module`. Similarly, we register constraints and priors." ]