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

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

CS 412代做、代寫Python設計程序

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



CS 412: Spring ’24
Introduction To Data Mining
Assignment 5
(Due Monday, April 29, 23:59)
• The homework is due on Monday, April 29, 2024, at 23:59. Note that this is a hard deadline. We are
using Gradescope for all homework assignments. In case you haven’t already, make sure to join this
course on Gradescope using the code shared on Canvas. Contact the TAs if you face any technical
difficulties while submitting the assignment. Please do NOT email a copy of your solution. We will
NOT accept late submissions (without a reasonable justification).
• Please use Campuswire if you have questions about the homework. Make sure to appropriately tag your
post. Also, scroll through previous posts to make sure that your query was not answered previously.
In case you are sending us an email regarding this Assignment, start the subject with “CS 412 Spring
’24 HW5:” and include all TAs and the Instructor (Jeffrey, Xinyu, Kowshika, Sayar, Ruby).
• Please write your code entirely by yourself. All programming needs to be in Python 3.
• The homework will be graded using Gradescope. You will be able to submit your code as many times
as you want.
• The grade generated by the autograder upon submission will be your final grade for this assignment.
There are no post deadline tests.
• Do NOT add any third-party libraries in your code. Built-in Python libraries are allowed.
• For submitting on Gradescope, you would need to upload a Python file named homework5.py. A
python file named homework5.py containing starter code is available on Canvas.
• You are provided two sample test cases on Canvas, you can try debugging your code with minsup
values of 2 or 3 with the given sample inputs. On Gradescope, your code will be evaluated on these
sample test cases as well as additional test cases. You will get autograder feedback for the sample test
cases but not for the other hidden test cases.
• Late submission policy: there will be a 24-hour grace period without any grade reduction, i.e., Gradescope will accept late submissions until Tuesday, April 30, 2024, at 23:59.. Unfortunately, we will
NOT accept late submissions past the grace period (without a reasonable justification).
1
Problem Description
The focus of the programming assignment is to implement a frequent itemset mining algorithm based
on Apriori method with pruning. Given a transacion database T DB and a minimum support threshold minsup, the algorithm should simulate the Aprirori method with pruning - returning all the candidate
itemsets and the frequent itemsets at each scan of the algorithm.
We will test your code on relatively small transaction databases (maximum 15 transactions of length 10).
Please make sure the runtime of your code does not exceed 10 seconds for such small databases.
You will not get any credit if your code does not work.
Input Format: The input will be a plain text file with a transaction database, with each line corresponding
to a transaction composed of a string of letters. Each letter in a transaction corresponds to an item. For
example, the transaction database Test-1.txt is as following:
ACD
BCE
ABCE
BE
Your code will take two inputs:
1. Path to a plain text file pointing to the transaction database; and
2. An integer, the minimum support.
2
Output Format: Your code will implement a function called apriori based on Apriori algorithm with pruning. It will return a 3-level nested dictionary.
Figure 1: Simulation of Test-1.txt
Figure 1 shows the simulation of the Apriori algorithm with pruning for an example. The expected
output (3-level nested dictionary to be returned from the apriori function of your code) is shown in Figure
2.
Output dictionary structure
Let’s consider the 3 levels of the dictionary as outer, middle, and inner levels. The keys of the outer
level will denote the scans (or iterations) of the algorithm. For example, in Figure 1, the algorithm terminates after 3 scans and so in the dictionary of Figure 2, we have 3 elements in the outer dictionary, where the
keys of these 3 elements are integers 1, 2, and 3 denoting the first, second and third scans of the algorithm,
respectively. The scan numbers must start from 1 and should of integer data type.
Value of each scan no.(i.e., each key in the outer layer) is a dictionary, which are the middle layer dictionaries. In Figure 1, the algorithm generates the candidate itemsets and the frequent itemsets in each scan.
So each middle dictionary will have two elements - the key c denoting the candidate itemsets and the key f
denoting the frequent itemsets. The data type of keys c and f should be string.
Value for the keys c and f will be dictionaries - denoting the candidate itemsets and the frequent itemsets
of the corresponding scan. The keys of these dictionaries will be of string data type denoting the itemsets.
The values will be of integer data type denoting the support of the associated itemset.
3
Figure 2: Expected output for Test-1.txt
4
Notes
1. Pruning: While creating the candidate itemsets at every scan, you are supposed to apply pruning.
For example, in Figure 1, at the 2nd scan, merging AC and BC can generate the candidate ABC for
the 3rd scan, but as a subset AB of ABC is absent in the frequent set F2, ABC is pruned and not
included in the candidate set C3. Similarly, the ABC is absent in the corresponding inner dictionary
of Figure 2.
2. Sorting: The alphabets in the strings of the keys of the inner dictionaries should be alphabetically
sorted. For example, BCE should not be any of BEC, CBE, CEB, ECB, EBC.
3. Filename: The submitted file should be named homework5.py, otherwise Gradescope will generate an
error.
4. Terminating: If the frequent itemsets of a scan has only one itemset, the algorithm will terminate
and no further scan will be done. For example, in Figure 1, F3 has only one itemset BCE, so the 4th
scan was not performed.
Also, if the candidate itemsets of a scan is empty, that scan will be discarded and won’t be included in
the output. For example, let’s assume for some input, the frequent itemsets F2 obtained at 2nd scan
are AC, BC. So the candidate itemsets C3 for the 3rd scan will be empty (ABC won’t be in C3 as AB
is absent in F2 and so ABC will be pruned). In this case, the output will not include the 3rd scan as
both C3 and F3 are empty.
5. Error: If you get an error from the autograder that says the code could not be executed properly and
suggests contacting the course staff, please first check carefully if your code is running into an infinite
loop. An infinite loop is the most likely cause of this error.
What you have to submit
You need to submit a Python file named homework5.py. A starter code is posted on Canvas. Implement
the code to compute the required output. You can add as many functions in your code as you need. Your
code should be implemented in Python 3 and do NOT add any third-party packages in your code; you can
use Python’s built-in packages.
Your code must include a function named apriori which takes following two inputs:
1. Transaction database (filename in the starter code): path to a plain text file with the sequence database
as shown in the example above. Each line will have a transaction. Note that there will be an empty
line at the end of the file.
2. Minimum support (minsup in the starter code): an integer indicating the minimum support for the
frequent itemset mining.
A call to the function will be like:
apriori("hw5 sample input 1.txt", 2)
Additional Guidelines
The assignment needs you to both understand algorithms for frequent itemset mining, in particular Apriori
with pruning, as well as being able to implement the algorithm in Python. Here are some guidelines to
consider for the homework:
• Please start early. It is less likely you will be able to do a satisfactory job if you start late.
• It is a good idea to make early progress on the assignment, so you can assess how long it will take: (a)
start working on the assignment as soon as it is posted. Within the first week, you should have a sense
of the parts that will be easier and parts that will need extra effort from you; (b) Solve an example
5
(partly) by hand as a warm-up to get comfortable with the steps that you will have to code. For the
warm-up, you can use the two sample test cases provided on Canvas named hw5 sample input 1.txt and
hw5 sample input 2.txt.

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp
















 

