We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I created an own config_dict and my aim was to see which Estimators are choosed by TPOT to select Features from a Model.
Its working, if i choose only one estimator with the corresponding model parameters like that:
'sklearn.feature_selection.SelectFromModel': { 'threshold': np.arange(0, 1.01, 0.05), 'estimator': { 'sklearn.ensemble.ExtraTreesRegressor': { 'n_estimators': [100], 'max_features': np.arange(0.05, 1.01, 0.05) }
The Problem occurs if i want TPOT to choose between different estimators like that:
'sklearn.feature_selection.SelectFromModel': { 'threshold': np.arange(0, 1.01, 0.05), 'estimator': { 'sklearn.ensemble.ExtraTreesRegressor': { 'n_estimators': [100], 'max_features': np.arange(0.05, 1.01, 0.05) }, 'sklearn.ensemble.RandomForestRegressor':{ }, 'sklearn.linear_model.Ridge':{ }, 'sklearn.linear_model.LassoCV':{ } }}
How i have to create/change the dictionary config_dict ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I created an own config_dict and my aim was to see which Estimators are choosed by TPOT to select Features from a Model.
Its working, if i choose only one estimator with the corresponding model parameters like that:
'sklearn.feature_selection.SelectFromModel': {
'threshold': np.arange(0, 1.01, 0.05),
'estimator': {
'sklearn.ensemble.ExtraTreesRegressor': {
'n_estimators': [100],
'max_features': np.arange(0.05, 1.01, 0.05)
}
The Problem occurs if i want TPOT to choose between different estimators like that:
'sklearn.feature_selection.SelectFromModel': {
'threshold': np.arange(0, 1.01, 0.05),
'estimator': {
'sklearn.ensemble.ExtraTreesRegressor': {
'n_estimators': [100],
'max_features': np.arange(0.05, 1.01, 0.05)
},
'sklearn.ensemble.RandomForestRegressor':{
},
'sklearn.linear_model.Ridge':{
},
'sklearn.linear_model.LassoCV':{
}
}}
How i have to create/change the dictionary config_dict ?
The text was updated successfully, but these errors were encountered: