alteryx / alteryx/evalml

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

Abierto
#4,192 0 comentarios 0 reacciones 0 asignados Ver en GitHub
bug
Lenguaje dominante
Python
Estrellas
850
Forks
96
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

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)

```

Guía de contribución

Abrir la guía de contribución

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.