Skip to content

Commit 727a75b

Browse files
authored
Update Simple_GP_Regression_CUDA.ipynb
fix more typos
1 parent 2b9510c commit 727a75b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/02_Scalable_Exact_GPs/Simple_GP_Regression_CUDA.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"\\end{align}\n",
2626
"$$\n",
2727
"\n",
28-
"with 11 training examples, and testing on 51 test examples."
28+
"with 100 training examples, and testing on 51 test examples."
2929
]
3030
},
3131
{
@@ -50,7 +50,7 @@
5050
"source": [
5151
"### Set up training data\n",
5252
"\n",
53-
"In the next cell, we set up the training data for this example. We'll be using 11 regularly spaced points on [0,1] which we evaluate the function on and add Gaussian noise to get the training labels."
53+
"In the next cell, we set up the training data for this example. We'll be using 100 regularly spaced points on [0,1] which we evaluate the function on and add Gaussian noise to get the training labels."
5454
]
5555
},
5656
{
@@ -59,7 +59,7 @@
5959
"metadata": {},
6060
"outputs": [],
6161
"source": [
62-
"# Training data is 11 points in [0,1] inclusive regularly spaced\n",
62+
"# Training data is 100 points in [0,1] inclusive regularly spaced\n",
6363
"train_x = torch.linspace(0, 1, 100)\n",
6464
"# True function is sin(2*pi*x) with Gaussian noise\n",
6565
"train_y = torch.sin(train_x * (2 * math.pi)) + torch.randn(train_x.size()) * math.sqrt(0.04)"

0 commit comments

Comments
 (0)