Skip to content

Commit

Permalink
Update warning message.
Browse files Browse the repository at this point in the history
* Add pointer to the notebooks that explain the sequential pipelines.
  • Loading branch information
benHeid committed Sep 15, 2023
1 parent 7573f22 commit c17fa43
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sktime/pipeline/pipeline.py
Expand Up @@ -161,8 +161,12 @@ def __init__(self, steps=None):
warnings.warn(
"This generalised graphical pipeline is experimental. "
"Thus, there are usual risk with cutting edge features. "
"If you are searching in a mature feature, please use the "
"the existing sequential pipeline, e.g. ForecastingPipeline.",
"Mature pipelines are Pipelines as ForecastingPipeline,"
"ClassificationPipeline, etc."
"Do learn about them you might want to take a look into "
"the notebooks 01_forecasting.ipynb and "
"02_classification.ipynb at"
"https://github.com/sktime/sktime/blob/main/examples/.",
stacklevel=1,
)
super().__init__()
Expand Down

0 comments on commit c17fa43

Please sign in to comment.