We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e2c34 commit 69d443fCopy full SHA for 69d443f
1 file changed
openml/extensions/sklearn/extension.py
@@ -1927,9 +1927,10 @@ def _obtain_arff_trace(
1927
param_value is None or param_value is np.ma.masked:
1928
# basic string values
1929
type = 'STRING'
1930
- elif isinstance(param_value, list) and \
+ elif isinstance(param_value, (list, tuple)) and \
1931
all(isinstance(i, int) for i in param_value):
1932
- # list of integers
+ # list of integers (usually for selecting features)
1933
+ # hyperparameter layer_sizes of MLPClassifier
1934
1935
else:
1936
raise TypeError('Unsupported param type in param grid: %s' % key)
0 commit comments