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

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

代寫INFS3208、代做Python語言編程
代寫INFS3208、代做Python語言編程

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



School of Information Technology and Electrical Engineering 
INFS**08 – Cloud Computing 
Programming Assignment Task III (10 Marks) 
Task description: 
In this assignment, you are asked to write a piece of Spark code to count occurrences of verbs in the 
UN debates and find the most similar debate contents. The returned result should be the top 10 
verbs that are most frequently used in all debates and the debate that is most similar to the one 
we provide. This assignment is to test your ability to use transformation and action operations in Spark 
RDD programming and your understanding of Vector Database. You will be given three files, 
including a UN General Debates dataset (un-general-debates.csv), a verb list (all_verbs.txt) 
and a verb dictionary file (verb_dict.txt). These source files are expected to be stored in a HDFS. 
You can choose either Scala or Python to complete this assignment in the Jupyter Notebook. There are 
some technical requirements in your code submission as follows: 
 
Objectives: 
1. Read Source Files from HDFS and Create RDDs (1.5 marks): 
• Read the UN General Debates dataset (un-general-debates.csv) from HDFS and 
convert only the “text” column into an RDD. Details of un-general-debates.csv are 
provided in the Preparation section below (1 mark). 
• Read the verb list file (all_verbs.txt) and verb dictionary file (verb_dict.txt) from 
HDFS and load them into separate RDDs (0.5 marks). 
• Note: If you failed to read files from HDFS, you can still read them from the local file 
system in work/nbs/ and complete the following tasks. 
2. Use Learned RDD Operations to Preprocess the Debate Texts (3 marks): 
• Remove empty lines (0.5 marks). 
• Remove punctuations that could attach to the verbs (0.5 marks). 
o E.g., “work,” and “work” will be counted differently, if you DO NOT remove the 
punctuation. 
• Change the capitalization or case of text (0.5 marks). 
o E.g., “WORK”, “Work” and “work” will be counted as three different verbs, if you 
DO NOT make all of them in lower-case. 
• Find all verbs in the RDD by matching the words in the given verb list (all_verbs.txt) 
(0.5 mark). 
• Convert all verbs in different tenses into the simple present tense by looking up the 
verbs in the verb dictionary list (verb_dict.txt) (1 mark). 
o E.g., regular verb: “work” - works”, “worked”, and “working”. 
o E.g., irregular verb: “begin” - “begins”, “began”, and “begun”. o E.g., linking verb “be” and its various forms, including “is”, “am”, “are”, “was”, 
“were”, “being” and “been”. 
o E.g., (work, 100), (works,50), (working,150) should be counted as (work, 300). 
3. Use learned RDD Operations to Count Verb Frequency (3 marks): 
• Count the top 10 frequently used verbs in UN debates (2 marks). 
• Display the results in the format (“verb1”, count1), (“verb2”, count2), … and in a 
descending order of the counts (1 marks). 
4. Use Vector Database (Faiss) to Find the Most Similar Debate (2.5 marks): 
• Convert the original debates into vectors and store them in a proper Index (1.5 mark). 
• Search the debate content that has the most similar idea to “Global climate change is 
both a serious threat to our planet and survival.” (1 mark) 
 
 
Preparation: 
In this individual coding assignment, you will apply your knowledge of Vector Database, Spark, Spark 
RDD Programming and HDFS (in Lectures 7-10). Firstly, you should read Task Description to 
understand what the task is and what the technical requirements include. Secondly, you should review 
the creation and usage of Faiss, transformations and actions in Spark, and usage of HDFS in Lectures 
and Practicals 7-10. In the Appendix, there are some transformation and action operations you could 
use in this assignment. Lastly, you need to write the code (Scala or Python) in the Jupyter Notebook. 
All technical requirements need to be fully met to achieve full marks. You can either practise on 
the GCP’s VM or your local machine with Oracle Virtualbox if you are unable to access GCP. Please 
read the Example of writing Spark code below to have more details. 
 
 
Assignment Submission: 
 You need to compress only the Jupyter Notebook (.ipynb) file. 
 The name of the compressed file should be named “FirstName_LastName_StudentNo.zip”. 
 You must make an online submission to Blackboard before 3:00 PM on Friday, 11/10/2024 
 Only one extension application could be approved due to medical conditions. 
 
 
Main Steps: 
Step 1: 
Log in your VM instance and change to your home directory. We recommend using a VM instance 
with at least 4 vCPUs, 8G memory and 20GB free disk space. 
 
Step 2: 
git clone https://github.com/csenw/cca3.git && cd cca3 
Run these commands to download the required docker-compose.yml file and configuration files. Step 3: 
sudo chmod -R 777 nbs/ 
docker-compose up -d 
Run all the containers using docker-compose 
 
 
 
Step 4: 
Open the Jupyter Notebook (http://external_IP:8888) and you can find all the files under the 
work/nbs/ folder. This is also the folder where you should write the notebook (.ipynb) file. 
 
 Step 5: 
docker ps 
docker exec <container_id> hdfs dfs -put /home/nbs/all_verbs.txt /all_verbs.txt 
docker exec <container_id> hdfs dfs -put /home/nbs/verb_dict.txt /verb_dict.txt 
docker exec <container_id> hdfs dfs -put /home/nbs/un-general-debates.csv /ungeneral-debates.csv

Run the above commands to put the three source files into HDFS. Substitute <container_id> with 
your namenode container ID. After that, you should see the three files from HDFS web interface at 
http://external_IP/explorer.html 
 
 
Step 6: 
The un-general-debates.csv is a dataset that includes the text of each country’s statement from 
the general debate, separated by “country”, “session”, “year” and “text”. This dataset includes over 
forty years of data from different countries, which allows for the exploration of differences between 
countries and over time [1,2]. It is organized in the following format: 
 
In this assignment, we only consider the “text” column. 
The verb_dict.txt file contains different tenses of each verb, separated by commas. The first word 
is the simple present tense of the verb. 
 The all_verbs.txt file contains all the verbs. 
 
 
Step 7: 
Create a Jupyter Notebook to complete the programming objectives. 
We provide some intermediate output samples below. Please note that these outputs are NOT answers 
and may vary from your outputs due to different implementations and different Spark behaviours. 
• Intermediate output sample 1, take only verbs: 
 
 
• Intermediate output sample 2, top 10 verb counts (without converting verb tenses): 
 
 • Intermediate output sample 3, most similar debate: 
 
You are free to use your own implementation. However, your result should reasonably reflect the top 
10 verbs that are most frequently used in UN debates, and the most similar debate contents to the 
sentence “Global climate change is both a serious threat to our planet and survival.” 
 
 
Reference: 
[1] UN General Debates, https://www.kaggle.com/datasets/unitednations/un-general-debates. 
[2] Alexander Baturo, Niheer Dasandi, and Slava Mikhaylov, "Understanding State Preferences With 
Text As Data: Introducing the UN General Debate Corpus". Research & Politics, 2017. 
 
 Appendix: 
Transformations: 
Transformation Meaning 
map(func) Return a new distributed dataset formed by passing each element of the 
source through a function func. 
filter(func) Return a new dataset formed by selecting those elements of the source on 
which funcreturns true. 
flatMap(func) Similar to map, but each input item can be mapped to 0 or more output 
items (so funcshould return a Seq rather than a single item). 
union(otherDataset) Return a new dataset that contains the union of the elements in the source 
dataset and the argument. 
intersection(otherDataset) Return a new RDD that contains the intersection of elements in the source 
dataset and the argument. 
distinct([numPartitions])) Return a new dataset that contains the distinct elements of the source 
dataset. 
groupByKey([numPartitions]) When called on a dataset of (K, V) pairs, returns a dataset of (K, 
Iterable<V>) pairs. 
Note: If you are grouping in order to perform an aggregation (such as a 
sum or average) over each key, using reduceByKey or aggregateByKey will 
yield much better performance. 
Note: By default, the level of parallelism in the output depends on the 
number of partitions of the parent RDD. You can pass an 
optional numPartitions argument to set a different number of tasks. 
reduceByKey(func, 
[numPartitions]) 
When called on a dataset of (K, V) pairs, returns a dataset of (K, V) pairs 
where the values for each key are aggregated using the given reduce 
function func, which must be of type (V,V) => V. Like in groupByKey, the 
number of reduce tasks is configurable through an optional second 
argument. 
sortByKey([ascending], 
[numPartitions]) 
When called on a dataset of (K, V) pairs where K implements Ordered, 
returns a dataset of (K, V) pairs sorted by keys in ascending or descending 
order, as specified in the boolean ascending argument. 
join(otherDataset, 
[numPartitions]) 
When called on datasets of type (K, V) and (K, W), returns a dataset of (K, 
(V, W)) pairs with all pairs of elements for each key. Outer joins are 
supported through leftOuterJoin, rightOuterJoin, and fullOuterJoin. 
 
 Actions: 
