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

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

COMP3009J代做、代寫Python程序設計

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



COMP3009J – Information Retrieval 
Programming Assignment 
 
This assignment is worth 30% of the final grade for the module. 
Due Date: Friday 31th May 2024 at 23:55 (i.e. end of Week 14) 
 
Before you begin, download and extract the files ``small_corpus.zip’’ and ``large_corpus.zip’’ 
from Brightspace. These contain several files that you will need to complete this assignment. 
The README.md file in each describes the files contained in the archive and their format
1

 
The main objective of the assignment is to create a basic Information Retrieval system that 
can perform preprocessing, indexing, retrieval (using BM25) and evaluation. 
 
The small corpus is intended to show the correctness of your code. The large corpus is 
intended to show the efficiency. Efficiency is only important if the code is firstly correct. 
 
Both corpora are in the same format, except for the relevance judgments. For the small 
corpus, all documents not included in the relevance judgments have been judged nonrelevant.
For the large corpus, documents not included in the relevance judgments have not 
been judged. 
 
For this assignment, you should write several independent programs, each of which is 
contained in one file2. The list of programs is below, with descriptions of each. You may 
choose not to implement all the programs (see the “Grading” section below). However, an A+ 
grade can only be awarded if all these programs have been written correctly and efficiently. 
 
It is ESSENTIAL that all programs can be run as a standalone command-line program, without 
requiring an IDE/environment such as IDLE, PyCharm, Jupyter, etc. 
 
Non-standard libraries (other than the Porter stemmer provided) may not be used. Do not 
use absolute paths (the path to the corpus will always be provided to your program). 
 
What you should submit 
 
Submission of this assignment is through Brightspace. You should submit a single .zip archive 
containing the programs you have written. 
 
1 This is a Markdown file. Although you can open and read it as plain text, proper 
programming editor (e.g. Visual Studio Code) will provide syntax highlighting for better 
readability. 
2 Here, “independent programs” means that they should not import anything from one 
another. If you write a function that is helpful in multiple programs, copy/paste it. This is, of 
course, not good programming practice in terms of reusability of code. However, it helps 
with the grading process. Programs: 
index_small_corpus.py 
 
This program is intended to read the small corpus, process its contents and create an index. 
 
It must be possible to pass the path to the (unzipped) small corpus to this program as a 
command-line argument named “-p”3: 
 
./index_small_corpus.py -p /path/to/comp3009j-corpus-small 
 
This program must perform the following tasks: 
 
1. Extract the documents contained in the corpus provided. You must divide the documents 
into terms in an appropriate way (these are contained in the ``documents’’ directory of the 
corpus. The strategy must be documented in your source code comments. 
 
2. Perform stopword removal. A list of stopwords to use can be loaded from the 
stopwords.txt file that is provided in the ``files’’ directory of the corpus. 
 
3. Perform stemming. For this task, you may use the porter.py code in the ``files’’ 
directory. 
 
4. Create an appropriate index so that IR using the BM25 method may be performed. Here, 
an index is any data structure that is suitable for performing retrieval later. 
 
This will require you to calculate the appropriate weights and do as much pre-calculation as 
you can. This should be stored in a single external file in some human-readable4 format. Do 
not use database systems (e.g. MySQL, SQL Server, SQLite, etc.) for this. 
 
The output of this program should be a single index file, stored in the current working 
directory, named “21888888-small.index” (replacing “21888888” with your UCD 
student number). 
 
 
 
3 This path might, for example be “/Users/david/datasets/comp3009j-corpussmall”
or “C:/Users/datasets/comp3009j-corpus-small”. 
4 Here, “human-readable” means some text-based (i.e. non-binary) format. It should be 
possible to see the contents and the structure of the index using a standard text editor. query_small_corpus.py 
 
This program allows a user to submit queries to retrieve from the small corpus, or to run the 
standard corpus queries so that the system can be evaluated. The BM25 model must be used 
for retrieval. 
 
Every time this program runs, it should first load the index into memory (named “21888888-
small.index” in the current working directory, replacing “21888888” with your UCD student 
number), so that querying can be as fast as possible. 
 
This program should offer two modes, depending on a command-line argument named “-
m”. These are as follows: 
 
1. Interactive mode 
 
In this mode, a user can manually type in queries and see the first 15 results in their 
command line, sorted beginning with the highest similarity score. The output should have 
three columns: the rank, the document’s ID, and the similarity score. A sample run of the 
program is contained later in this document. The user should continue to be prompted to 
enter further queries until they type “QUIT”. 
 
Example output is given below. 
 
Interactive mode is activated by running the program in the following way: 
 
./query_small_corpus.py -m interactive -p /path/to/comp3009j-corpus-small 
 
2. Automatic mode 
 
In this mode, the standard queries should be read from the ``queries.txt’’ file (in the 
``files’’ directory of the corpus). This file has a query on each line, beginning with its 
query ID. The results5 should be stored in a file named “218888880-small.results" 
in the current working directory (replacing “21888888” with your UCD student number), 
which should include four columns: query ID, document ID, rank and similarity score. A 
sample of the desired output can be found in the “sample_output.txt” file in the 
“files” directory in the corpus. 
 
Automatic mode is activated by running the program in the following way: 
 
./query_small_corpus.py -m automatic -p /path/to/comp3009j-corpus-small 
 
 
 
5 You will need to decide how many results to store for each query. evaluate_small_corpus.py 
 
This program calculates suitable evaluation metrics, based on the output of the automatic 
mode of query_small_corpus.py (stored in “218888880-small.results" in the 
current working directory (replacing “21888888” with your UCD student number). 
 
The program should calculate the following metrics, based on the relevance judgments 
contained in the ``qrels.txt’’ file in the ``files’’ directory of the corpus): 
- Precision 
- Recall 
- R-Precision 
- P@15 
- NDCG@15 
- MAP 
 
The program should be run in the following way: 
./evaluate_small_corpus.py -p /path/to/comp3009j-corpus-small 
 index_large_corpus.py 
 
This program should perform the same tasks as index_small_corpus.py, except that the 
output file should be named “21888888-large.index” (replacing “21888888” with your 
UCD student number). 
 
query_large_corpus.py 
 
This program should perform the same tasks as query_small_corpus.py, except that the 
output results file should be named “21888888-large.results” (replacing “21888888” 
with your UCD student number). 
 
evaluate_large_corpus.py 
 
In addition to the evaluation metrics calculated by evaluate_small_corpus.py, this 
program should also calculate bpref (since the large corpus has incomplete relevance 
judgments). 
 
Otherwise, this program should perform the same tasks as evaluate_small_corpus.py, 
except that the input results file should be named “21888888-large.results” (replacing 
“21888888” with your UCD student number). 
 
 Sample Run (Interactive) 
$ ./query_small_corpus.py -m interactive -p /Users/david/comp3009j-corpus-small 
Loading BM25 index from file, please wait. 
Enter query: library information conference 
 
Results for query [library information conference] 
1 928 0.991997 
2 1109 0.984280 
3 1184 0.979530 
4 309 0.96**75 
5 533 0.918940 
6 710 0.912594 
**88 0.894091 
8 1311 0.8**748 
9 960 0.845044 
10 717 0.833753 
11 77 0.829261 
12 1129 0.821643 
13 783 0.817639 
14 1312 0.804034 
15 423 0.795264 
Enter query: QUIT 
Note: In all of these examples, the results, and similarity scores were generated at random for 
illustration purposes, so they are not correct scores. 
Sample Run (Evaluation) 
$ ./evaluate_large_corpus.py -p /Users/david/comp3009j-corpus-large 
 
Evaluation results: 
Precision: 0.138 
Recall: 0.412 
R-precision: 0.345 
P@15: 0.621 
NDCG@15 0.123 
MAP: 0.253 
bpref: 0.345 
 
 Grading 
 
Grading is based on the following (with the given weights)6: 
- Document reading and preprocessing: 15% 
- Indexing: 20% 
- Retrieval with BM25: 20% 
- Evaluation: 15% 
- Efficiency: 15% (as evidenced by the performance on the large corpus) 
- Programming style (comments/organisation): 15% 
 
Other notes 
1. This is an individual assignment. All code submitted must be your own work. Submitting the work 
of somebody else or generated by AI tools such as ChatGPT is plagiarism, which is a serious 
academic offence. Be familiar with the UCD Plagiarism Policy and the UCD School of Computer 
Science Plagiarism Policy. 
2. If you have questions about what is or is not plagiarism, ask! 
 
Document Version History 
v1.0: 2024-04-26, Initial Version. 
 
6This assignment will be graded using the “Alternative Linear Conversion Grade Scale 40% 
Pass” Mark to Grade Conversation Scale: 

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






















 

掃一掃在手機打開當前頁
  • 上一篇: XJCO1921代做、代寫c/c++編程語言
  • 下一篇:菲律賓商務簽證入境稅費 菲律賓商務簽證的辦理材料
  • 無相關信息
    合肥生活資訊

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

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

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

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

          亚洲精品中文字幕在线观看| 欧美精品激情blacked18| 亚洲电影免费观看高清完整版在线| 免费成人在线视频网站| 亚洲性感美女99在线| 韩日欧美一区二区三区| 欧美日韩伦理在线免费| 久久人人爽人人爽爽久久| 亚洲伦理自拍| 国内精品久久久| 国产精品对白刺激久久久| 美日韩精品视频| 欧美怡红院视频| 亚洲视频一二| 一本色道久久综合亚洲91| 伊人久久大香线| 国产女人aaa级久久久级| 欧美精品国产| 欧美成人午夜免费视在线看片| 亚洲欧美电影在线观看| 一本不卡影院| 99热精品在线| 亚洲精品国产系列| 亚洲二区视频在线| 国模吧视频一区| 国产午夜精品久久久| 国产精品www994| 欧美视频一二三区| 欧美午夜视频在线观看| 欧美日本视频在线| 欧美极品一区| 欧美精品国产| 欧美日韩国产天堂| 欧美日韩在线大尺度| 午夜宅男欧美| 国产精品伦一区| 久久男女视频| 久久视频在线看| 久久伊人精品天天| 久久艳片www.17c.com| 久久在线观看视频| 欧美不卡激情三级在线观看| 欧美a级大片| 欧美国产日本| 欧美三级午夜理伦三级中视频| 欧美理论大片| 欧美三级韩国三级日本三斤| 欧美午夜不卡| 国产欧美日韩另类视频免费观看| 国产精品亚洲综合| 黄色成人在线免费| 亚洲精品视频在线观看网站| 99精品免费| 亚洲欧美视频在线观看视频| 欧美综合二区| 欧美精品三级| 国产精品麻豆va在线播放| 国产亚洲人成a一在线v站| 精品不卡在线| 亚洲一级黄色片| 久久蜜桃精品| 国产精品久久一区二区三区| 国产亚洲综合精品| 亚洲精品在线视频| 性亚洲最疯狂xxxx高清| 免费成人性网站| 国产精品二区二区三区| 一区免费在线| 亚洲天堂男人| 免费看成人av| 国产一区二区久久久| 日韩视频国产视频| 久久gogo国模裸体人体| 欧美日韩美女在线观看| 黄色在线成人| 亚洲欧美高清| 欧美日韩精选| 亚洲人成7777| 久久久伊人欧美| 国产精品无码专区在线观看 | 国产精品萝li| 亚洲人成高清| 久久一区二区三区超碰国产精品| 国产精品热久久久久夜色精品三区| 亚洲国产精品成人va在线观看| 欧美一二三视频| 国产精品免费看片| 亚洲一区二区不卡免费| 欧美日韩1区2区| 亚洲日本成人女熟在线观看| 久久久久久久一区二区三区| 国产亚洲一区二区三区| 一区二区三区国产在线观看| 欧美亚洲自偷自偷| 久久久蜜桃一区二区人| 国产一区二区三区日韩| 亚洲视频免费| 欧美人交a欧美精品| 好吊日精品视频| 欧美一区午夜视频在线观看| 欧美午夜免费影院| 亚洲国产精品成人综合| 欧美在线观看视频一区二区| 欧美日韩一区精品| 亚洲精品欧美精品| 蜜桃久久av| 91久久精品美女| 麻豆成人在线| 在线日韩一区二区| 久久久福利视频| 国内成+人亚洲| 午夜久久福利| 国产综合自拍| 久久香蕉国产线看观看网| 国产一区欧美| 久久久91精品国产一区二区精品| 国产日产欧产精品推荐色 | 欧美一区在线直播| 国产精品三上| 欧美在线视频在线播放完整版免费观看| 国产精品扒开腿爽爽爽视频| 亚洲午夜精品网| 国产亚洲成av人片在线观看桃| 一区二区黄色| 欧美午夜精品久久久久久人妖 | 国产欧美日韩一区二区三区| 日韩手机在线导航| 欧美午夜精品一区| 亚洲欧美日韩电影| 国内精品久久久久久久果冻传媒| 免费视频一区| 99综合在线| 国产精品腿扒开做爽爽爽挤奶网站| 亚洲自拍偷拍色片视频| 国产一区二区在线免费观看 | 欧美日韩大片一区二区三区| 亚洲女同同性videoxma| 国产欧美精品| 欧美gay视频激情| 一区二区三区精品国产| 国产精品乱人伦一区二区| 久久嫩草精品久久久精品| 一本一本a久久| 国产欧美日韩一区二区三区| 美女网站久久| 亚洲欧美日韩综合一区| 在线看国产日韩| 欧美区亚洲区| 欧美成人免费视频| 午夜精品久久久久久久99水蜜桃 | 一区二区电影免费观看| 国产私拍一区| 欧美日韩精品免费观看视频| 久久综合色婷婷| 亚洲图片欧美一区| 精品不卡一区| 国产精品久久久一区二区| 久久综合网hezyo| 日韩一级在线| 影音欧美亚洲| 国产精品日本| 欧美日韩一区二区三区四区五区| 香蕉av777xxx色综合一区| 精品福利电影| 影音先锋在线一区| 国产午夜精品视频| 国产精品久久久久久亚洲调教| 久久中文字幕一区| 欧美一区二区在线免费观看| 性做久久久久久久免费看| 日韩视频永久免费| 亚洲国产精品美女| 在线国产亚洲欧美| 一区二区在线看| 红杏aⅴ成人免费视频| 国产欧美亚洲日本| 国产精品―色哟哟| 欧美日韩一区二区在线| 国产精品二区在线观看| 欧美日韩亚洲天堂| 欧美日韩天堂| 欧美日韩日本国产亚洲在线| 欧美日韩亚洲一区二区三区| 欧美激情中文不卡| 欧美区在线播放| 欧美理论电影在线观看| 国产精品v欧美精品v日韩精品| 欧美高清一区二区| 欧美日本亚洲视频| 欧美日韩在线播放| 国产精品手机视频| 国产精品久久久久久久久久妞妞| 欧美午夜精品电影| 国产精品乱人伦一区二区| 国产精品女人网站| 欧美性大战久久久久久久| 国产色产综合色产在线视频| 国产亚洲aⅴaaaaaa毛片| 国产一区二区三区久久悠悠色av | 欧美激情91|