Skip to content

Instantly share code, notes, and snippets.

@myui
Created October 29, 2016 01:41
Show Gist options
  • Save myui/cdda3aa957b20a0c836997435a7e0c4f to your computer and use it in GitHub Desktop.
Save myui/cdda3aa957b20a0c836997435a7e0c4f to your computer and use it in GitHub Desktop.
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