2006 MapReduceforMachineLearningonMu

From GM-RKB
(Redirected from Chu et al., 2006)
Jump to navigation Jump to search

Subject Headings: MapReduce, Distributed Supervised ML Algorithm, Supervised ML Algorithm Computation Complexity.

Notes

Cited By

Quotes

Abstract

We are at the beginning of the multicore era. Computers will have increasingly many cores (processors), but there is still no good programming framework for these architectures, and thus no simple and unified way for machine learning to take advantage of the potential speed up. In this paper, we develop a broadly applicable parallel programming method, one that is easily applied to many different learning algorithms. Our work is in distinct contrast to the tradition in machine learning of designing (often ingenious) ways to speed up a single algorithm at a time. Specifically, we show that algorithms that fit the Statistical Query model [15] can be written in a certain “summation form," which allows them to be easily parallelized on multicore computers. We adapt Google's map-reduce [7] paradigm to demonstrate this parallel speed up technique on a variety of learning algorithms including locally weighted linear regression (LWLR), k-means, logistic regression (LR), naive Bayes (NB), SVM, ICA, PCA, gaussian discriminant analysis (GDA), EM, and backpropagation (NN). Our experimental results show basically linear speedup with an increasing number of processors.

1 Introduction

Frequency scaling on silicon — the ability to drive chips at ever higher clock rates — is beginning to hit a power limit as device geometries shrink due to leakage, and simply because CMOS consumes power every time it changes state [9, 10]. Yet Moore’s law [20], the density of circuits doubling every generation, is projected to last between 10 and 20 more years for silicon based circuits [10]. By keeping clock frequency fixed, but doubling the number of processing cores on a chip, one can maintain lower power while doubling the speed of many applications. This has forced an industrywide shift to multicore.

We thus approach an era of increasing numbers of cores per chip, but there is as yet no good framework for machine learning to take advantage of massive numbers of cores. There are many parallel programming languages such as Orca, Occam ABCL, SNOW, MPI and PARLOG, but none of these approaches make it obvious how to parallelize a particular algorithm. There is a vast literature on distributed learning and data mining [18], but very little of this literature focuses on our goal: A general means of programming machine learning on multicore. Much of this literature contains a long and distinguished tradition of developing (often ingenious) ways to speed up or parallelize individual learning algorithms, for instance cascaded SVMs [11]. But these yield no general parallelization technique for machine learning and, more pragmatically, specialized implementations of popular algorithms rarely lead to widespread use. Some examples of more general papers are: Caregea et. al. [5] give some general data distribution conditions for parallelizing machine learning, but restrict the focus to decision trees; Jin and Agrawal [14] give a general machine learning programming approach, but only for shared memory machines. This doesn’t fit the architecture of cellular or grid type multiprocessors where cores have local cache, even if it can be dynamically reallocated. In this paper, we focuses on developing a general and exact technique for parallel programming of a large class of machine learning algorithms for multicore processors. The central idea of this approach is to allow a future programmer or user to speed up machine learning applications by ”throwing more cores” at the problem rather than search for specialized optimizations. This paper’s contributions are:

(i)We show that any algorithm fitting the Statistical Query Model may be written in a certain “summation form.” This form does not change the underlying algorithm and so is not an approximation, but is instead an exact implementation. (ii) The summation form does not depend on, but can be easily expressed in a map-reduce [7] framework which is easy to program in. (iii) This technique achieves basically linear speed-up with the number of cores.

We attempt to develop a pragmatic and general framework. What we do not claim: (i) We make no claim that our technique will necessarily run faster than a specialized, one-off solution. Here we achieve linear speedup which in fact often does beat specific solutions such as cascaded SVM [11] (see section 5; however, they do handle kernels, which we have not addressed).

(ii) We make no claim that following our framework (for a specific algorithm) always leads to a novel parallelization undiscovered by others. What is novel is the larger, broadly applicable framework, together with a pragmatic programming paradigm, map-reduce. (iii) We focus here on exact implementation of machine learning algorithms, not on parallel approximations to algorithms (a worthy topic, but one which is beyond this paper’s scope).

