Skip to content

Commit

Permalink
Add stage prefix to RailStage (even after import and attach all)
Browse files Browse the repository at this point in the history
  • Loading branch information
OliviaLynn authored Jul 8, 2024
1 parent fe64556 commit 93087f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/core_examples/Useful_Utilities.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"\n",
"Now, let's try listing imported stages again.\n",
"\n",
"Note that we can now just call `RailStage` instead of `rail.core.stage.RailStage`."
"Note that we can now just call `stage.RailStage` instead of `rail.core.stage.RailStage`."
]
},
{
Expand All @@ -147,7 +147,7 @@
"metadata": {},
"outputs": [],
"source": [
"for val in RailStage.pipeline_stages.values():\n",
"for val in stage.RailStage.pipeline_stages.values():\n",
" print(val[0])"
]
},
Expand All @@ -166,7 +166,7 @@
"metadata": {},
"outputs": [],
"source": [
"for val in RailStage.pipeline_stages.values():\n",
"for val in stage.RailStage.pipeline_stages.values():\n",
" if issubclass(val[0], rail.estimation.estimator.CatEstimator):\n",
" print(val[0])"
]
Expand All @@ -188,7 +188,7 @@
"metadata": {},
"outputs": [],
"source": [
"DS = RailStage.data_store\n",
"DS = stage.RailStage.data_store\n",
"DS.__class__.allow_overwrite = True"
]
},
Expand Down

0 comments on commit 93087f9

Please sign in to comment.