Skip to content

Commit

Permalink
disable nbsphinx execution
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-Curti committed Dec 6, 2023
1 parent 922e51e commit 437f8b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,4 @@
nbsphinx_kernel_name = 'python3'
nbsphinx_output_prompt = 'Out[%s]:'
nbsphinx_allow_errors = True
nbsphinx_execute = 'never'
3 changes: 1 addition & 2 deletions docs/source/notebooks/deepskin_pwat.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
"from sklearn.linear_model import Lasso # regression model\n",
"from sklearn.pipeline import make_pipeline # whole pipeline workflow manager\n",
"from sklearn.model_selection import cross_val_predict # pipeline workflow\n",
"from scipy.stats.stats import pearsonr, spearmanr # model evaluation metrics\n",
"from scipy.stats import pearsonr, spearmanr # model evaluation metrics\n",
"\n",
"# define the K-fold algorithm setting the K value\n",
"K = 10\n",
Expand All @@ -194,7 +194,6 @@
" alpha=1e-2, \n",
" fit_intercept=True, \n",
" random_state=42, \n",
" normalize=False\n",
")\n",
"\n",
"# define the pipeline steps\n",
Expand Down

0 comments on commit 437f8b1

Please sign in to comment.