运行后报错:AttributeError: 'tuple' object has no attribute 'squeeze'
时间: 2023-08-14 15:03:07 浏览: 239
解决运行出现dict object has no attribute has_key问题
5星 · 资源好评率100%
非常抱歉,我之前提供的代码有误。错误是因为 `np.hstack` 函数无法处理元组对象。为了修复这个问题,我们可以使用 `np.concatenate` 函数来替代 `np.hstack`。以下是修复后的代码:
```python
import numpy as np
def second_order_basis(X):
n = X.shape[0]
m = X.shap
阅读全文