Parallel many dimensional optimization
问题 I am building a script that generates input data [parameters] for another program to calculate. I would like to optimize the resulting data. Previously I have been using the numpy powell optimization. The psuedo code looks something like this. def value(param): run_program(param) #Parse output return value scipy.optimize.fmin_powell(value,param) This works great; however, it is incredibly slow as each iteration of the program can take days to run. What I would like to do is coarse grain