In section 2 we discuss the Statistical Query Model, our summation form framework and an example of its application. In section 3 we describe how our framework may be implemented in a Googlelike map-reduce paradigm. In section 4 we choose 10 frequently used machine learning algorithms as examples of what can be coded in this framework. This is followed by experimental runs on 10 moderately large data sets in section 5, where we show a good match to our theoretical computational complexity results. Basically, we often achieve linear speedup in the number of cores. Section 6 concludes the paper.

2 Statistical Query and Summation Form

For multicore systems, Sutter and Larus [25] point out that multicore mostly benefits concurrent applications, meaning ones where there is little communication between cores. The best match is thus if the data is subdivided and stays local to the cores. To achieve this, we look to Kearns’ Statistical Query Model [15].

The Statistical Query Model is sometimes posed as a restriction on the Valiant PAC model [26], in which we permit the learning algorithm to access the learning problem only through a statistical query oracle. Given a function f(x; y) over instances, the statistical query oracle returns an estimate of the expectation of f(x; y) (averaged over the training/test distribution). Algorithms that calculate sufficient statistics or gradients fit this model, and since these calculations may be batched, they are expressible as a sum over data points. This class of algorithms is large; We show 10 popular algorithms in section 4 below. An example that does not fit is that of learning an XOR over a subset of bits. [16, 15]. However, when an algorithm does sum over the data, we can easily distribute the calculations over multiple cores: We just divide the data set into as many pieces as there are cores, give each core its share of the data to sum the equations over, and aggregate the results at the end. We call this form of the algorithm the “summation form.”

As an example, consider ordinary least squares (linear regression), which fits a model of the form y = µT x by solving: µ¤ = minµ Pm i=1(µT x_i ¡ yi)2 The parameter µ is typically solved for by Algorithm Engine Master Reducer 1.1.3: reduce 2 1: run 1.1.1.1: query_info 1.1.1.2 1.1.3.1: query_info 1.1.3.2 Mapper Mapper Mapper Mapper 1.2 1.1: run 1.1.2: intermediate data 1.1.1: map (split data) 1.1.4: result Data 0: data input Figure 1: Multicore map-reduce framework defining the design matrix X 2 Rm£n to be a matrix whose rows contain the training instances x1; : : : ; xm, letting ~y = [y1; : : : ; ym]m be the vector of target labels, and solving the normal equations to obtain µ¤ = (XTX)¡1XT ~y. To put this computation into summation form, we reformulate it into a two phase algorithm where we first compute sufficient statistics by summing over the data, and then aggregate those statistics and solve to get µ¤ = A¡1b. Concretely, we compute A = XTX and b = XT ~y as follows: A = Pm i=1(xixTi ) and b = Pm i=1(xiyi): The computation of A and b can now be divided into equal size pieces and distributed among the cores. We next discuss an architecture that lends itself to the summation form: Map-Reduce.

3 Architecture

Many programming frameworks are possible for the summation form, but inspired by Google’s success in adapting a functional programming construct, map-reduce [7], for wide spread parallel programming use inside their company, we adapted this same construct for multicore use. Google’s map-reduce is specialized for use over clusters that have unreliable communication and where individual computers may go down. These are issues that multicores do not have; thus, we were able to developed a much lighter weight architecture for multicores, shown in Figure 1. Figure 1 shows a high level view of our architecture and how it processes the data. In step 0, the map-reduce engine is responsible for splitting the data by training examples (rows). The engine then caches the split data for the subsequent map-reduce invocations. Every algorithm has its own engine instance, and every map-reduce task will be delegated to its engine (step 1). Similar to the original map-reduce architecture, the engine will run a master (step 1.1) which coordinates the mappers and the reducers. The master is responsible for assigning the split data to different mappers, and then collects the processed intermediate data from the mappers (step 1.1.1 and 1.1.2). After the intermediate data is collected, the master will in turn invoke the reducer to process it (step 1.1.3) and return final results (step 1.1.4). Note that some mapper and reducer operations require additional scalar information from the algorithms. In order to support these operations, the mapper/reducer can obtain this information through the query info interface, which canbe customized for each different algorithm (step 1.1.1.1 and 1.1.3.2).

4 Adopted Algorithms

In this section, we will briefly discuss the algorithms we have implemented based on our framework. These algorithms were chosen partly by their popularity of use in NIPS papers, and our goal will be to illustrate how each algorithm can be expressed in summation form. We will defer the discussion of the theoretical improvement that can be achieved by this parallelization to Section 4.1. In the following, [math]\displaystyle{ x }[/math] or [math]\displaystyle{ x_i }[/math] denotes a training vector and y or yi denotes a training label.

  • Locally Weighted Linear Regression (LWLR): LWLR [28, 3] is solved by finding the solution of the normal equations [math]\displaystyle{ A\theta = b }[/math], where [math]\displaystyle{ A = \Sigma^m_{i=1} w_i(x_ix^T_i P) }[/math] and [math]\displaystyle{ B = \Simga^m_{i=1} w_i(x_iy_i) }[/math]. For the summation form, we divide the computation among different mappers. In this case, one set of mappers is used to compute [math]\displaystyle{ P_\text{subgroup} w_i(x_ix^T_i) }[/math] and another set to compute [math]\displaystyle{ P_\text{subgroup} w_i(x_iy_i) }[/math]. Two reducers respectively sum up the partial values for A and b, and the algorithm finally computes the solution [math]\displaystyle{ \theta = A^{-1}b }[/math]. Note that if [math]\displaystyle{ w_i = 1 }[/math], the algorithm reduces to the case of ordinary least squares (linear regression).
  • Naive Bayes (NB) In NB [17, 21], we have to estimate P(xj = kjy = 1), P(xj = kjy = 0), and P(y) from the training data. In order to do so, we need to sum over xj = k for each y label in the training data to calculate P(xjy). We specify different sets of mappers to calculate the following: P subgroup 1fxj = kjy = 1g, P subgroup P 1fxj = kjy = 0g, subgroup 1fy = 1g and P subgroup 1fy = 0g. The reducer then sums up intermediate results to get the final result for the parameters.
  • Gaussian Discriminative Analysis (GDA) The classic GDA algorithm [13] needs to learn the following four statistics P(y); ¹0; ¹1 and §. For all the summation forms involved in these computations, we may leverage the map-reduce framework to parallelize the process. Each mapper will handle the summation (i.e. § 1fyi = 1g;§ 1fyi = 0g;§ 1fyi = 0gxi, etc) for a subgroup of the training samples. Finally, the reducer will aggregate the intermediate sums and calculate the final result for the parameters.
  • k-means; In k-means [12], it is clear that the operation of computing the Euclidean distance between the sample vectors and the centroids can be parallelized by splitting the data into individual subgroups and clustering samples in each subgroup separately (by the mapper). In recalculating new centroid vectors, we divide the sample vectors into subgroups, compute the sum of vectors in each subgroup in parallel, and finally the reducer will add up the partial sums and compute the new centroids.
  • Logistic Regression (LR) For logistic regression (Pregibon, 1981), 2006_MapReduceforMachineLearningonMuwe choose the form of hypothesis as [math]\displaystyle{ h_\theta(x) = g(\theta^T x) = 1/(1 + exp (-\theta^T x)) }[/math]. Learning is done by fitting [math]\displaystyle{ \theta }[/math] to the training data where the likelihood function can be optimized by using Newton-Raphson to update [math]\displaystyle{ \theta : = \theta ¡ H¡1r \theta` (\theta) }[/math]. [math]\displaystyle{ r \theta` (\theta) }[/math] is the gradient, which can be computed in parallel by mappers summing up P subgroup (y (i) ¡ hµ (x (i))) x (i) j each NR step i. The computation of the hessian matrix can be also written in a summation form of [math]\displaystyle{ H (j; k): = H (j; k) + hµ (x (i)) (hµ (x (i)) ¡ 1) x (i) j x (i) k }[/math] for the mappers. The reducer will then sum up the values for gradient and hessian to perform the update for [math]\displaystyle{ \theta }[/math].
  • Neural Network (NN) We focus on backpropagation [6] By defining a network structure (we use a three layer network with two output neurons classifying the data into two categories), each mapper propagates its set of data through the network. For each training example, the error is back propagated to calculate the partial gradient for each of the weights in the network. The reducer then sums the partial gradient from each mapper and does a batch gradient descent to update the weights of the network.
  • Principal Components Analysis (PCA) PCA [29] computes the principle eigenvectors of the covariance matrix § = 1 m ¡Pm i=1 xixTi ¢ ¡ ¹¹T over the data. In the definition for §, the term ¡Pm i=1 xixTi ¢ is already expressed in summation form. Further, we can also

express the mean vector ¹ as a sum, ¹ = 1 m Pm i=1 xi. The sums can be mapped to separate cores, and then the reducer will sum up the partial results to produce the final empirical covariance matrix.

  • Independent Component Analysis (ICA) ICA [1] tries to identify the independent source vectors based on the assumption that the observed data are linearly transformed from the source data. In ICA, the main goal is to compute the unmixing matrix W. We implement batch gradient ascent to optimize theW’s likelihood. In this scheme, we can independently calculate the expression " 1 ¡ 2g(wT 1 x(i)) ... # x(i)T in the mappers and sum them up in the reducer.
  • Expectation Maximization (EM) For EM [8] we use Mixture of Gaussian as the underlying model as per [19]. For parallelization: In the E-step, every mapper processes its subset of the training data and computes the corresponding w(i) j (expected pseudo count). In Mphase, three sets of parameters need to be updated: p(y), ¹, and §. For p(y), every mapper will compute P subgroup(w(i) j ), and the reducer will sum up the partial result and divide it by m. For ¹, each mapper will compute P subgroup(w(i) j ¤ x(i)) and P subgroup(w(i) j ), and the reducer will sum up the partial result and divide them. For §, every mapper will compute P subgroup(w(i) j ¤ (x(i) ¡ ¹j) ¤ (x(i) ¡ ¹j)T ) and P subgroup(w(i) j ), and the reducer will again sum up the partial result and divide them.
  • Support Vector Machine (SVM) Linear SVM’s (Vapnik, 1981, Platt, 1999) primary goal is to optimize the following primal problem minw;b kwk2 + C P i:»i>0 »p i s:t: y(i)(wT x(i) + b) ¸ 1 ¡ »i where p is either 1 (hinge loss) or 2 (quadratic loss). [2] has shown that the primal problem for quadratic loss can be solved using the following formula where sv are the support vectors: r = 2w+2C P i2sv (w ¢ x_i ¡ yi)xi & Hessian H = I +C P i2sv xixTi We perform batch gradient descent to optimize the objective function. The mappers will calculate the partial gradient P subgroup(i2sv) (w ¢ x_i ¡ yi)xi and the reducer will sum up the partial results to update w vector.

Some implementations of machine learning algorithms, such as ICA, are commonly done with stochastic gradient ascent, which poses a challenge to parallelization. The problem is that in every step of gradient ascent, the algorithm updates a common set of parameters (e.g. the unmixing W matrix in ICA). When one gradient ascent step (involving one training sample) is updating W, it has to lock down this matrix, read it, compute the gradient, update W, and finally release the lock. This “lock-release” block creates a bottleneck for parallelization; thus, instead of stochastic gradient ascent, our [[ML algorithm |algorithm]]s above were implemented using batch gradient ascent.

4.1 Algorithm Time Complexity Analysis

Table 1 shows the theoretical complexity analysis for the ten algorithms we implemented on top of our framework. We assume that the dimension of the inputs is $n$ (i.e., $x \in \R^n$), that we have $m$ training examples, and that there are $P$ cores. The complexity of iterative algorithms is analyzed for one iteration, and so their actual running time may be slower[1]. A few algorithms require matrix inversion or an eigen-decomposition of an $n$-by-$n$ matrix; we did not parallelize these steps in our experiments, because for us $m \gg n$, and so their cost is small. However, there is extensive research in numerical linear algebra on parallelizing these numerical operations (Csanky,1976), and in the complexity analysis shown in the table, we have assumed that matrix inversion and eigen-decompositions can be sped up by a factor of $P'$ on $P$ cores. (In practice, we expect $P' \approx P$.) In our own software implementation, we had $P' = 1$. Further, the reduce phase can minimize communication by combining data as it’s passed back; this accounts for the $\log (P)$ factor.

As an example of our running-time analysis, for single-core LWLR we have to compute $A = \sum^m_{i=1} w_i(x_ix^T_i)$, which gives us the $mn^2$ term. This matrix must be inverted for $n^3$; also, the reduce step incurs a covariance matrix communication cost of $n^2$.

