alteryx/evalml

Add util method to component graph to get components based on component class

Aberta

#2.878 aberto em 6 de out. de 2021

 (0 comentário) (0 reação) (0 responsável)Python (93 forks)auto 404
good first issuenew feature

Métricas do repositório

Stars
 (852 estrelas)
Métricas de merge de PR
 (Métricas PR pendentes)

Description

Right now, component_graph.get_component expects a string which is the unique name used to find a component in the graph (ex: "My Label Encoder", and not "Label Encoder"). This makes it difficult to find components of a specific class, ex LabelEncoder instances. We should add a method to help with this!

API should take into consideration what happens if we have multiple of the same component in a graph. Ex: if we have two label encoders under "LE 1" and "LE 2", we should find both.

Guia do colaborador