Skip to content

Commit 822c317

Browse files
authored
Fix import and condition variable names in tutorial (#676)
1 parent 6d7ce0e commit 822c317

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/tutorial17/tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"\n",
115115
"from pina import Condition, LabelTensor\n",
116116
"from pina.problem import AbstractProblem\n",
117-
"from pina.geometry import CartesianDomain"
117+
"from pina.domain import CartesianDomain"
118118
]
119119
},
120120
{
@@ -152,7 +152,7 @@
152152
"\n",
153153
" output_variables = [\"y\"]\n",
154154
" input_variables = [\"x\"]\n",
155-
" conditions = {\"data\": Condition(input_points=x, output_points=y)}\n",
155+
" conditions = {\"data\": Condition(input=x, output=y)}\n",
156156
"\n",
157157
"\n",
158158
"problem = BayesianProblem()\n",

0 commit comments

Comments
 (0)