Sale!

CSC 4760/6760 Big Data Programming Assignment 4

$30.00 $18.00

Category: You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (3 votes)

1. (100 points) (Computing PageRank in Spark)
Dataset:
The toy dataset is the following graph. The PageRank values are already known. We can use it to
check your program.
Figure 1: A toy graph for computing PageRank. The number on the edge represents the
transition probability from one node to another.
The PageRank values are given in the following table (given that the decay factor 𝑐 = 0.85):
Nodes PageRank Values
1 0.1556
2 0.1622
3 0.2312
4 0.2955
5 0.1556
PageRank:
Compute the PageRank value of each node in the graph. Please refer to the slides for more details
about the PageRank method. The key PageRank equation is as follows.
𝐫 = 𝑐𝐏
⊀𝐫 + (1 βˆ’ 𝑐)𝟏/𝑛
where 𝐫 represents the 𝑛 Γ— 1 PageRank vector with each element 𝐫𝑖
representing the PageRank
value of node 𝑖, 𝑛 represents the number of nodes in the graph, 𝐏 represents the 𝑛 Γ— 𝑛 transition
probability matrix with each element 𝐏𝑖,𝑗 = 𝑝𝑖,𝑗 =
1
𝑑𝑖
representing the transition probability from
node 𝑖 to node 𝑗, 𝑑𝑖
represents the degree of node 𝑖, 𝐏
⊀ represents the transpose of 𝐏, 𝑐 ∈ (0,1)
represents a decay factor, 𝟏 represents a 𝑛 Γ— 1 vector of all 1’s, and 𝑛 represents the number of
nodes in the graph.
Please see the slides for more details.
In this assignment, we set the decay factor 𝑐 = 0.85 and set the number of iterations to 30.
Implementation:
Design and implement a PySpark program to compute the PageRank values. A template
β€œPageRank_Spark_Incomplete.py” file is given. You need to add 6 lambda functions in the file.
For example:
Line 13: AdjList2 = AdjList1.map(lambda line : line) # 1. Replace the lambda function with yours
You need to replace β€œlambda line : line” with your own lambda function. The inputs to the lambda
function should be not changed.
The outputs in the terminal of the ground-truth solutions is given in the file β€œTerminalOutputs.txt”.
You may use it to understand the source code, debug your code, and verify your solution.
Example command to run the β€œ.py” file:
$ spark-submit PageRank_Spark_Incomplete.py
The files can be put in local file system.
Report:
Please write a report illustrating your experiments. You need to explain your basic idea about how
to design the computing algorithm. You may add comments to the source code such that the
source code can be read and understood by the graders.
In the report, you should include the answers to the following questions.
1) Explanation of the source code:
What are the functions of your lambda functions? Which kind of intermediate results are
generated?
2) Experimental Results
2.1) Screenshots of the key steps. For example, the screenshot for the outputs in the terminal
when you run the command. It will demonstrate that your program has no bug.
2.2) Explain your results. Does your implementation give the exact PageRank values?
Submission Materials:
a) Your report
b) Source code (.py file)
c) The outputs in the terminal (Intermediate results)
d) The output file of your program (PageRank values)