Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

About Grid Search on CASH problems #3818

Answered by QuanluZhang
ajoeajoe asked this question in Q&A
Discussion options

You must be logged in to vote

Thanks @gaocegege for the response. Yes, Grid Search can be used to solve CASH problems. In CASH problems, candidate algorithms (for selection) usually have different hyper-parameters. Thus, it usually requires a nested search space to formulate a CASH problem. For example,

{
    "models": {
        "_type": "choice",
        "_value": [
            {
                "_name": "SVD",
                "n_components": {
                    "_type": "choice",
                    "_value": [1, 2, 3]
                },
                "n_iter": {
                    "_type": "choice",
                    "_value": [4, 5, 6]
                }
            },
            {
                "_name": "D…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by scarlett2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
3 participants
Converted from issue

This discussion was converted from issue #1533 on June 11, 2021 08:33.