99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

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編程語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

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

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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                99精品偷自拍| 不卡的电影网站| 欧美日韩精品福利| 婷婷国产在线综合| 欧美国产一区视频在线观看| 久久久久久毛片| 在线观看区一区二| 欧美成人国产一区二区| 欧美高清在线视频| 日本视频在线一区| 成人精品gif动图一区| 91精品国产综合久久精品麻豆 | 9191精品国产综合久久久久久| 欧美肥妇free| 亚洲综合999| 91久久精品网| 久久婷婷一区二区三区| 国产色爱av资源综合区| 日韩免费电影网站| 91精品国产高清一区二区三区蜜臀| 欧美三级三级三级| 欧美妇女性影城| 日韩美女视频一区| 韩国在线一区二区| 欧美日韩国产系列| 欧美va亚洲va在线观看蝴蝶网| 亚洲欧美aⅴ...| 日韩中文字幕av电影| 蜜臀av性久久久久蜜臀aⅴ| 成人黄色777网| 欧美日韩午夜精品| 国内精品久久久久影院薰衣草 | 成人高清伦理免费影院在线观看| 国产亚洲一区二区在线观看| 国产综合久久久久影院| 97国产精品videossex| 国产精品嫩草影院com| 中文字幕一区二区三| 国产精品亚洲人在线观看| 国产亚洲女人久久久久毛片| 国产精品亚洲一区二区三区在线 | 欧美日韩在线亚洲一区蜜芽| 亚洲综合在线第一页| 欧美人与z0zoxxxx视频| 免费看日韩a级影片| 久久久亚洲高清| 国产91综合网| 亚洲综合在线观看视频| 欧美日韩情趣电影| 国产**成人网毛片九色| 国产精品福利一区二区三区| 欧美三级电影网| 六月婷婷色综合| 一区二区三区波多野结衣在线观看| 欧美日韩亚洲综合在线 | 欧美色图一区二区三区| 免费观看在线色综合| 一区二区三区中文字幕| 精品福利一二区| 国产女人水真多18毛片18精品视频| 精品国产乱子伦一区| 26uuu欧美| 久久免费国产精品| 国产精品污www在线观看| 欧美激情一区二区| 中文字幕一区二区三区精华液 | 奇米888四色在线精品| 这里只有精品99re| 天天操天天色综合| 国产欧美日韩卡一| 欧美日韩卡一卡二| 青青草原综合久久大伊人精品| 精品视频一区 二区 三区| 麻豆成人久久精品二区三区红| 国产精品二三区| 欧美午夜精品免费| 蜜桃久久久久久| 懂色av一区二区三区免费观看| 欧美一级搡bbbb搡bbbb| 中文字幕一区视频| 国产麻豆日韩欧美久久| 欧美精品自拍偷拍动漫精品| 1024国产精品| 国产很黄免费观看久久| 精品美女在线观看| 美女视频黄免费的久久| 欧美日韩一区二区三区在线看| 一区二区三区国产| 色婷婷av久久久久久久| 亚洲色欲色欲www| 色综合久久中文字幕综合网| 国产精品久久99| 91亚洲男人天堂| 亚洲色图欧美在线| 欧美视频一区在线| 午夜精品福利久久久| 欧美福利视频一区| 久久精品噜噜噜成人88aⅴ| 日韩一区二区三区三四区视频在线观看| 日韩精品一二三区| 欧美xxx久久| 国产成人av电影在线| 中文字幕在线一区免费| 色综合欧美在线视频区| 亚洲成人av免费| 日韩美女在线视频| 国产精品一二三在| 1区2区3区国产精品| 欧美日韩视频在线第一区| 日本不卡的三区四区五区| 精品国产免费久久| av亚洲精华国产精华| 亚洲综合免费观看高清完整版在线 | 91精品国产综合久久国产大片| 日韩精品一二三区| 久久久美女艺术照精彩视频福利播放| 国产成人免费视频网站| 一区二区三区不卡视频在线观看| 欧美一级片免费看| 从欧美一区二区三区| 亚洲高清视频在线| 国产欧美日韩另类视频免费观看| 91国产丝袜在线播放| 蜜桃av噜噜一区二区三区小说| 国产精品色一区二区三区| 欧美精品vⅰdeose4hd| 成人的网站免费观看| 日本欧美一区二区| 亚洲日本丝袜连裤袜办公室| 日韩女优视频免费观看| 欧美午夜精品一区| av在线不卡电影| 九九九精品视频| 亚洲国产人成综合网站| 国产区在线观看成人精品| 欧美日韩二区三区| av不卡免费电影| 国产美女视频91| 天天综合日日夜夜精品| 国产精品乱码久久久久久| 91精品国产乱| 欧美三级三级三级| 91蝌蚪国产九色| 国产一区高清在线| 美女视频网站黄色亚洲| 一区二区三区欧美日韩| 国产亚洲欧美日韩在线一区| 欧美日韩精品一区视频| 99精品热视频| 国产成都精品91一区二区三| 美腿丝袜在线亚洲一区| 天天影视涩香欲综合网| 亚洲一区二区成人在线观看| 国产亚洲精品aa午夜观看| 日韩一区二区三区四区| 91麻豆精品国产91久久久资源速度 | 国产精品久久久久国产精品日日| 久久精品在线免费观看| 日韩欧美综合在线| 欧美在线999| 欧美影片第一页| 欧美三级中文字| 欧美人妖巨大在线| 欧美日韩国产不卡| 欧美日韩激情一区| 欧美日本国产视频| 日韩亚洲电影在线| 欧美大黄免费观看| 久久综合久久综合久久| 久久欧美一区二区| 国产欧美日韩三区| 国产精品成人一区二区艾草| 国产精品美女久久久久久久久久久 | 久久久91精品国产一区二区精品| 久久嫩草精品久久久久| 欧美va亚洲va| 欧美极品少妇xxxxⅹ高跟鞋| 国产欧美一区二区精品久导航 | 亚洲精品一二三| 一区二区在线看| 亚洲午夜三级在线| 日本美女视频一区二区| 毛片一区二区三区| 开心九九激情九九欧美日韩精美视频电影| 免费精品视频在线| 国产经典欧美精品| av资源网一区| 欧美理论在线播放| 26uuu亚洲综合色欧美| 国产欧美久久久精品影院| √…a在线天堂一区| 亚洲伦理在线精品| 亚洲国产精品久久人人爱| 久久99国产精品久久99| 97精品电影院| 欧美一区二区免费视频| 国产精品久久夜| 丝袜美腿亚洲一区二区图片| 成人精品一区二区三区中文字幕| 欧美无人高清视频在线观看|