Expose solver used with PCA(svd_solver='auto') #11223
Labels
Easy
Well-defined and straightforward way to resolve
good first issue
Easy with clear instructions to resolve
help wanted
When running
PCA
withsvd_solver='auto'
there is no way to know which solver was used infit
short of inspecting the logic in the code.It would be helpful to have an easier way of inspecting the selected solver, the current situation makes debugging issues like #8236 harder.
For instance,
NearestNeighbours
also accepts thesolver="auto"
attribute, but infit
the actual solver used is stored in the_fit_method
attribute (albeit private it is sufficient for debugging).The text was updated successfully, but these errors were encountered: