COMP9313 Project 3 Similarity Join Using Pyspark solution

$30.00

Original Work ?
Category: You will Instantly receive a download link for .ZIP solution file upon Payment

Description

5/5 - (1 vote)

Problem Definition:

Given two collections of records R and S, a similarity function sim(., .), and a threshold τ, the set similarity join between R and S, is to find all record pairs r (from R) and s (from S), such that sim(r, s) >= τ. We compute sim(., .) using the Jaccard similarity in this project.

Given the above example, and set τ=0.5, the results are (r1, s1) (similarity 0.75), (r2, s2) (similarity 0.5), (r3, s1) (similarity 0.5), (r3, s2) (similarity 0.5).

Input files:

Each set is stored in one text file, and each line is in format of: “RecordId list<ElementId>”. Two example input files are as below (elements are separated by space):

File1 File2
0 e1 e4 e5 e6

1 e2 e3 e6

2 e4 e5 e6

0 e1 e4 e6

1 e2 e5 e6

2 e3 e5

 

Another small test data set can be downloaded at (τ=0.1): https://webcms3.cse.unsw.edu.au/COMP9313/22T3/resources/82369

Note that it is possible that one element appears multiple times in a record. You need to convert the record to a set first to compute the Jaccard similarity.

Output:

The output file contains the similar pairs together with their similarity scores. Each line is in format of “(RecordId1,RecordId2)\tSimilarity” (RecordId1 is from the first file and RecordId2 is from the second file). Round the similarities to six decimal places. The pairs are sorted in ascending order by the first record and then the second. Given the example input data, the output file is like:

(0,0)\t0.75

(1,1)\t0.5

(2,0)\t0.5

(2,1)\t0.5

Code format:

Please name your python file as “project3.py” and compress it in a package named “zID_proj3.zip” (e.g. z5123456_proj3.zip).

Command of running your code:

Your program should take four parameters: the two input files, the output folder, and the similarity threshold τ. We will use the following command to run your code:

$ spark-submit project3.py file1 file2 tau output

Please ensure that the code you submit can be compiled. Any solution that has compilation errors will receive no more than 6 marks.

Documentation and code readability

Your source code will be inspected and marked based on readability and ease of understanding. The efficiency and scalability of this project is very important and will be evaluated as well. Below is an indicative marking scheme:

Result correctness: 12
Efficiency and Scalability: 8
Code structure, Readability, and Documentation: 2

Submission:

You can submit through Moodle. If you submit your assignment more than once, the last submission will replace the previous one. To prove successful submission, please take a screenshot as assignment submission instructions show and keep it by yourself. If you have any problems in submissions, please email to siqing.li@unsw.edu.au.

Late submission penalty

5% reduction of your marks for up to 5 days