首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
CS439编程代写、代做Java程序语言
项目预算:
开发周期:
发布时间:
要求地区:
CS439: Introduction to Data Science Fall 2024
Problem Set 1
Due: 11:59pm Friday, October 11, 2024
Late Policy: The homework is due on 10/11 (Friday) at 11:59pm. We will release the solutions
of the homework on Canvas on 10/16 (Wednesday) 11:59pm. If your homework is submitted to
Canvas before 10/11 11:59pm, there will no late penalty. If you submit to Canvas after 10/11
11:59pm and before 10/16 11:59pm (i.e., before we release the solution), your score will be
penalized by 0.9k
, where k is the number of days of late submission. For example, if you
submitted on 10/14, and your original score is 80, then your final score will be 80*0.93
=58.32
for 14-11=3 days of late submission. If you submit to Canvas after 10/16 11:59pm (i.e., after we
release the solution), then you will earn no score for the homework.
General Instructions
Submission instructions: These questions require thought but do not require long answers.
Please be as concise as possible. You should submit your answers as a writeup in PDF format,
for those questions that require coding, write your code for a question in a single source code
file, and name the file as the question number (e.g., question_1.java or question_1.py), finally,
put your PDF answer file and all the code files in a folder named as your Name and NetID (i.e.,
Firstname-Lastname-NetID.pdf), compress the folder as a zip file (e.g., Firstname-LastnameNetID.zip),
and submit the zip file via Canvas.
For the answer writeup PDF file, we have provided both a word template and a latex template
for you, after you finished the writing, save the file as a PDF file, and submit both the original
file (word or latex) and the PDF file.
Questions
1. Map-Reduce (35 pts)
Write a MapReduce program in Hadoop that implements a simple “People You Might Know”
social network friendship recommendation algorithm. The key idea is that if two people have a
lot of mutual friends, then the system should recommend that they connect with each other.
Input: Use the provided input file hw1q1.zip.
The input file contains the adjacency list and has multiple lines in the following format:
Here,
is a unique integer ID corresponding to a unique user and
is a commaseparated
list of unique IDs corresponding to the friends of the user with the unique ID
.
Note that the friendships are mutual (i.e., edges are undirected): if A is friend with B, then B is
also friend with A. The data provided is consistent with that rule as there is an explicit entry for
each side of each edge.
Algorithm: Let us use a simple algorithm such that, for each user U, the algorithm recommends
N = 10 users who are not already friends with U, but have the largest number of mutual friends
in common with U.
Output: The output should contain one line per user in the following format:
where
is a unique ID corresponding to a user and
is a commaseparated
list of unique IDs corresponding to the algorithm’s recommendation of people that
might know, ordered by decreasing number of mutual friends. Even if a user has
fewer than 10 second-degree friends, output all of them in decreasing order of the number of
mutual friends. If a user has no friends, you can provide an empty list of recommendations. If
there are multiple users with the same number of mutual friends, ties are broken by ordering
them in a numerically ascending order of their user IDs.
Also, please provide a description of how you are going to use MapReduce jobs to solve this
problem. We only need a very high-level description of your strategy to tackle this problem.
Note: It is possible to solve this question with a single MapReduce job. But if your solution
requires multiple MapReduce jobs, then that is fine too.
What to submit:
(i) The source code as a single source code file named as the question number (e.g.,
question_1.java).
(ii) Include in your writeup a short paragraph describing your algorithm to tackle this problem.
(iii) Include in your writeup the recommendations for the users with following user IDs:
924, 8941, 8942, 9019, 9020, 9021, 9022, 9990, 9992, 9993.
2. Association Rules (35 pts)
Association Rules are frequently used for Market Basket Analysis (MBA) by retailers to
understand the purchase behavior of their customers. This information can be then used for many different purposes such as cross-selling and up-selling of products, sales promotions,
loyalty programs, store design, discount plans and many others.
Evaluation of item sets: Once you have found the frequent itemsets of a dataset, you need to
choose a subset of them as your recommendations. Commonly used metrics for measuring
significance and interest for selecting rules for recommendations are:
2a. Confidence (denoted as conf(A → B)): Confidence is defined as the probability of
occurrence of B in the basket if the basket already contains A:
conf(A → B) = Pr(B|A),
where Pr(B|A) is the conditional probability of finding item set B given that item set A is
present.
2b. Lift (denoted as lift(A → B)): Lift measures how much more “A and B occur together” than
“what would be expected if A and B were statistically independent”:
* and N is the total number of transactions (baskets).
3. Conviction (denoted as conv(A→B)): it compares the “probability that A appears without B if
they were independent” with the “actual frequency of the appearance of A without B”:
(a) [5 pts]
A drawback of using confidence is that it ignores Pr(B). Why is this a drawback? Explain why lift
and conviction do not suffer from this drawback?
(b) [5 pts]
A measure is symmetrical if measure(A → B) = measure(B → A). Which of the measures
presented here are symmetrical? For each measure, please provide either a proof that the
measure is symmetrical, or a counterexample that shows the measure is not symmetrical.
(c) [5 pts]
A measure is desirable if its value is maximal for rules that hold 100% of the time (such rules are
called perfect implications). This makes it easy to identify the best rules. Which of the above
measures have this property? Explain why.
Product Recommendations: The action or practice of selling additional products or services to
existing customers is called cross-selling. Giving product recommendation is one of the
examples of cross-selling that are frequently used by online retailers. One simple method to
give product recommendations is to recommend products that are frequently browsed
together by the customers.
Suppose we want to recommend new products to the customer based on the products they
have already browsed on the online website. Write a program using the A-priori algorithm to
find products which are frequently browsed together. Fix the support to s = 100 (i.e. product
pairs need to occur together at least 100 times to be considered frequent) and find itemsets of
size 2 and 3.
Use the provided browsing behavior dataset browsing.txt. Each line represents a browsing
session of a customer. On each line, each string of 8 characters represents the id of an item
browsed during that session. The items are separated by spaces.
Note: for the following questions (d) and (e), the writeup will require a specific rule ordering
but the program need not sort the output.
(d) [10pts]
Identify pairs of items (X, Y) such that the support of {X, Y} is at least 100. For all such pairs,
compute the confidence scores of the corresponding association rules: X ⇒ Y, Y ⇒ X. Sort the
rules in decreasing order of confidence scores and list the top 5 rules in the writeup. Break ties,
if any, by lexicographically increasing order on the left hand side of the rule.
(e) [10pts]
Identify item triples (X, Y, Z) such that the support of {X, Y, Z} is at least 100. For all such triples,
compute the confidence scores of the corresponding association rules: (X, Y) ⇒ Z, (X, Z) ⇒ Y,
and (Y, Z) ⇒ X. Sort the rules in decreasing order of confidence scores and list the top 5 rules in
the writeup. Order the left-hand-side pair lexicographically and break ties, if any, by
lexicographical order of the first then the second item in the pair.
What to submit:
Include your properly named code file (e.g., question_2.java or question_2.py), and include the
answers to the following questions in your writeup:
(i) Explanation for 2(a).
(ii) Proofs and/or counterexamples for 2(b).
(iii) Explanation for 2(c).
(iv) Top 5 rules with confidence scores for 2(d).
(v) Top 5 rules with confidence scores for 2(e).
3. Locality-Sensitive Hashing (30 pts)
When simulating a random permutation of rows, as described in Sec 3.3.5 of MMDS textbook,
we could save a lot of time if we restricted our attention to a randomly chosen k of the n rows,
rather than hashing all the row numbers. The downside of doing so is that if none of the k rows
contains a 1 in a certain column, then the result of the min-hashing is “don’t know,” i.e., we get
no row number as a min-hash value. It would be a mistake to assume that two columns that
both min-hash to “don’t know” are likely to be similar. However, if the probability of getting
“don’t know” as a min-hash value is small, we can tolerate the situation, and simply ignore such
min-hash values when computing the fraction of min-hashes in which two columns agree.
(a) [10 pts]
Suppose a column has m 1’s and therefore (n-m) 0’s. Prove that the probability we get
“don’t know” as the min-hash value for this column is at most (
+,-
+ )..
(b) [10 pts]
Suppose we want the probability of “don’t know” to be at most ,/0. Assuming n and m are
both very large (but n is much larger than m or k), give a simple approximation to the smallest
value of k that will assure this probability is at most ,/0. Hints: (1) You can use (
+,-
+ ). as the
exact value of the probability of “don’t know.” (2) Remember that for large x, (1 − /
1
)1 ≈ 1/ .
(c) [10 pts]
Note: This question should be considered separate from the previous two parts, in that we are
no longer restricting our attention to a randomly chosen subset of the rows.
When min-hashing, one might expect that we could estimate the Jaccard similarity without
using all possible permutations of rows. For example, we could only allow cyclic permutations
i.e., start at a randomly chosen row r, which becomes the first in the order, followed by rows
r+1, r+2, and so on, down to the last row, and then continuing with the first row, second row,
and so on, down to row r−1. There are only n such permutations if there are n rows. However,
these permutations are not sufficient to estimate the Jaccard similarity correctly.
Give an example of two columns such that the probability (over cyclic permutations only) that
their min-hash values agree is not the same as their Jaccard similarity. In your answer, please
provide (a) an example of a matrix with two columns (let the two columns correspond to sets
denoted by S1 and S2) (b) the Jaccard similarity of S1 and S2, and (c) the probability that a
random cyclic permutation yields the same min-hash value for both S1 and S2.
What to submit:
Include the following in your writeup:
(i) Proof for 3(a)
(ii) Derivation and final answer for 3(b)
(iii) Example for 3(c)
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!