alteryx / alteryx/evalml

Trained pipelines must be unique but get_pipeline() returns same pipeline names

オープン
#4,192 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
bug
主要言語
Python
スター
850
フォーク
96
PR マージ指標
30日以内にマージされた PR はありません

説明

I want to store all the pipelines of an analysis trained using the train_pipelines() function. However when iterating through all the pipelines i get the following error:

`ValueError: All pipeline names must be unique. The names '...', '...', '...' were repeated.`

I am using the following code:

```python
from evalml.automl import AutoMLSearch

automl = AutoMLSearch(X_train=X_train, y_train=y_train, problem_type='binary', max_time=100)
automl.search()
result = automl.train_pipelines(
[
automl.get_pipeline(i)
for i in range(len(automl._results["search_order"]))
]
)
print(result)

```

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。