Last active
December 23, 2018 03:22
-
-
Save myui/11f4e0ef151e17eeb737 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT OVERWRITE TABLE model | |
SELECT | |
-- C: Categorical Variable, Q: Quantitative Variable | |
train_randomforest_regr(features, label, '-trees 20 -attrs C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,Q') | |
FROM | |
training3 | |
UNION ALL | |
SELECT | |
train_randomforest_regr(features, label, '-trees 20 -attrs C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,Q') | |
FROM | |
training3 | |
UNION ALL | |
SELECT | |
train_randomforest_regr(features, label, '-trees 20 -attrs C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,Q') | |
FROM | |
training3 | |
UNION ALL | |
SELECT | |
train_randomforest_regr(features, label, '-trees 20 -attrs C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,Q') | |
FROM | |
training3 | |
UNION ALL | |
SELECT | |
train_randomforest_regr(features, label, '-trees 20 -attrs C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,C,Q') | |
FROM | |
training3; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment