Skip to content

Commit

Permalink
fixed bug in example notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
richrobe committed Nov 29, 2023
1 parent abf0040 commit 0fce872
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions examples/SklearnPipelinePermuter_Example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -509,14 +509,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Save and Load `PipelinePermuter` results"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Save to Pickle File"
"### Export Results as LaTeX Table"
]
},
{
Expand All @@ -527,14 +520,21 @@
},
"outputs": [],
"source": [
"pipeline_permuter.to_pickle(tmpdir.joinpath(\"test.pkl\"))"
"print(pipeline_permuter.metric_summary_to_latex())"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Load from Pickle File"
"### Save and Load `PipelinePermuter` results"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Save to Pickle File"
]
},
{
Expand All @@ -545,14 +545,14 @@
},
"outputs": [],
"source": [
"pipeline_permuter_load = SklearnPipelinePermuter.from_pickle(tmpdir.joinpath(\"test.pkl\"))"
"pipeline_permuter.to_pickle(tmpdir.joinpath(\"test.pkl\"))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Export Results as LaTeX Table"
"#### Load from Pickle File"
]
},
{
Expand All @@ -563,7 +563,7 @@
},
"outputs": [],
"source": [
"print(merged_permuter.metric_summary_to_latex())"
"pipeline_permuter_load = SklearnPipelinePermuter.from_pickle(tmpdir.joinpath(\"test.pkl\"))"
]
},
{
Expand Down

0 comments on commit 0fce872

Please sign in to comment.