Created
October 29, 2016 01:41
-
-
Save myui/cdda3aa957b20a0c836997435a7e0c4f 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
CREATE TABLE lr_model AS | |
SELECT | |
feature, -- reducers perform model averaging in parallel | |
avg(weight) as weight | |
FROM ( | |
SELECT logress(features,label,..) as (feature,weight) | |
FROM train | |
) t -- map-only task | |
GROUP BY feature; -- shuffled to reducers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment