1
22kviews
Explain the SON algorithm and MapReduce.

This question appears in Mumbai University > Big Data Analytics

Marks: 10 M

2 Answers
3
1.3kviews
  • The SON algorithm lends itself well to a parallel-computing environment. Each of the chunks can be processed in parallel, and the frequent itemsets from each chunk combined to form the candidates.

  • We can distribute the candidates to many processors, have each processor count the support for each candidate in a …

Create a free account to keep reading this post.

and 2 others joined a min ago.

1
508views

SON Algorithm:

  • It is an improvement over PCY to count frequent item sets

  • The idea is to divide input file into chunks

  • Treat each chunk as sample and then find set of frequent item sets in chunks

  • We use Ps as a threshold, if each chunk is fraction P of …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.