Skip to content

Instantly share code, notes, and snippets.

@myui
Created March 15, 2016 13:20
Show Gist options
  • Save myui/b8d4048e0f1a7ba9d222 to your computer and use it in GitHub Desktop.
Save myui/b8d4048e0f1a7ba9d222 to your computer and use it in GitHub Desktop.
INSERT OVERWRITE TABLE prediction
SELECT
id,
EXP(predicted)-1 as predicted
FROM(
SELECT
id,
avg(predicted) AS predicted
FROM(
SELECT
t.id,
tree_predict(p.model_id, p.model_type, p.pred_model, t.features, false) as predicted
FROM
model p
LEFT OUTER JOIN testing3 t
) t1
group by
id
) t2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment