Skip to content
New issue

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

Will changing the position of operators in the config_dict configuration affect the running results? #1354

Open
master6666666 opened this issue Aug 21, 2024 · 0 comments

Comments

@master6666666
Copy link

Will changing the position of operators in the config_dict configuration affect the running results? For example, changing config_dict_1 to config_dict_2.

config_dict_1 = {

'sklearn.feature_selection.SelectPercentile': {
    'percentile': range(1, 100),
    'score_func': {
        'sklearn.feature_selection.f_regression': None
    }
},

'sklearn.svm.LinearSVR': {
    'loss': ["epsilon_insensitive", "squared_epsilon_insensitive"],
    'dual': [True, False],
    'tol': [1e-5, 1e-4, 1e-3, 1e-2, 1e-1],
    'C': [1e-4, 1e-3, 1e-2, 1e-1, 0.5, 1., 5., 10., 15., 20., 25.],
    'epsilon': [1e-4, 1e-3, 1e-2, 1e-1, 1.]
}

}

config_dict_2 = {

'sklearn.svm.LinearSVR': {
    'loss': ["epsilon_insensitive", "squared_epsilon_insensitive"],
    'dual': [True, False],
    'tol': [1e-5, 1e-4, 1e-3, 1e-2, 1e-1],
    'C': [1e-4, 1e-3, 1e-2, 1e-1, 0.5, 1., 5., 10., 15., 20., 25.],
    'epsilon': [1e-4, 1e-3, 1e-2, 1e-1, 1.]
},

'sklearn.feature_selection.SelectPercentile': {
    'percentile': range(1, 100),
    'score_func': {
        'sklearn.feature_selection.f_regression': None
    }
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant