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

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

COMP9727 代做、代寫 Java/Python 程序語言

時間:2024-06-23  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



OMP9727: Recommender Systems

Assignment: Content-Based Movie Recommendation

Due Date:Week 4, Friday, June 21, 5:00 p.m.

Value:30%

This assignment is inspired by a typical application of recommender systems. The task is to

build a content-based “movie recommender” such as might be used by a streaming service (such

as Netflix) or review site (such as IMDb) to give users a personalizedlist of movies that match

their interests. The main learning objective for the assignment is togive a concrete example of

the issues that must be faced when building and evaluating a recommender system in a realistic

context. Note that, while movie recommender systems commonly make use of user ratings, our

scenario is not unrealistic as often all that a movie recommender system has are basic summaries

of the movies and the watch histories of the users.

For this assignment, you will be given a collection of 2000 movies that have been labelled as one

of 8 main genres (topics):animation,comedy,drama,family,horror,romance,sci-fiandthriller.

The movies of each genre are in a separate.tsvfile named for the genre (such asanimation.tsv)

with 7 fields:title,year,genre,director,cast,summaryandcountry.

The assignment is in three parts, corresponding to the components of a content-based recommender

system. The focus throughout is onexplanationof choices andevaluationof the various methods

and models, which involves choosing and justifying appropriate metrics. The whole assignment

will be prepared (and submitted) as a Jupyter notebook, similar to those being used in tutorials,

that contains a mixture of running code and tutorial-style explanation.

Part 1 of the assignment is to examine various supervised machine learning methods using a variety

of features and settings to determine what methods work best for topic (genre) classification in

this domain/dataset. For this purpose, simply concatenate all theinformation for one movie into

a single “document”. You will use Bernoulli Naive Bayes from the tutorial, Multinomial Naive

Bayes from the lecture, and one other machine learning method of your choice from scikit-learn

or another machine learning library, and NLTK for auxiliary functionsif needed.

Part 2 of the assignment is to test a potential recommender system that uses the method for

topic classification chosen in Part 1 by “simulating” a recommender system with a variety of

hypothetical users. This involves evaluating a number of techniques for “matching” user profiles

with movies using the similarity measures mentioned in the lecture. As we do not have real users,

for this part of the assignment, we will simply “invent” some (hopefully typical) users and evaluate

how well the recommender system would work for them, using appropriate metrics. Again you

will need to justify the choice of these metrics and explain how you arrived at your conclusions.

Part 3 of the assignment is to run a very small “user study” which means here findingoneperson,

preferably not someone in the class, to try out your recommendation method and give some

informal comments on the performance of your system from the user point of view. This does

not require any user interface to be built, the user can simply be shown the output (or use) the

Jupyter notebook from Parts 1 and 2. However, you will have to decide how many movies to show

the user at any one time, and how to get feedback from them on which movies they would click on

and which movies match their interests. A simple “talk aloud” protocol is a good idea here (this

is where you ask the user to use your system and say out loud what they are thinking/doing at

the same time – however please do not record the user’s voice – for that we need ethics approval).

Note that standard UNSW late penalties apply.

Assignment

Below are a series of questions to guide you through this assignment. Your answer to each question

should be in a separate clearly labelled section of the Jupyter notebook you submit. Each answer

should contain a mixture of explanation and code. Use comments in the code to explain any code

that you think readers will find unclear. The “readers” here are students similar to yourselves

who know something about machine learning and text classification but who may not be familiar

with the details of the methods.

Part 1. Topic (Genre) Classification

1. (2 marks) There are a few simplifications in the Jupyter notebookin the tutorial: (i) the regex

might remove too many special characters, and (ii) the evaluation isbased on only one training-

test split rather than using cross-validation. Explain how you are going to fix these mistakes and

then highlight any changes to the code in the answers to the next questions.

2. (2 marks) Develop a Multinomial Naive Bayes (MNB) model similar to the Bernoulli Naive

Bayes (BNB) model. Now consider all the steps in text preprocessing used prior to classification

with both BNB and MNB. The aim here is to find preprocessing steps that maximize overall ac-

curacy (under the default settings of the classifiers and usingCountVectorizerwith the standard

settings). Consider the special characters to be removed (and how and when they are removed),

the definition of a “word”, the stopword list (from either NLTK or scikit-learn), lowercasing and

stemming/lemmatization. Summarize the preprocessing steps thatyou think work “best” overall

and do not change this for the rest of the assignment.

3. (2 marks) Compare BNB and MNB models by evaluating them using the full dataset with

cross-validation. Choose appropriate metrics from those in the lecture that focus on the overall

accuracy of classification (i.e. not top-N metrics). Briefly discuss the tradeoffs between the various

metrics and then justify your choice of the main metrics for evaluation, taking into account whether

this dataset is balanced or imbalanced. On this basis, conclude whether either of BNB or MNB is

superior. Justify this conclusion with plots/tables.

4. (2 marks) Consider varying the number of features (words) used by BNB and MNB in the

classification, using thesklearnsetting which limits the number to the top N most frequent

words in the Vectorizer. Compare classification results for variousvalues for N and justify, based

on experimental results, one value for N that works well overall and use this value for the rest

of the assignment. Show plots or tables that support your decision. The emphasis is on clear

presentation of the results so do not print out large tables or too many tables that are difficult to

understand.

5. (5 marks) Choose one other machine learning method, perhaps one mentioned in the lecture.

Summarize this method in a single tutorial-style paragraph and explainwhy you think it is suitable

for topic classification for this dataset (for example, maybe otherpeople have used this method

for a similar problem). Use the implementation of this method from a standard machine learning

library such assklearn(notother people’s code from the Internet) to implement this method on

the news dataset using the same text preprocessing as for BNB and MNB. If the method has any

hyperparameters for tuning, explain how you will select those settings (or use the default settings),

and present a concrete hypothesis for how this method will compare to BNB and MNB.

Conduct experiments (and show the code for these experiments)using cross-validation and com-

ment on whether you confirmed (or not) your hypothesis. Finally, compare this method to BNB

and MNB on the metrics you used in Step 3 and choose one overall “best” method and settings

for topic classification.

Part 2. Recommendation Methods

1. (6 marks) The aim is to use the information retrieval algorithms for “matching” user profiles

to “documents” described in the lecture as a recommendation method. The overall idea is that

the classifier from Part 1 will assign a new movie to one of the 8 genres, and this movie will be

recommended to the user if the tf-idf vector for the movie is similar to the tf-idf vector for the

profile of the user in the predicted genre. The user profile for eachgenre will consist of the words,

or top M words, representing the interests of the user in that genre, computed as a tf-idf vector

across all movies predicted in that genre of interest to the user.

To get started, assume there is “training data” for the user profiles and “test data” for the

recommender defined as follows. There are 250 movies in each file. Suppose that the order in the

file is the time ordering of the movies, and suppose these movies camefrom a series of weeks, with

50 movies from each week. Assume Weeks 1–3 (movies 1–150) form the training data and Week 4

(movies 151–200) are the test data. UseTfidfVectorizeron all documents in the training data

to create a tf-idf matrix that defines a vector for each document(movie) in the training set.

Use these tf-idf values to define auser profile, which consists of a vector for each of the 8 genres.

To do this, for each genre, combine the movies from the training setpredicted to be in that genre

that the user “likes” into one (larger) document, so there will be 8 documents, one for each genre,

and use the vectorizer defined above to define a tf-idf vector foreach such document (genre).

Unfortunately we do not have any real users for our recommender system (because it has not yet

been built!), but we want some idea of how well it would perform. We invent two hypothetical

users, and simulate their use of the system. We specify the interests of each user with a set of

keywords for each genre. These user profiles can be found in the filesuser1.tsvanduser2.tsv

where each line in the file is a genre and (followed by a tab) a list of keywords. All the words are

case insensitive.Important: Although we

know the pairing of the genres and keywords,

all the recommender system “knows” is what movies the user liked in each genre.

Develop user profiles for User 1 and User 2 from the simulated training data (notthe keywords

used to define their interests) by supposing they liked all the moviesfrom Weeks 1–3 that matched

their interests and were predicted to be in the right category, i.e. assume the true genre is not

known, but instead the topic classifier is used to predict the movie genre, and the movie is shown

to the user listed under that genre. Print the top 20 words in their profiles for each of the genres.

Comment if these words seem reasonable.

Define another hypothetical “user” (User 3) by choosing different keywords across a range of

genres (perhaps those that match your interests or those of someone you know), and print the

top 20 keywords in their profile for each of their topics of interest.Comment if these words seem

reasonable.

2. (6 marks) Suppose a user sees N recommended movies and “likes”some of them. Choose and

justify appropriate metrics to evaluate the performance of the recommendation method. Also

choose an appropriate value for N based on how you think the movieswill be presented. Pay

attention to the large variety of movies and the need to obtain useful feedback from the user (i.e.

they must likesomemovies shown to them).

Evaluate the performance of the recommendation method by testing how well the top N movies

that the recommender suggests for Week 4, based on the user profiles, match the interests of each

user. That is, assume that each user likes all and only those movies inthe top N recommendations

that matched their profile for the predicted (not true) genre (where N is your chosen value). State

clearly whether you are showing N movies in total or N movies per genre. As part of the analysis,

consider various values for M, the number of words in the user profile for each genre, compared to

using all words.

Show the metrics for some of the matching algorithms to see which performs better for Users 1,

2 and 3. Explain any differences between the users. On the basis of these results, choose one

algorithm for matching user profiles and movies and explain your decision.

Part 3. User Evaluation

1. (5 marks) Conduct a “user study” of a hypothetical recommender system based on the method

chosen in Part 2. Your evaluation in Part 2 will have included a choice ofthe number N of movies

to show the user at any one time. For simplicity, suppose the user uses your system once per

week. Simulate running the recommender system for 3 weeks and training the model at the end

of Week 3 using interaction data obtained from the user, and testing the recommendations that

would be provided to that user in Week 4.

Choose one friendly “subject” and ask them to view (successively over a period of 4 simulated

weeks) N movies chosen at random for each “week”, for Weeks 1, 2and 3, and then (after training

the model) the recommended movies from Week 4. The subject couldbe someone else from the

course, but preferably is someone without knowledge of recommendation algorithms who will give

useful and unbiased feedback.

To be more precise, the user is shown 3 randomly chosen batches ofN movies, one batch from

Week 1 (N movies from 1–50), one batch from Week 2 (N movies from 51–100), and one batch

from Week 3 (N movies from 101–150), and says which of these they“like”. This gives training

data from which you can then train a recommendation model using the method in Part 2. The

user is then shown a batch ofrecommendedmovies from Week 4 (N movies from 151–200) in rank

order, and metrics are calculated based on which ofthesemovies the user likes. Show all these

metrics in a suitable form (plots or tables).

Ask the subject to talk aloud but make sure you find out which moviesthey are interested in.

Calculate and show the various metrics for the Week 4 recommendedmovies that you would show

using the model developed in Part 2. Explain any differences betweenmetrics calculated in Part 2

and the metrics obtained from the real user. Finally, mention any general user feedback concerning

the quality of the recommendations.

Submission and Assessment

?Please include your name and zid at the start of the notebook.

?Submit your notebook files using the following command:

give cs9727 asst .ipynb

You can check that your submission has been received using the command:

9727 classrun -check asst

?Assessment criteria include the correctness and thoroughness of code and experimental anal-

ysis, clarity and succinctness of explanations, and presentation quality.

Plagiarism

Remember that ALL work submitted for this assignment must be your own work and no sharing

or copying of code or answers is allowed. You may discuss the assignment with other students but