Action Meaning 
reduce(func) Aggregate the elements of the dataset using a function func (which takes 
two arguments and returns one). The function should be commutative 
and associative so that it can be computed correctly in parallel. 
collect() Return all the elements of the dataset as an array at the driver program. 
This is usually useful after a filter or other operation that returns a 
sufficiently small subset of the data. 
count() Return the number of elements in the dataset. 
first() Return the first element of the dataset (similar to take(1)). 
take(n) Return an array with the first n elements of the dataset. 
countByKey() Only available on RDDs of type (K, V). Returns a hashmap of (K, Int) pairs 
with the count of each key. 
foreach(func) Run a function func on each element of the dataset. This is usually done 
for side effects such as updating an Accumulator or interacting with 
external storage systems. 
Note: modifying variables other than Accumulators outside of 
the foreach() may result in undefined behavior. See Understanding 
closures for more details. 
 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

掃一掃在手機打開當前頁
  • 上一篇:代寫comp2022、代做c/c++,Python程序設計
  • 下一篇:代做320SC編程、代寫Python設計程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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久久香蕉国产色戒| 欧美黄网在线观看| 欧美激情xxxx| 国产高清精品一区二区| 欧美日本韩国在线| 久久国产色av| 91国产精品视频在线| 欧美牲交a欧美牲交aⅴ免费下载 | 日本免费高清不卡| 国产精品视频永久免费播放| 国产日韩久久| 日韩av123| 免费97视频在线精品国自产拍| 国产在线资源一区| 亚洲人成人77777线观看| 日韩在线小视频| 国产欧美一区二区白浆黑人| 视频一区二区在线| 国产精品九九久久久久久久| 99免费视频观看| 欧美不卡福利| 视频一区二区精品| 久久999免费视频| 国产精品96久久久久久又黄又硬| 亚洲国产精品久久久久婷蜜芽| 国产精品12| 奇米888一区二区三区| 国产成人无码a区在线观看视频| 欧洲成人一区二区| 欧美一级视频免费在线观看| 国产精品 欧美在线| 美女亚洲精品| 亚洲精品乱码久久久久久蜜桃91| 国产精品网站大全| 国产福利视频在线播放| 国产中文字幕91| 奇米精品一区二区三区| 亚洲自拍小视频| 国产精品久久久久久久7电影| 在线不卡日本| 国产在线视频一区| 亚洲一区三区视频在线观看| 久久久久久久久久网| 青草青草久热精品视频在线网站| 国产精品夫妻激情| 91传媒视频免费| 欧美一二三区| 久久久久久国产精品美女| 国产成人高清激情视频在线观看| 欧美性猛交久久久乱大交小说| 精品久久久久久乱码天堂| 91久久久久久久| 欧美 日韩 国产精品| 亚洲字幕一区二区| 久久久www成人免费精品张筱雨 | 国产精品av免费在线观看| 欧美日韩精品免费观看 | 99精品一级欧美片免费播放| 中文字幕黄色大片| 国产精品久久久久久久久久99| 久久久久久久久综合| 久久久水蜜桃| av动漫在线看| 国产一区不卡在线观看| 久久波多野结衣| 色一情一乱一乱一区91| 国产精品久久久久久久小唯西川| 97精品视频在线| 欧美不卡1区2区3区| 亚洲精品一区二区三区樱花| 国产精品国产三级国产专播精品人 | 91高潮精品免费porn| 国产区亚洲区欧美区| 激情五月综合色婷婷一区二区| 日韩毛片在线免费看| 日韩最新中文字幕| 亚洲一区二区三区在线免费观看| 久久久久久国产精品美女| 久久97久久97精品免视看| 国产成人无码一二三区视频| 国产成人激情小视频| 91蜜桃网站免费观看| 97精品国产97久久久久久春色| 国产乱子伦精品无码专区| 精品免费一区二区三区蜜桃| 亚洲精品中文字幕在线| 欧美巨猛xxxx猛交黑人97人| 久久久精品网站| 国产精品69页| www久久99| 国产另类第一区| 国内偷自视频区视频综合| 日本亚洲欧洲精品| 亚洲午夜久久久影院伊人| 国产精品成人v| 日韩中文字幕在线视频| 美女啪啪无遮挡免费久久网站| 久久久国产视频| 国产精品嫩草视频| 欧美精品免费看| 久久精品国产第一区二区三区最新章节 | 国产欧美一区二区三区不卡高清 | 国产va亚洲va在线va| 91精品国产综合久久香蕉的用户体验| 免费av在线一区二区| 欧美一区激情视频在线观看| 日本精品免费视频| 日产国产精品精品a∨| 亚洲国产精品久久久久久女王| 一区二区三区精品国产| 欧美激情网友自拍| 精品国产免费av| 精品中文字幕在线| 欧美激情精品久久久久久大尺度| 免费不卡欧美自拍视频| 国产精品国产精品国产专区不卡| 国产精品久久7| 蜜臀久久99精品久久久无需会员| 欧美日韩国产成人| 在线不卡视频一区二区| 一本大道熟女人妻中文字幕在线| 一区二区在线观看网站| 亚洲一区免费看| 日韩在线xxx| 日韩精品不卡| 精品欧美一区二区三区久久久| 欧美日韩精品免费观看视一区二区| 欧美在线欧美在线| 欧美成人精品欧美一级乱| 狠狠噜天天噜日日噜| 好吊色欧美一区二区三区| 蜜桃久久精品乱码一区二区| 国产日产欧美a一级在线| 丰满少妇久久久| 久久久在线视频| 色av中文字幕一区| 国产精品久久久久秋霞鲁丝| 欧美日韩高清在线观看| 少妇大叫太大太粗太爽了a片小说| 日本久久久久久久久久久| 欧美精品亚洲| 国产女人18毛片| 68精品久久久久久欧美| 日韩在线观看精品| 久久福利网址导航| 一道本在线观看视频| 日本一区二区三区四区视频| 欧美二区在线| 99热久久这里只有精品| 久久久久久亚洲精品不卡4k岛国 | 日本欧美在线视频| 精品999在线观看| 俄罗斯精品一区二区| 久久久久久久激情视频| 欧美精品一区二区免费| 亚洲 国产 欧美一区 | 国产不卡精品视男人的天堂| 国产精品久久久av| 在线免费一区| 日本a视频在线观看| 国产日韩欧美成人| 久久99导航| 欧美日韩福利视频| 人妻有码中文字幕| 成人a在线观看| 色噜噜狠狠色综合网图区| 精品国产av无码一区二区三区| 无码人妻精品一区二区三区66 | 国产精品污www一区二区三区 | 丝袜美腿亚洲一区二区| 在线视频不卡国产| 欧美日韩在线观看一区| 777国产偷窥盗摄精品视频| 久久亚洲欧美日韩精品专区| 日本高清视频一区二区三区| 成人久久一区二区三区| 久久精品国产亚洲精品| 亚洲高清乱码| 国产亚洲一区二区三区在线播放| 久久久久久a亚洲欧洲aⅴ| 精品国产三级a∨在线| 欧美亚洲第一页| 久久免费精品日本久久中文字幕| 国产精品免费视频久久久| 日本福利视频一区| av资源站久久亚洲| 久久亚洲国产精品成人av秋霞| 日本精品中文字幕| 91久久精品视频| 欧美精品久久久久| 蜜桃精品久久久久久久免费影院 | 日本一二三区视频在线|