auto-sklearn icon indicating copy to clipboard operation
auto-sklearn copied to clipboard

when it report ' Number of crashed target algorithm runs:1',what is the specific reason that causes an algorithm to crash

Open belzheng opened this issue 3 years ago • 1 comments

when it report ' Number of crashed target algorithm runs:1',what is the specific reason that causes an algorithm to crash?

belzheng avatar Jun 07 '22 14:06 belzheng

Hi @belzheng,

There's no a great interface for this at the moment but you can get access to most of this information by using

askl = AutoSklearnClassifier(...)
askl.fit(...)

# A dictionary where the configuration are as keys and any information we have on them as values
askl.automl_.runhistory_.data

Best, Eddie

eddiebergman avatar Jun 07 '22 15:06 eddiebergman