掃一掃在手機打開當前頁
  • 上一篇:COMP1117B代做、代寫Python編程設計
  • 下一篇:COMP1721代寫、代做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在线免费观看
    久久www免费人成精品| 久久久久久久久久久免费精品| 91久久精品www人人做人人爽| 久久久久久国产免费| 在线视频福利一区| 欧美午夜欧美| 国产成人在线亚洲欧美| 亚洲砖区区免费| 国产欧美日韩一区二区三区| 久热国产精品视频| 日本高清+成人网在线观看| 国产中文字幕免费观看| 久久精品国产69国产精品亚洲| 性色av香蕉一区二区| 国产欧美精品久久久| 久久综合久久八八| 免费毛片网站在线观看| 国产精品网站免费| 人妻无码久久一区二区三区免费 | 成人av电影免费| 国产精品成人品| 国产日韩欧美一区二区| 国产精品成人一区二区三区 | 一区不卡字幕| 成人精品在线观看| 亚洲一区中文字幕| 国产乱码精品一区二区三区不卡 | 欧美一区视久久| 久久久精品国产一区二区| 青青青青草视频| 日韩一区av在线| 欧美精品一区二区三区四区五区| 久久久精品久久久| 欧美日韩亚洲一区二区三区在线观看 | 色综合久久悠悠| 国产噜噜噜噜噜久久久久久久久| 久热精品在线视频| 国产欧美精品久久久| 久久久久国色av免费观看性色| 国产美女主播在线| 亚洲中文字幕无码不卡电影| 97人人模人人爽视频一区二区| 亚洲欧美日韩国产成人综合一二三区| 成人av在线不卡| 午夜一区二区三区| 久久99导航| 精品人伦一区二区三区| 欧美精品少妇videofree| 成人一区二区av| 亚洲综合av一区| 久久99中文字幕| 欧美国产二区| 一区二区在线观看网站| 久久人人爽爽人人爽人人片av| 欧美在线中文字幕| 精品综合久久久久久97| 久久久免费看| 热久久视久久精品18亚洲精品| 国产精品久久一区主播| av日韩一区二区三区| 日本午夜精品电影| 国产精品免费在线| 福利视频久久| 日韩精品―中文字幕| 美日韩精品免费视频| 国产成人在线精品| 欧美日韩国产精品一卡| 国产99久久精品一区二区| 久久免费观看视频| 麻豆中文字幕在线观看| 五月婷婷综合色| 国产精品看片资源| 久久综合伊人77777麻豆| 激情视频综合网| 综合一区中文字幕| 日韩在线视频播放| 国产精品一区二区久久| 青青影院一区二区三区四区| 色综合导航网站| 久久久久久久久中文字幕| 国产深夜男女无套内射| 亚洲精品第一区二区三区| 精品国产一区二区三区久久久| 高清欧美精品xxxxx| 欧美在线一区二区视频| 亚洲精品久久区二区三区蜜桃臀| 国产精品免费视频xxxx| 国产福利精品在线| 国产精品一区二区三区免费观看| 欧美在线视频一二三| 亚洲精品一区二区三区av| 国产精品第三页| 国产ts人妖一区二区三区| 国产系列第一页| 人妻av无码专区| 亚洲国产成人不卡| 久热精品视频在线免费观看| 国产成人精品日本亚洲11| 成人久久18免费网站图片| 国内揄拍国内精品少妇国语| 日本精品一区二区三区视频| 亚洲一卡二卡三卡| 欧美成aaa人片在线观看蜜臀| 九色91国产| 69久久夜色精品国产69乱青草| 国产一级黄色录像片| 欧美日韩一区二区三区在线视频 | 日韩在线三区| 一区二区三区电影| 国产精品日韩在线播放| 久久精品午夜一区二区福利| 国产精品一码二码三码在线| 国产在线欧美日韩| 欧美福利一区二区三区| 日韩欧美三级一区二区| 日本一区免费在线观看| 亚州欧美日韩中文视频| 亚洲人成无码www久久久| 亚洲一二三区精品| 尤物国产精品| 亚洲综合视频1区| 中文字幕人成一区| 一区二区三区视频在线播放| 欧美极品欧美精品欧美视频| 国产精品高清在线| 国产精品久久久久久久久久久久久 | 日本成人黄色| 日韩欧美视频第二区| 欧美综合国产精品久久丁香| 欧洲精品视频在线| 欧美日韩二三区| 欧美日韩一区二区三区在线视频| 欧洲精品久久久| 黄色影院一级片| 欧美第一黄网| 国模精品一区二区三区| 国产一级做a爰片久久毛片男| 美乳视频一区二区| 美女被啪啪一区二区| 国产日韩精品一区二区| 国产免费内射又粗又爽密桃视频| 国产欧美最新羞羞视频在线观看| 国产伦精品一区二区三区高清版 | 久久久国产91| 国产精品久久在线观看| 欧美成人中文字幕在线| 欧美日韩高清区| 亚洲一区二区自拍| 欧美一级黄色影院| 日韩免费观看av| 妓院一钑片免看黄大片| 国产精品大全| 一区二区三区欧美成人| 亚洲精品国产suv一区88| 日本一区二区免费高清视频| 热re99久久精品国产99热| 日本不卡在线观看视频| 国内精品久久国产| 韩日午夜在线资源一区二区| 精品无码av无码免费专区| 国产日韩中文在线| 国产亚洲精品自在久久 | 国产精品久久久久久搜索| 99久久免费观看| 国产精品制服诱惑| 成人av一级片| 久久久久久一区| www日韩中文字幕在线看| 精品国产拍在线观看| 欧美激情亚洲视频| 免费在线国产精品| 欧美乱大交xxxxx| 欧美日韩成人在线播放| 日韩免费一级视频| 国产日本在线播放| 久久久人人爽| 精品久久精品久久| 欧美一区视久久| 国模杨依粉嫩蝴蝶150p| 久久久久久久久久久免费| 国产va免费精品高清在线观看| 国产精品视频精品视频| 亚洲综合色激情五月| 欧美图片激情小说| 国产精品一区久久久| 久久国产成人精品国产成人亚洲| 国产精品美腿一区在线看 | 精品蜜桃传媒| 午夜dv内射一区二区| 蜜臀精品一区二区| 国产精品亚洲自拍| 久久av二区| 一区不卡视频| 国内精品在线观看视频| 久久久精品动漫| 欧美成人精品一区二区| 日韩精品手机在线观看| 成人av一级片| 国产精品第一页在线| 日韩精品在线中文字幕 |