must not collaborate on developing answers to the questions. You may use code from the Internet

only with suitable attribution of the source. You may not use ChatGPT or any similar software to

generate any part of your explanations, evaluations or code. Do not use public code repositories

on sites such as github or file sharing sites such as Google Drive to save any part of your work –

make sure your code repository or cloud storage is private and do not share any links. This also

applies after you have finished the course, as we do not want next year’s students accessing your

solution, and plagiarism penalties can still apply after the course hasfinished.

All submitted assignments will be run through plagiarism detection software to detect similarities

to other submissions, including from past years. You shouldcarefullyread the UNSW policy on

academic integrity and plagiarism (linked from the course web page),noting, in particular, that

collusion(working together on an assignment, or sharing parts of assignment solutions) is a form

of plagiarism.

Finally, do not use any contract cheating “academies” or online “tutoring” services. This counts

as serious misconduct with heavy penalties up to automatic failure ofthe course with 0 marks,

and expulsion from the university for repeat offenders.

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







 

掃一掃在手機打開當前頁
  • 上一篇:菲律賓黑名單多長時間解除?應該如何處理
  • 下一篇:DDES9903 代做、代寫 java/Python 編程設計
  • 無相關信息
    合肥生活資訊

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

    關于我們 | 打賞支持 | 廣告服務 | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

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

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

          欧美日韩久久精品| 激情视频一区| 久久蜜桃精品| 91久久精品久久国产性色也91| 欧美日韩在线视频观看| 欧美在线视频免费播放| 亚洲最新视频在线播放| 狠狠久久综合婷婷不卡| 国产精品无码专区在线观看 | 永久免费毛片在线播放不卡| 欧美日韩在线观看一区二区三区| 久久中文精品| 一本一道久久综合狠狠老精东影业| 亚洲欧美美女| 欧美亚洲成人精品| 亚洲午夜一区二区| 欧美色综合天天久久综合精品| 亚洲人成绝费网站色www| 欧美成人精品| 亚洲欧洲日夜超级视频| 蜜桃av一区二区| 亚洲国产精品成人综合| 欧美成人免费播放| 亚洲黄色免费网站| 欧美国产精品劲爆| 亚洲视频在线视频| 国产精品国产三级国产专播精品人| 亚洲伦伦在线| 欧美亚韩一区| 亚洲永久免费观看| 国产精品丝袜白浆摸在线| 亚洲福利视频一区二区| 国产美女精品人人做人人爽| 国产精品第一区| 国产精品亚洲综合天堂夜夜| 国产精品久久久久久久久动漫| 欧美日韩一区视频| 国产精品国产三级欧美二区| 国产精品一区视频网站| 国产精品一区二区视频| 国产日韩欧美在线播放不卡| 久久精品国产亚洲一区二区三区 | 午夜精品久久久久久| 国产午夜精品一区二区三区视频 | 日韩视频免费观看| 国产精品欧美风情| 久久综合伊人77777蜜臀| 亚洲欧洲一级| 国产伦精品一区二区三区在线观看| 久久精品日韩| 99精品99| 影音先锋成人资源站| 欧美—级a级欧美特级ar全黄| 中国女人久久久| 一区福利视频| 国产精品xxxav免费视频| 久久国产精品99精品国产| 亚洲七七久久综合桃花剧情介绍| 国产精品视频成人| 欧美不卡在线| 欧美一区二区三区免费视频| 亚洲欧洲日韩综合二区| 国产酒店精品激情| 欧美理论电影网| 久久精品在线播放| 亚洲午夜精品久久| 亚洲欧洲三级电影| 韩国av一区二区三区在线观看| 欧美精品乱码久久久久久按摩| 欧美一区二区三区精品| 一本色道综合亚洲| 亚洲伊人网站| 欧美日韩精品是欧美日韩精品| 韩国欧美国产1区| 亚洲伊人伊色伊影伊综合网| 欧美.www| 国产综合色产在线精品| 亚洲欧美久久久| 欧美麻豆久久久久久中文| 国产一区二三区| 午夜精品理论片| 久久久久久久高潮| 亚洲欧美成人一区二区三区| 亚洲精品一区二区网址| 亚洲福利在线视频| 狠狠色噜噜狠狠色综合久 | 乱人伦精品视频在线观看| 欧美与黑人午夜性猛交久久久| 亚洲深夜激情| 亚洲视频精品在线| av成人免费在线| 999亚洲国产精| 亚洲精品影视| 日韩午夜三级在线| 亚洲伦伦在线| 日韩一级免费观看| 亚洲蜜桃精久久久久久久| 亚洲精品乱码久久久久久按摩观 | 韩国av一区二区三区在线观看| 国产农村妇女精品一二区| 国产精品入口夜色视频大尺度| 国产精品wwwwww| 国产精品亚洲网站| 国产欧美一区二区精品忘忧草| 国产伦理一区| 黄网站色欧美视频| 亚洲国产成人av| 日韩视频永久免费观看| 亚洲最新视频在线| 亚洲免费网站| 久久激情中文| 老色批av在线精品| 欧美精品一区二区在线播放| 欧美伦理一区二区| 国产精品久久午夜| 国产午夜精品在线观看| 狠狠久久亚洲欧美专区| 亚洲激情图片小说视频| 99综合在线| 亚洲欧美日韩在线观看a三区| 欧美一区二视频| 麻豆久久婷婷| 欧美日韩三级| 国产一区二三区| 亚洲精品无人区| 亚洲欧美成人在线| 裸体歌舞表演一区二区| 欧美日韩一区精品| 国产一区视频在线观看免费| 亚洲国产日韩一级| 亚洲欧美韩国| 美女尤物久久精品| 国产精品每日更新| 亚洲国产成人av| 午夜国产不卡在线观看视频| 狼人社综合社区| 欧美亚州韩日在线看免费版国语版| 国产日韩成人精品| 亚洲美女电影在线| 欧美亚洲在线| 99精品视频免费在线观看| 亚洲精品久久久久久久久久久| 最新国产拍偷乱拍精品| 日韩视频欧美视频| 亚洲天堂成人在线视频| 亚洲欧美中日韩| 久久久久久久一区| 欧美 日韩 国产 一区| 欧美成人久久| 欧美三级视频在线观看| 国产精品网站在线| 在线播放不卡| 日韩视频免费在线观看| 亚洲视频狠狠| 久久精品99国产精品酒店日本| 久久综合色综合88| 欧美日韩成人在线播放| 国产精品v日韩精品v欧美精品网站| 国产精品毛片a∨一区二区三区|国| 国产精品久久久久久久久久久久久 | 欧美日韩高清一区| 国产精品福利影院| 国产综合色一区二区三区| 亚洲欧洲精品一区二区三区不卡 | 亚洲男人第一网站| 久久久青草青青国产亚洲免观| 欧美黄色一级视频| 国产日韩视频| 亚洲精品久久嫩草网站秘色| 亚洲欧美一级二级三级| 国内外成人在线视频| 一区二区三区欧美视频| 欧美国产乱视频| 亚洲精品国产精品乱码不99| 久久亚洲欧美国产精品乐播| 国产综合在线视频| 久久久久成人精品| 黄网动漫久久久| 久久午夜精品一区二区| 激情综合视频| 模特精品在线| 亚洲国产精品传媒在线观看 | 国产午夜精品久久久久久免费视 | 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久 | 欧美另类99xxxxx| 国外成人性视频| 亚洲主播在线播放| 欧美精品福利在线| 久久久xxx| 狠狠综合久久av一区二区小说| 久久成人18免费观看| 一区国产精品| 欧美激情精品久久久久| 在线一区欧美| 国产精品一区在线播放| 久久精品视频导航| 亚洲激情av在线| 欧美日韩成人综合天天影院| 亚洲午夜久久久久久久久电影网| 国产精品视频内|