SGD ON HADOOP FOR BIG DATA & HUGE MODELS Alex Beutel Based on work done with Abhimanu Kumar, Vagelis Papalexakis, Partha Talukdar, Qirong Ho, Christos Faloutsos, and Eric Xing
Outline 1. When to use SGD for distributed learning 2. Optimization Review of DSGD SGD for Tensors SGD for ML models – topic modeling, dictionary learning, MMSB 3. Hadoop 1. General algorithm 2. Setting up the MapReduce body 3. Reducer communication 4. Distributed normalization 5. “Always-On SGD” – How to deal with the straggler problem 4. Experiments
When distributed SGD is useful Collaborative Filtering Predict movie preferences Topic Modeling What are the topics of webpages, tweets, or status updates Dictionary Learning Remove noise or missing pixels from images Tensor Decomposition Find communities in temporal graphs 300 Million Photos uploaded to Facebook per day! 1 Billion users on Facebook 400 million tweets per day
Gradient Descent
Stochastic Gradient Descent (SGD)
SGD Background
DSGD for Matrices (Gemulla, 2011) X U V ≈ Users Movies Genres
DSGD for Matrices (Gemulla, 2011) X U V ≈ Independent!
DSGD for Matrices (Gemulla, 2011) Independent Blocks
DSGD for Matrices (Gemulla, 2011) Partition your data & model into d × d blocks Results in d=3 strata Process strata sequentially, process blocks in each stratum in parallel
TENSORS
What is a tensor? Tensors are used for structured data > 2 dimensions Think of as a 3D-matrix Subject Verb Object For example: Derek Jeter plays baseball
Tensor Decomposition ≈ U V W X
≈ U V W X
≈ U V W X
≈ U V W X Independent Not Independent
Tensor Decomposition
For d=3 blocks per stratum, we require d 2 =9 strata
Tensor Decomposition
Coupled Matrix + Tensor Decomposition X Y Subject Verb Object Document
Coupled Matrix + Tensor Decomposition ≈ U V W X Y A
CONSTRAINTS & PROJECTIONS
Example: Topic Modeling Documents Words Topics
Constraints Sometimes we want to restrict response: Non-negative Sparsity Simplex (so vectors become probabilities) Keep inside unit ball
How to enforce? Projections Example: Non-negative
More projections Sparsity (soft thresholding): Simplex Unit ball
Dictionary Learning Learn a dictionary of concepts and a sparse reconstruction Useful for fixing noise and missing pixels of images Sparse encoding Within unit ball
Mixed Membership Network Decomp. Used for modeling communities in graphs (e.g. a social network) Simplex Non-negative
IMPLEMENTING ON HADOOP
High level algorithm for Epoch e = 1 … T do for Subepoch s = 1 … d 2 do Let be the set of blocks in stratum s for block b = 1 … d in parallel do Run SGD on all points in block end Stratum 1 Stratum 2 Stratum 3 …
Bad Hadoop Algorithm: Subepoch 1 Run SGD on Update: Run SGD on Update: Run SGD on Update: ReducersMappers U2U2 V1V1 W3W3 U3U3 V2V2 W1W1 U1U1 V3V3 W2W2
Bad Hadoop Algorithm: Subepoch 2 Run SGD on Update: Run SGD on Update: Run SGD on Update: ReducersMappers U2U2 V1V1 W2W2 U3U3 V2V2 W3W3 U1U1 V3V3 W1W1
Bad Hadoop Algorithm U2U2 V1V1 W3W3 Run SGD on Update: U3U3 V2V2 W1W1 Run SGD on Update: U1U1 V3V3 W2W2 Run SGD on Update: ReducersMappers
Hadoop Challenges MapReduce is typically very bad for iterative algorithms T × d 2 iterations Sizable overhead per Hadoop job Little flexibility
High Level Algorithm V1V1 V2V2 V3V3 U1U1 U2U2 U3U3 W1W1 W2W2 W3W3 V1V1 V2V2 V3V3 U1U1 U2U2 U3U3 W1W1 W2W2 W3W3 U1U1 V1V1 W1W1 U2U2 V2V2 W2W2 U3U3 V3V3 W3W3
V1V1 V2V2 V3V3 U1U1 U2U2 U3U3 W1W1 W2W2 W3W3 V1V1 V2V2 V3V3 U1U1 U2U2 U3U3 W1W1 W2W2 W3W3 U1U1 V1V1 W1W1 U2U2 V2V2 W2W2 U3U3 V3V3 W3W3
V1V1 V2V2 V3V3 U1U1 U2U2 U3U3 W1W1 W2W2 W3W3 V1V1 V2V2 V3V3 U1U1 U2U2 U3U3 W1W1 W2W2 W3W3 U1U1 V1V1 W3W3 U2U2 V2V2 W1W1 U3U3 V3V3 W2W2
V1V1 V2V2 V3V3 U1U1 U2U2 U3U3 W1W1 W2W2 W3W3 V1V1 V2V2 V3V3 U1U1 U2U2 U3U3 W1W1 W2W2 W3W3 U1U1 V1V1 W2W2 U2U2 V2V2 W3W3 U3U3 V3V3 W1W1
Hadoop Algorithm Process points: Map each point to its block with necessary info to order U1U1 V1V1 W1W1 Run SGD on Update: U2U2 V2V2 W2W2 Run SGD on Update: U3U3 V3V3 W3W3 Run SGD on Update: Reducers Mappers Partition & Sort … … HDFS
Hadoop Algorithm Process points: Map each point to its block with necessary info to order Reducers Mappers Partition & Sort Use: Partitioner KeyComparator GroupingComparator
Hadoop Algorithm Process points: Map each point to its block with necessary info to order Reducers Mappers Partition & Sort … …
Hadoop Algorithm Process points: Map each point to its block with necessary info to order U1U1 V1V1 W1W1 Run SGD on Update: U2U2 V2V2 W2W2 Run SGD on Update: U3U3 V3V3 W3W3 Run SGD on Update: Reducers Mappers … … Partition & Sort
Hadoop Algorithm Process points: Map each point to its block with necessary info to order U1U1 V1V1 W1W1 Run SGD on Update: U2U2 V2V2 W2W2 Run SGD on Update: U3U3 V3V3 W3W3 Run SGD on Update: Reducers Mappers Partition & Sort … …
Hadoop Algorithm Process points: Map each point to its block with necessary info to order U1U1 V1V1 Run SGD on Update: U2U2 V2V2 Run SGD on Update: U3U3 V3V3 Run SGD on Update: Reducers Mappers Partition & Sort … … HDFS W2W2 W1W1 W3W3
Hadoop Algorithm Process points: Map each point to its block with necessary info to order U1U1 V1V1 W1W1 Run SGD on Update: U2U2 V2V2 W2W2 Run SGD on Update: U3U3 V3V3 W3W3 Run SGD on Update: Reducers Mappers Partition & Sort … … HDFS
Hadoop Summary 1. Use mappers to send data points to the correct reducers in order 2. Use reducers as machines in a normal cluster 3. Use HDFS as the communication channel between reducers
Distributed Normalization Documents Words Topics π1π1 β1β1 π2π2 β2β2 π3π3 β3β3
Distributed Normalization π1π1 β1β1 π2π2 β2β2 π3π3 β3β3 σ (1) σ (2) σ (3) σ (b) is a k-dimensional vector, summing the terms of β b σ (1) σ (3) σ (2) Transfer σ (b) to all machines Each machine calculates σ: Normalize:
Barriers & Stragglers Process points: Map each point to its block with necessary info to order Run SGD on Reducers Mappers Partition & Sort … … U1U1 V1V1 Update: U2U2 V2V2 U3U3 V3V3 HDFS W2W2 W1W1 W3W3 Wasting time waiting!
Solution: “Always-On SGD” For each reducer: Run SGD on all points in current block Z Shuffle points in Z and decrease step size Check if other reducers are ready to sync Run SGD on points in Z again If not ready to sync Wait If not ready to sync Sync parameters and get new block Z
“Always-On SGD” Process points: Map each point to its block with necessary info to order Run SGD on Reducers Partition & Sort … … U1U1 V1V1 Update: U2U2 V2V2 U3U3 V3V3 HDFS W2W2 W1W1 W3W3 Run SGD on old points again!
“Always-On SGD” First SGD pass of block Z Extra SGD Updates Read Parameters from HDFS Write Parameters to HDFS Reducer 1 Reducer2 Reducer 3 Reducer 4
EXPERIMENTS
FlexiFaCT (Tensor Decomposition) Convergence
FlexiFaCT (Tensor Decomposition) Scalability in Data Size
FlexiFaCT (Tensor Decomposition) Scalability in Tensor Dimension Handles up to 2 billion parameters!
FlexiFaCT (Tensor Decomposition) Scalability in Rank of Decomposition Handles up to 4 billion parameters!
FlexiFaCT (Tensor Decomposition) Scalability in Number of Machines
Fugue (Using “Always-On SGD”) Dictionary Learning: Convergence
Fugue (Using “Always-On SGD”) Community Detection: Convergence
Fugue (Using “Always-On SGD”) Topic Modeling: Convergence
Fugue (Using “Always-On SGD”) Topic Modeling: Scalability in Data Size
Fugue (Using “Always-On SGD”) Topic Modeling: Scalability in Rank
Fugue (Using “Always-On SGD”) Topic Modeling: Scalability over Machines
Fugue (Using “Always-On SGD”) Topic Modeling: Number of Machines
Fugue (Using “Always-On SGD”)
Key Points Flexible method for tensors & ML models Can use stock Hadoop through using HDFS for communication When waiting for slower machines, run updates on old data again
Questions? Alex Beutel