gpt4 book ai didi

python - 调用 Gekko solve 给出 TypeError : object of type 'int' has no len()

转载 作者:行者123 更新时间:2023-12-04 13:35:31 26 4
gpt4 key购买 nike

我正在尝试使用 Gekko 解决最优控制问题。当我尝试拨打 m.solve() 时,它给了我 TypeError: object of type 'int' has no len() ,详情如下。无论我选择了何种目标函数,我都会收到此错误;然而,only similar issue I've found有一个不可微的约束问题,我很确定我的约束是可微的。我可能会在 Gekko 上遇到此类错误,还有其他原因吗?

---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-25-9f7b73717b27> in <module>
1 from gekko import GEKKO
----> 2 solve_system()

<ipython-input-24-f224d4cff3fc> in solve_system(theta, alpha, rho, chi, L_bar, n, w, delta_inc, xi, phi, tau, kappa, GAMMA, T, SIGMA, BETA, s_init, i_init, r_init)
257 ##### solve model #####
258 m.options.IMODE = 6
--> 259 m.solve()

~\Anaconda3\lib\site-packages\gekko\gekko.py in solve(self, disp, debug, GUI, **kwargs)
1955 # Build the model
1956 if self._model != 'provided': #no model was provided
-> 1957 self._build_model()
1958 if timing == True:
1959 print('build model', time.time() - t)

~\Anaconda3\lib\site-packages\gekko\gk_write_files.py in _build_model(self)
54 model += '\t%s' % variable
55 if not isinstance(variable.VALUE.value, (list,np.ndarray)):
---> 56 if not (variable.VALUE==None):
57 i = 1
58 model += ' = %s' % variable.VALUE

~\Anaconda3\lib\site-packages\gekko\gk_operators.py in __len__(self)
23 return self.name
24 def __len__(self):
---> 25 return len(self.value)
26 def __getitem__(self,key):
27 return self.value[key]

~\Anaconda3\lib\site-packages\gekko\gk_operators.py in __len__(self)
142
143 def __len__(self):
--> 144 return len(self.value)
145
146 def __getitem__(self,key):

TypeError: object of type 'int' has no len()

我确实在我的约束中调用了一个外部(但可微)函数。但是,删除它并仅在没有该功能的情况下进行工作并不能解决问题。我真的很感激你们能提供的任何意见。谢谢!

最佳答案

此错误可能是因为您在 Gekko 表达式中使用了 Numpy 数组或 Python 列表。

import numpy as np
x = np.array([0,1,2,3]) # numpy array
y = [2,3,4,5] # python list

from gekko import GEKKO
m = GEKKO()
m.Minimize(x) # error, use Gekko Param or Var
m.Equation(m.sum(x)==5) # error, use Gekko Param or Var
您可以通过切换到 Gekko 参数或变量来避免此错误。 Gekko 可以使用 Python 列表或 Numpy 数组进行初始化。
xg = m.Param(x)
yg = m.Var(y)

m.Minimize(xg)
m.Equation(m.sum(yg)==5)
m.solve()

关于python - 调用 Gekko solve 给出 TypeError : object of type 'int' has no len(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62309591/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com