优化#

class astropy.modeling.optimizers.Optimization(opt_method)[源代码]#

基类:object

优化器的基类。

参数:
opt_method : callable()Python:Callable()

实现优化方法

笔记

默认情况下,基本优化器不支持任何约束;单个优化器应将此列表显式设置为它支持的特定约束。

属性摘要

acc 

要求准确度。

eps 

雅可比前向差分近似的一步。

maxiter 

最大迭代次数。

opt_method 

返回优化方法。

supported_constraints 

方法总结

__call__ \()

称自己为函数。

属性文档

acc#

要求准确度。

eps#

雅可比前向差分近似的一步。

maxiter#

最大迭代次数。

opt_method#

返回优化方法。

supported_constraints = []#

方法文件

abstract __call__()[源代码]#

称自己为函数。