How do you search a high dimensional for the global maxima using as few samples as possible? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara 2019 Moderator Election Q&A - Questionnaire 2019 Community Moderator Election ResultsHow to decide the number of trees parameter for Random Forest algorithm in PySpark MLlib?Is removing poorly predicted data points a valid approach?How to optimize for time correlated hidden function - the magical candy machineIs it possible to have a validation error less than train error for a while followed by the reverse behaviour?Is there a definitive and more conclusive way of interpreting the R^2 score from a linear regression model in terms of prediction accuracy?What should be the requirement for training data in order to obtain a good regression model using neural network?Voting classifier using grid search for Time SeriesHow can I avoid requiring global information for performing regression on meter variables?How can someone avoid over fitting or data leak in ridge and lasso regression when the training score is high and test score is low?Understanding output of LSTM for regression

"Working on a knee"

Contradiction:Maximum Power Transfer and High resistance of load

What's parked in Mil Moscow helicopter plant?

Is it acceptable to use working hours to read general interest books?

Did war bonds have better investment alternatives during WWII?

Does Prince Arnaud cause someone holding the Princess to lose?

Where to find documentation for `whois` command options?

Errors in solving coupled pdes

Why do people think Winterfell crypts is the safest place for women, children and old people?

What's the difference between using dependency injection with a container and using a service locator?

How would it unbalance gameplay to rule that Weapon Master allows for picking a fighting style?

How did Elite on the NES work?

In search of the origins of term censor, I hit a dead end stuck with the greek term, to censor, λογοκρίνω

Why does the Cisco show run command not show the full version, while the show version command does?

Using a map function on a 'Map' to change values

Do you award the encounter XP if the encounter was not solved via battle?

What is the ongoing value of the Kanban board to the developers as opposed to management

Are there existing rules/lore for MTG planeswalkers?

Capturing a lambda in another lambda can violate const qualifiers

Is Bran literally the world's memory?

Array Dynamic resize in heap

Is a self contained air-bullet cartridge feasible?

Suing a Police Officer Instead of the Police Department

Is there a verb for listening stealthily?



How do you search a high dimensional for the global maxima using as few samples as possible?



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar Manara
2019 Moderator Election Q&A - Questionnaire
2019 Community Moderator Election ResultsHow to decide the number of trees parameter for Random Forest algorithm in PySpark MLlib?Is removing poorly predicted data points a valid approach?How to optimize for time correlated hidden function - the magical candy machineIs it possible to have a validation error less than train error for a while followed by the reverse behaviour?Is there a definitive and more conclusive way of interpreting the R^2 score from a linear regression model in terms of prediction accuracy?What should be the requirement for training data in order to obtain a good regression model using neural network?Voting classifier using grid search for Time SeriesHow can I avoid requiring global information for performing regression on meter variables?How can someone avoid over fitting or data leak in ridge and lasso regression when the training score is high and test score is low?Understanding output of LSTM for regression










0












$begingroup$


Suppose the value at any point in the space is defined by Y = f(x1, x2 .. xk). For simplicity, we can assume that x takes only binary values. Which means that we have a total of 2^k possible values. I want to find the point in this k-dimensional space such that Y at this point is the highest.



The constraint lies in the cost of calculating Y. Because it is very 'expensive' to calculate Y, I want to do it as infrequently as possible. That being said, I have the ability to measure Y for any point in this k-dimensional space. I'm looking for a way to use only a small subset of values n, where n << 2^k and use it build a prediction model that extrapolates to the entire space



I've been able to do this by starting off with a set of randomly selected n points and using them to construct a regression tree. The prediction error is acceptable. But the size of n is still quite high.



Is there a more intelligent way to choose my n samples? What are some alternative approaches to extrapolate n measurements into the entire feature space?



If I'm willing to settle for the local maxima, how can I find it? Seems like a straight forward problem in linear algebra. But it's been ages and I could really use some help. TIA!










share|improve this question









