I have training data for 11 inputs and 2 outputs. Is there a library that can optimize the 11 inputs to minimize 1 output and maximize 1 output?

  • SFDeltas@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    I actually have your model ready for you (takes 11 inputs, minimizes one output, maximizes the other):

    def model(a,b,c,d,e,f,g,h,i,j,k):
        return float('-inf'), float('inf')
    

    No library needed!

    If you need more help I would encourage you to provide more detail.

    • bsiegelwax@alien.topOPB
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      I’m just looking for ML libraries that can optimize inputs for multiple outputs. The ones I’ve found thus far seem to require knowledge of some function, but the function is the unknown.