single multi
LWLR [math]\displaystyle{ O(mn^2 + n^3) }[/math] [math]\displaystyle{ O\left(\dfrac{mn^2}{P} + \dfrac{n^3}{P'} + n^2 log(P) \right) }[/math]
LR [math]\displaystyle{ O(mn^2 + n^3) }[/math] [math]\displaystyle{ O\left(\dfrac{mn^2}{P} + \dfrac{n^3}{P'} + n^2 log(P)\right) }[/math]
NB [math]\displaystyle{ O(mn + nc) }[/math] [math]\displaystyle{ O\left(\dfrac{mn}{P} + nc \log(P) \right) }[/math]
NN [math]\displaystyle{ O(mn + nc) }[/math] [math]\displaystyle{ O\left(\dfrac{mn}{P} + nc \log(P)\right) }[/math]
GDA [math]\displaystyle{ O(mn^2 + n^3) }[/math] [math]\displaystyle{ O\left(\dfrac{mn^2}{P} + \dfrac{n^3}{P'} + n^2 \log(P)\right) }[/math]
PCA [math]\displaystyle{ O(mn^2 + n^3) }[/math] [math]\displaystyle{ O\left(\dfrac{mn^2}{P} + \dfrac{n^3}{P'} + n^2 \log(P)\right) }[/math]
ICA [math]\displaystyle{ O(mn^2 + n^3) }[/math] [math]\displaystyle{ O\left(\dfrac{mn^2}{P} + \dfrac{n^3}{P'} + n^2 \log(P)\right) }[/math]
k-means [math]\displaystyle{ O(mnc) }[/math] [math]\displaystyle{ O\left(\dfrac{mnc}{P} + mn\log(P) \right) }[/math]
EM [math]\displaystyle{ O(mn^2 + n^3) }[/math] [math]\displaystyle{ O\left(\dfrac{mn^2}{P} + \dfrac{n^3}{P'} + n^2 \log(P)\right) }[/math]
SVM [math]\displaystyle{ O(m^2n) }[/math] [math]\displaystyle{ O\left(\dfrac{mn^2}{P} + n^2 \log(P)\right) }[/math]
Table 1: Time Complexity Analysis.

5 Experiments

To provide fair comparisons, each algorithm had two different versions: One running map-reduce, and the other a serial implementation without the framework. We conducted an extensive series of experiments to compare the speed up on data sets of various sizes (table 2), on eight commonly used machine learning data sets from the UCI Machine Learning repository and two other ones from a [anonymous] research group (Helicopter Control and sensor data). Note that not all the experiments make sense from an output view – regression on categorical data – but our purpose was to test speedup so we ran every algorithm over all the data.

The first environment we conducted experiments on was an Intel X86 PC with two Pentium-III 700 MHz CPUs and 1GB physical memory. The operating system was Linux RedHat 8.0 Kernel 2.4.20-1If, for example, the number of iterations required grows with m. However, this would affect single- and multi-core implementations equally.

Data Sets samples (m) features (n)
Adult 30162 14
Helicopter Control 44170 21
Corel Image Features 68040 32
IPUMS Census 88443 61
Synthetic Time Series 100001 10
Census Income 199523 40
ACIP Sensor 229564 8
KDD Cup 99 494021 41
Forest Cover Type 581012 55
1990 US Census 2458285 68
Table 2: data sets size and description

8smp. In addition, we also ran extensive comparison experiments on a 16 way Sun Enterprise 6000, running Solaris 10; here, we compared results using 1,2,4,8, and 16 cores.

5.1 Results and Discussion

Table 3 shows the speedup on dual processors over all the algorithms on all the data sets. As can be seen from the table, most of the algorithms achieve more than 1.9x times performance improvement. For some of the experiments, e.g. gda/covertype, ica/ipums, nn/colorhistogram, etc., we obtain a greater than 2x speedup. This is because the original algorithms do not utilize all the cpu cycles efficiently, but do better when we distribute the tasks to separate threads/processes. Figure 2 shows the speedup of the algorithms over all the data sets for 2,4,8 and 16 processing cores. In the figure, the thick lines shows the average speedup, the error bars show the maximum and minimum speedups and the dashed lines show the variance. Speedup is basically linear with number

lwlr gda nb logistic pca ica svm nn kmeans em Adult 1.922 1.801 1.844 1.962 1.809 1.857 1.643 1.825 1.947 1.854 Helicopter 1.93 2.155 1.924 1.92 1.791 1.856 1.744 1.847 1.857 1.86 Corel Image 1.96 1.876 2.002 1.929 1.97 1.936 1.754 2.018 1.921 1.832 IPUMS 1.963 2.23 1.965 1.938 1.965 2.025 1.799 1.974 1.957 1.984 Synthetic 1.909 1.964 1.972 1.92 1.842 1.907 1.76 1.902 1.888 1.804 Census Income 1.975 2.179 1.967 1.941 2.019 1.941 1.88 1.896 1.961 1.99 Sensor 1.927 1.853 2.01 1.913 1.955 1.893 1.803 1.914 1.953 1.949 KDD 1.969 2.216 1.848 1.927 2.012 1.998 1.946 1.899 1.973 1.979 Cover Type 1.961 2.232 1.951 1.935 2.007 2.029 1.906 1.887 1.963 1.991 Census 2.327 2.292 2.008 1.906 1.997 2.001 1.959 1.883 1.946 1.977 avg. 1.985 2.080 1.950 1.930 1.937 1.944 1.819 1.905 1.937 1.922

Table 3: Speedups achieved on a dual core processor, without load time. Numbers reported are dualcore time / single-core time. Super linear speedup sometimes occurs due to a reduction in processor idle time with multiple threads.

(a) (b) (c) (d) (e) (f) (g) (h) (i)

Figure 2: (a)-(i) show the speedup from 1 to 16 processors of all the algorithms over all the data sets. The Bold line is the average, error bars are the max and min speedups and the dashed lines are the variance.

of cores, but with a slope < 1:0. The reason for the sub-unity slope is increasing communication overhead. For simplicity and because the number of data points m typically dominates reduction phase communication costs (typically a factor of n2 but n << m), we did not parallelize the reduce phase where we could have combined data on the way back. Even so, our simple SVM approach gets about 13.6% speed up on average over 16 cores whereas the specialized SVM cascade [11] averages only 4%.

Finally, the above are runs on multiprocessor machines. We finish by reporting some confirming results and higher performance on a proprietary multicore simulator over the sensor dataset.2 NN speedup was [16 cores, 15.5x], [32 cores, 29x], [64 cores, 54x]. LR speedup was [16 cores, 15x], [32 cores, 29.5x], [64 cores, 53x]. Multicore machines are generally faster than multiprocessor machines because communication internal to the chip is much less costly.

6 Conclusion

As the Intel and AMD product roadmaps indicate [24], the number of processing cores on a chip will be doubling several times over the next decade, even as individual cores cease to become significantly faster. For machine learning to continue reaping the bounty of Moore’s law and apply to ever larger datasets and problems, it is important to adopt a programming architecture which takes advantage of multicore. In this paper, by taking advantage of the summation form in a map-reduce 2This work was done in collaboration with Intel Corporation.

framework, we could parallelize a wide range of machine learning algorithms and achieve a 1.9 times speedup on a dual processor on up to 54 times speedup on 64 cores. These results are in line with the complexity analysis in Table 1. We note that the speedups achieved here involved no special optimizations of the algorithms themselves. We have demonstrated a simple programming framework where in the future we can just “throw cores” at the problem of speeding up machine learning code.

References

  • 1. Anthony J. Bell, Terrence J. Sejnowski, An Information-maximization Approach to Blind Separation and Blind Deconvolution, Neural Computation, v.7 n.6, p.1129-1159, Nov. 1995
  • 2. O. Chapelle. Training a Support Vector Machine in the Primal. Journal of Machine Learning Research (submitted), 2006.
  • 3. W. S. Cleveland and S. J. Devlin. Locally Weighted Regression: An Approach to Regression Analysis by Local Fitting. In J. Amer. Statist. Assoc. 83, Pages 596-610, 1988.
  • 4. L. Csanky. Fast Parallel Matrix Inversion Algorithms. SIAM J. Comput., 5(4):618-623, 1976.
  • 5. Doina Caragea, Adrian Silvescu, Vasant Honavar, A Framework for Learning from Distributed Data Using Sufficient Statistics and Its Application to Learning Decision Trees, International Journal of Hybrid Intelligent Systems, v.1 n.1-2, p.80-89, April 2004
  • 6. R. J. Williams D. E. Rumelhart, G. E. Hinton. Learning Representation by Back-propagating Errors. In Nature, Volume 323, Pages 533-536, 1986.
  • 7. J. Dean and S. Ghemawat. Mapreduce: Simplified Data Processing on Large Clusters. Operating Systems Design and Implementation, Pages 137-149, 2004.
  • 8. N.M. Dempster A.P., Laird and Rubin D.B.
  • 9. D. J. Frank, Power-constrained CMOS Scaling Limits, IBM Journal of Research and Development, v.46 n.2-3, p.235-244, March 2002
  • 10. P. Gelsinger. Microprocessors for the New Millennium: Challenges, Opportunities and New Frontiers. In ISSCC Tech. Digest, Pages 22-25, 2001.
  • 11. Leon Bottou Igor Durdanovic Hans Peter Graf, Eric Cosatto and Vladimire Vapnik. Parallel Support Vector Machines: The Cascade Svm. In NIPS, 2004.
  • 12. John A. Hartigan, Clustering Algorithms, John Wiley & Sons, Inc., New York, NY, 1975
  • 13. T. Hastie and R. Tibshirani. Discriminant Analysis by Gaussian Mixtures. Journal of the Royal Statistical Society B, Pages 155-176, 1996.
  • 14. R. Jin and G. Agrawal. Shared Memory Parallelization of Data Mining Algorithms: Techniques, Programming Interface, and Performance. In Second SIAM International Conference on Data Mining,, 2002.
  • 15. M. Kearns. Efficient Noise-tolerant Learning from Statistical Queries. Pages 392-401, 1999.
  • 16. Michael J. Kearns, Umesh V. Vazirani, An Introduction to Computational Learning Theory, MIT Press, Cambridge, MA, 1994
  • 17. David D. Lewis, Naive (Bayes) at Forty: The Independence Assumption in Information Retrieval, Proceedings of the 10th European Conference on Machine Learning, p.4-15, April 21-23, 1998
  • 18. Kun Liu and Hillow Kargupta. Distributed Data Mining Bibliography. http://www.cs.umbc.edu/hillol/DDMBIB/, 2006.
  • 19. T. K. MOON. The Expectation-maximization Algorithm. In IEEE Trans. Signal Process, Pages 47-59, 1996.
  • 20. G. Moore. Progress in Digital Integrated Electronics. In IEDM Tech. Digest, Pages 11-13, 1975.
  • 21. Wayne Iba Pat Langley and Kevin Thompson. An Analysis of Bayesian Classifiers. In AAAI, 1992.
  • 22. (Platt, 1999) ⇒ John C. Platt, Fast Training of Support Vector Machines Using Sequential Minimal Optimization, Advances in Kernel Methods: Support Vector Learning, MIT Press, Cambridge, MA, 1999
  • 23. Daryl Pregibon. Logistic Regression Diagnostics. In The Annals of Statistics, Volume 9, Pages 705-724, 1981.
  • 24. T. Studt. There's a Multicore in Your Future, http://tinyurl.com/ohd2m, 2006.
  • 25. Herb Sutter, James Larus, Software and the Concurrency Revolution, Queue, v.3 n.7, September 2005
  • 26. L. G. Valiant, A Theory of the Learnable, Communications of the ACM, v.27 n.11, p.1134-1142, Nov. 1984
  • 27. (Vapnik, 1981) ⇒ Vladimir Vapnik, Estimation of Dependences Based on Empirical Data: Springer Series in Statistics (Springer Series in Statistics), Springer-Verlag New York, Inc., Secaucus, NJ, 1982
  • 28. R. E. Welsch and E. KUH. Linear Regression Diagnostics. In Working Paper 173, Nat. Bur. Econ. Res. Inc, 1977.
  • 29. K. Esbensen Wold, S. and P. Geladi. Principal Component Analysis. In Chemometrics and Intelligent Laboratory Systems, 1987.

;

 AuthorvolumeDate ValuetitletypejournaltitleUrldoinoteyear
2006 MapReduceforMachineLearningonMuAndrew Y. Ng
Cheng-Tao Chu
Sang Kyun Kim
Yi-An Lin
YuanYuan Yu
Gary Bradski
Kunle Olukotun
Map-Reduce for Machine Learning on Multicore2006
  1. If, for example, the number of iterations required grows with $m$. However, this would affect single-and multi-core implementations equally.