国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

CS439編程代寫、代做Java程序語言
CS439編程代寫、代做Java程序語言

時間:2024-10-13  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



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.** 
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: 
<User><TAB><Friends> 
 Here, <User> is a unique integer ID corresponding to a unique user and <Friends> is a commaseparated
 list of unique IDs corresponding to the friends of the user with the unique ID <User>. 
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: 
 
<User><TAB><Recommendations> 
 
where <User> is a unique ID corresponding to a user and <Recommendations> is a commaseparated
 list of unique IDs corresponding to the algorithm’s recommendation of people that 
<User> 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, **19, **20, **21, **22, 99**, 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   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:FINM8006代寫、代做Python編程設計
  • 下一篇:&#160;ICT50220代做、代寫c++,Java程序設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    久久99精品久久久久久水蜜桃| 国产成人激情视频| 亚洲一区二区三区av无码| 久久九九免费视频| 日韩在线观看网址| 久久久伊人欧美| 97精品国产91久久久久久| 国产九色91| 成人在线国产精品| www.久久草| …久久精品99久久香蕉国产| 91九色国产视频| 99视频国产精品免费观看| 91免费人成网站在线观看18| wwwwww欧美| 国产成人avxxxxx在线看| 91精品国产99| 久久久亚洲精品视频| 久久av综合网| 国产精品免费一区二区三区在线观看 | 国产成人精品a视频一区www| 国产激情一区二区三区在线观看| 久久久爽爽爽美女图片| 日韩在线www| 亚洲 国产 日韩 综合一区| 国产美女精彩久久| 国产精品久久亚洲7777| 蜜桃久久影院| 97激碰免费视频| 久久免费看av| 日韩在线观看免费| 欧美在线亚洲一区| 久操网在线观看| 久久久精品在线观看| 中文字幕欧美日韩一区二区三区| 岛国视频一区免费观看| 免费一区二区三区| 久久国产精品 国产精品| 国产精品久久久久免费a∨| 天天综合五月天| 国产欧美婷婷中文| 久久久91精品国产一区不卡| 亚洲巨乳在线观看| 国产精品自产拍在线观| 久99久在线视频| 日本一区二区不卡高清更新| 久久综合亚洲精品| 日韩一区二区三区高清| 91精品久久久久久久久久久久久久| 蜜月aⅴ免费一区二区三区| 国产乱人伦精品一区二区三区| 国产精品涩涩涩视频网站| 热久久这里只有精品| 日韩在线免费高清视频| 欧美自拍大量在线观看| 久久久国产精品x99av| 欧美精品一区二区三区免费播放| xvideos亚洲| 黄频视频在线观看| 国产精品国产一区二区| www.男人天堂网| 国产精品午夜国产小视频| 精品国产一区二区三区在线观看| 国产日韩精品在线播放| 男人的天堂成人| 欧洲成人在线观看| 久热精品视频在线免费观看| 成人乱人伦精品视频在线观看| 天堂√在线观看一区二区| 精品国产一区久久久| 国产精品综合网站| 日韩在线国产| 欧美猛少妇色xxxxx| 国产精品99蜜臀久久不卡二区| 少妇精品久久久久久久久久| 国产精品日韩一区二区免费视频 | 日本国产欧美一区二区三区| 波霸ol色综合久久| 成人精品久久av网站| 精品99在线视频| 日韩欧美一区二区三区久久婷婷| 欧美久久精品午夜青青大伊人| 日日摸夜夜添一区| 91精品国产成人| 日韩免费观看av| 日本少妇高潮喷水视频| 欧美乱人伦中文字幕在线| 色妞在线综合亚洲欧美| av动漫在线播放| 国产在线欧美日韩| 欧洲成人免费视频| 日韩一级片播放| 中文字幕乱码人妻综合二区三区| 久久久亚洲精品视频| 国产伦视频一区二区三区| 日本高清+成人网在线观看| 一卡二卡三卡视频| 久久av资源网站| 国产精品免费在线| 国产高清在线一区| 成人国产精品av| 黄色片久久久久| 麻豆精品视频| 国产精品一区二| 97久久精品在线| 国产富婆一区二区三区| 国产成人+综合亚洲+天堂| 久久久久中文字幕2018| 国产精品免费成人| 欧美成人一区在线| 国产精品吹潮在线观看| 最新av网址在线观看| 久久久久久12| 久久精彩视频| 国产成人精品免费视频| 久久人人97超碰人人澡爱香蕉| 国产一级做a爰片久久毛片男| 国产在线精品自拍| 成人综合视频在线| 91精品国产高清久久久久久91裸体| 97久久精品视频| 国产mv久久久| 国产成人精品综合久久久| 国产精品美女无圣光视频| 国产精品久久久91| 色综合久久精品亚洲国产 | 91精品国产高清久久久久久91裸体| 久久人人爽爽人人爽人人片av| 国产一区免费在线观看| 国产欧美日韩91| www黄色av| 日韩中文字幕网站| 国产精品久久久久9999| 亚洲一区精品电影| 欧美一级爱爱| 国产精品一区二区三区免费视频| 久久久人人爽| 久久这里有精品视频| 午夜精品一区二区三区av| 青青在线视频观看| av网址在线观看免费| 国产精品网红直播| 亚洲欧洲精品一区| 欧美图片激情小说| 99国产视频在线| 国产精品美女午夜av| 亚洲高清视频一区二区| 国产一区福利视频| 久久久久久久亚洲精品| 精品国产福利| 红桃av在线播放| 久久久久久久国产| 亚洲aa中文字幕| 超碰在线97av| 欧美大片欧美激情性色a∨久久 | 精品视频一区二区三区四区| 国产激情在线看| 亚洲一区 在线播放| 欧美亚洲另类制服自拍| 久久免费一级片| 一区二区视频在线免费| 国模一区二区三区私拍视频| 播播国产欧美激情| 青草青草久热精品视频在线网站| 久久久久久国产精品| 国产欧美日韩综合精品| 国产精品欧美日韩| 男人天堂a在线| 久久成人av网站| 成人免费在线小视频| 久久精品国产成人| 欧美一二三区| 国产精品对白一区二区三区| 青青青在线播放| 久久久久久久久久久福利| 亚洲高清乱码| 久热免费在线观看| 色大师av一区二区三区| 久久久久久美女| 欧美日韩精品免费看| 久久夜精品va视频免费观看| 国产日韩亚洲欧美在线| 精品免费国产| av中文字幕av| 日韩不卡av| 久久精品国产美女| 日本不卡在线观看视频| www国产亚洲精品久久网站| 欧美 日韩 国产 在线观看| 欧美另类99xxxxx| 97精品在线观看| 欧美一级片免费播放| 国产精品视频一区二区三区经 | 色噜噜久久综合伊人一本| 麻豆中文字幕在线观看| 欧美激情第三页| 久久综合毛片| 国产免费黄视频| 亚洲 欧美 日韩 国产综合 在线| 久久久人人爽|