Closed icefoxhz closed 4 years ago
pred_results = model.predict(pred_coords, pred_X, scale, residuals)
pred_coords is a list, must modify the code as follows:
Please use numpy arrays for input (X, y, and coordinates). Lists are not supported.
ok , thanks
pred_results = model.predict(pred_coords, pred_X, scale, residuals)
pred_coords is a list, must modify the code as follows: