Skip to content

Latest commit

 

History

History

project

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Group project

Objectives

The objective of project work is to apply the knowledge gained in the course, in a group setting, to a selected (open) information retrieval problem. Specifically, groups first needed to establish a reasonable baseline, then develop one or multiple advanced methods aiming to improve over the baseline. Using a standard test collection, they had to experimentally compare the baseline and advanced solutions.

Projects

The following projects were available to choose from:

Workflow and rules

  • You'll need to hand in a report using the specified project template. The page limit for the report is 4 A4 pages (in double column format).
  • You'll also need to submit your code and the generated output files so that we can verify your solution and results.
  • There are no restrictions on the programming language, toolkits/libraries used, etc. with the default choice being Python and the packages used in the exercises/assignments.
  • You are free to use any external data collections or resources (e.g., pre-trained embeddings) in addition to the 'official' problem datasets.
  • Some of the problems involve working with large datasets. If you need server access, you'll need to contact the Unix system administrator.
  • While you are expected to work independently as a group, you'll have the possibility to get feedback on your ideas in a regular weekly basis. For each group, there will be a weekly dedicated 15 mins slot to discuss the project with the lecturer and student assistant. Also, there is an internal intermediate deadline for getting feedback on the draft of your report.

Timeline

While the following is merely a recommendation, it may help you to stay on course.

  • Week 1
    • Understand the problem, identify and read related literature (and ideally complete the corresponding sections of the report)
    • Preprocess and index the document collection
    • Implement a baseline method
  • Week 2
    • Run and evaluate the baseline method
    • Implement an advanced method
    • Write up your progress so far and submit the report for feedback
  • Week 3
    • Run and evaluate your advanced method
    • Experiment with additional methods or refinements of your advanced method
    • Finalize your report

Report

  • Use the ACM two-column template for the report.
  • It is highly recommended that you use LaTeX. A template made specifically for the project report is made available on Overleaf.
  • NB: Include the Team ID assigned to you in the report title or subtitle.

Structure

Structure your paper according to the following sections:

  • Introduction - Explain the context of the problem that you are tackling, including references to relevant literature.
  • Problem Statement - Formalize the task (in terms of input and output) and specify important details about the data collection.
  • Baseline Method - Explain what you are taking as your baseline method, as well as why this is a reasonable baseline, and why you are making specific implementation choices.
  • Advanced Method - Explain what you are taking as your advanced method(s), as well as why this is a promising attempt to outperform the baseline method, and why you are making specific implementation choices.
  • Results - With tables and graphs, make a clear, concise, and digestible presentation of the data produced by your experiments. This includes describing the key facts and trend from your results.
  • Discussion and Conclusions - Summarize and discuss different challenges you faced and how you solved those. Include interpretations of the key facts and trends you observed and pointed out in the Results section. Which method performed best, and why? Speculate: What could you have done differently, and what consequences would that have had?

You also need to attach a section on Division of Work During the Project as an appendix, with a short paragraph describing the contributions of each student in the project, and a statement on how you split the task and the workload between team members. This section does not count towards the 4-page limit.

Evaluation

  • Problem understanding (8 points)
    • Demonstrating your understanding of the chosen project, by clearly explaining the problem at hand and the challenges involved.
    • Identifying the main families of approaches developed for the task at hand (i.e., literature review).
  • Baseline method (10 points)
    • Selecting a sensible baseline, implementing and evaluating it using the given benchmark dataset.
  • Advanced method(s) (12 points)
    • Selecting an interesting or performant advanced method or developing a novel approach from scratch, implementing and evaluating it experimentally.
    • Points are awarded for convincing motivation, creativity, overall performance (improvements over the baseline).
  • Report (15 points)
    • Reporting the problem, methods, key decisions, and results in a clear and structured manner.
    • The report should contain sufficient details for one to be able to reproduce the results based on the provided description. It should properly attribute and reference related work as well as use visual tools (such as illustrations, plots and tables) to support and communicate the findings effectively.
  • Code quality (5 points)
    • Producing clearly structured, well-documented, and readable code.