$endgroup$
















    0












    $begingroup$


    Suppose the value at any point in the space is defined by Y = f(x1, x2 .. xk). For simplicity, we can assume that x takes only binary values. Which means that we have a total of 2^k possible values. I want to find the point in this k-dimensional space such that Y at this point is the highest.



    The constraint lies in the cost of calculating Y. Because it is very 'expensive' to calculate Y, I want to do it as infrequently as possible. That being said, I have the ability to measure Y for any point in this k-dimensional space. I'm looking for a way to use only a small subset of values n, where n << 2^k and use it build a prediction model that extrapolates to the entire space



    I've been able to do this by starting off with a set of randomly selected n points and using them to construct a regression tree. The prediction error is acceptable. But the size of n is still quite high.



    Is there a more intelligent way to choose my n samples? What are some alternative approaches to extrapolate n measurements into the entire feature space?



    If I'm willing to settle for the local maxima, how can I find it? Seems like a straight forward problem in linear algebra. But it's been ages and I could really use some help. TIA!










    share|improve this question









    $endgroup$














      0












      0








      0





      $begingroup$


      Suppose the value at any point in the space is defined by Y = f(x1, x2 .. xk). For simplicity, we can assume that x takes only binary values. Which means that we have a total of 2^k possible values. I want to find the point in this k-dimensional space such that Y at this point is the highest.



      The constraint lies in the cost of calculating Y. Because it is very 'expensive' to calculate Y, I want to do it as infrequently as possible. That being said, I have the ability to measure Y for any point in this k-dimensional space. I'm looking for a way to use only a small subset of values n, where n << 2^k and use it build a prediction model that extrapolates to the entire space



      I've been able to do this by starting off with a set of randomly selected n points and using them to construct a regression tree. The prediction error is acceptable. But the size of n is still quite high.



      Is there a more intelligent way to choose my n samples? What are some alternative approaches to extrapolate n measurements into the entire feature space?



      If I'm willing to settle for the local maxima, how can I find it? Seems like a straight forward problem in linear algebra. But it's been ages and I could really use some help. TIA!










      share|improve this question









      $endgroup$




      Suppose the value at any point in the space is defined by Y = f(x1, x2 .. xk). For simplicity, we can assume that x takes only binary values. Which means that we have a total of 2^k possible values. I want to find the point in this k-dimensional space such that Y at this point is the highest.



      The constraint lies in the cost of calculating Y. Because it is very 'expensive' to calculate Y, I want to do it as infrequently as possible. That being said, I have the ability to measure Y for any point in this k-dimensional space. I'm looking for a way to use only a small subset of values n, where n << 2^k and use it build a prediction model that extrapolates to the entire space



      I've been able to do this by starting off with a set of randomly selected n points and using them to construct a regression tree. The prediction error is acceptable. But the size of n is still quite high.



      Is there a more intelligent way to choose my n samples? What are some alternative approaches to extrapolate n measurements into the entire feature space?



      If I'm willing to settle for the local maxima, how can I find it? Seems like a straight forward problem in linear algebra. But it's been ages and I could really use some help. TIA!







      regression grid-search






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 7 at 5:07









      user69058user69058

      1




      1




















          1 Answer
          1






          active

          oldest

          votes


















          1












          $begingroup$

          I think you probably should use some randomized optimization algorithm such as randomized hill climbing or genetic algorithm. These are probably more suited for such a problem






          share|improve this answer









          $endgroup$













            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "557"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f46830%2fhow-do-you-search-a-high-dimensional-for-the-global-maxima-using-as-few-samples%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1












            $begingroup$

            I think you probably should use some randomized optimization algorithm such as randomized hill climbing or genetic algorithm. These are probably more suited for such a problem






            share|improve this answer









            $endgroup$

















              1












              $begingroup$

              I think you probably should use some randomized optimization algorithm such as randomized hill climbing or genetic algorithm. These are probably more suited for such a problem






              share|improve this answer









              $endgroup$















                1












                1








                1





                $begingroup$

                I think you probably should use some randomized optimization algorithm such as randomized hill climbing or genetic algorithm. These are probably more suited for such a problem






                share|improve this answer









                $endgroup$



                I think you probably should use some randomized optimization algorithm such as randomized hill climbing or genetic algorithm. These are probably more suited for such a problem







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 7 at 18:12









                Wassim9429Wassim9429

                171




                171



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Data Science Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    Use MathJax to format equations. MathJax reference.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f46830%2fhow-do-you-search-a-high-dimensional-for-the-global-maxima-using-as-few-samples%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

                    Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

                    Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High