enhancementgood first issue
仓库指标
- 星标
- (3 个星标)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
There is a lot of optimization functions that can be implemented.
Here are a couple of resources that can be of value:
- https://www.sfu.ca/~ssurjano/optimization.html
- https://infinity77.net/global_optimization/test_functions.html#test-functions-index
Not all functions have to be implemented at once.
The main idea should be the following:
- For the one-dimensional functions the python methods should accept a
numpy array, alistor afloatvalue as input. For reference see the implementation of thegramacy_leefunction (https://github.com/baobabsoluciones/mango/blob/master/mango/benchmark/optimization/gramacy_lee.py) - For the finite-dimensional functions, based on the computations needed it should accept
numpy arraysas input and maybe alistinput. - For the n-dimensional functions it should only accept
numpy arrays.