Skip to content

Commit

Permalink
fixed input argument of falsification sampler
Browse files Browse the repository at this point in the history
  • Loading branch information
musslick committed Oct 2, 2024
1 parent 886a430 commit 87f5421
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/tutorials/Experimentalist.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
"X_prime = np.linspace(0, 6.5, 14)\n",
"\n",
"new_conditions = falsification_sample(\n",
" condition_pool=X_prime,\n",
" conditions=X_prime,\n",
" model=model,\n",
" reference_conditions=X,\n",
" reference_observations=Y,\n",
Expand Down Expand Up @@ -230,7 +230,7 @@
"outputs": [],
"source": [
"new_conditions, scores = falsification_score_sample(\n",
" condition_pool=X_prime,\n",
" conditions=X_prime,\n",
" model=model,\n",
" reference_conditions=X,\n",
" reference_observations=Y,\n",
Expand Down Expand Up @@ -353,7 +353,7 @@
"outputs": [],
"source": [
"new_conditions = falsification_sample(\n",
" condition_pool=X_prime,\n",
" conditions=X_prime,\n",
" model=model,\n",
" reference_conditions=X,\n",
" reference_observations=Y,\n",
Expand Down Expand Up @@ -517,7 +517,7 @@
],
"source": [
"new_conditions, scores = falsification_score_sample(\n",
" condition_pool=X_prime,\n",
" conditions=X_prime,\n",
" model=model,\n",
" reference_conditions=X,\n",
" reference_observations=Y,\n",
Expand Down Expand Up @@ -692,7 +692,7 @@
],
"source": [
"new_conditions = falsification_sample(\n",
" condition_pool=X_prime,\n",
" conditions=X_prime,\n",
" model=model,\n",
" reference_conditions=X,\n",
" reference_observations=Y,\n",
Expand Down

0 comments on commit 87f5421

Please sign in to comment.