In Google BigQuery, when I enter the following query I get the following error. How can I solve this problem?
Thanks,
Josh
CREATE MODEL `finance-ml-jdb:FOREX.EURGBP_Model`
OPTIONS( model_type = 'linear_reg',
input_label_cols = ['bidclose'],
ls_init_learn_rate = .15,
l1_reg = 1,
max_iterations = 5
) AS
SELECT
bidopen,
bidhigh,
bidlow,
askopen,
askclose,
asklow,
tickqty
FROM `finance-ml-jdb.FOREX.EURGBP`
An internal error occurred and the request could not be completed.