g, cost = batch_gradientDescent(X1_train, y1_train,w, alpha, iters) def computeCost(X_train, y_train, g): SyntaxError: incomplete input
时间: 2023-10-06 08:09:17 浏览: 71
Keras之fit_generator与train_on_batch用法
这是一个语法错误,可能是因为你在定义 `batch_gradientDescent` 函数时没有正确地定义所有的参数。请检查你的代码,确保 `X1_train`,`y1_train`,`w`,`alpha` 和 `iters` 这些参数都被正确地定义并传递给函数。你还需要检查 `computeCost` 函数的定义是否正确,并确保它的参数和返回值都被正确地定义。如果你能提供更多的代码和上下文,我可以帮你更好地解决这个问题。
阅读全文