Skip to content

Commit

Permalink
✏️ remove error from try
Browse files Browse the repository at this point in the history
  • Loading branch information
cemachelen committed Jun 30, 2022
1 parent 058942b commit 2083dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gaussian_Processes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@
"try:\n",
" mu = k_starX.dot(np.linalg.inv(k_xx)).dot(y_samp).flatten()\n",
" var = k_starstar - k_starX.dot(np.linalg.inv(k_xx)).dot(k_starX.T)\n",
"except: LinAlgError\n",
"except:\n",
" print('ERROR PLEASE RETURN TO GENERATE SAMPLE')"
]
},
Expand Down

0 comments on commit 2083dd4

Please sign in to comment.