+ All Categories
Home > Documents > Performance Evaluation of Information Retrieval Systems

Performance Evaluation of Information Retrieval Systems

Date post: 20-Jan-2016
Category:
Upload: meira
View: 38 times
Download: 2 times
Share this document with a friend
Description:
Performance Evaluation of Information Retrieval Systems. Many slides in this section are adapted from Prof. Joydeep Ghosh (UT ECE) who in turn adapted them from Prof. Dik Lee (Univ. of Science and Tech, Hong Kong). Why System Evaluation?. - PowerPoint PPT Presentation
Popular Tags:
62
1 Performance Evaluation of Information Retrieval Systems Many slides in this section are adapted from Prof. Joydeep Ghosh (UT ECE) who in turn adapted them from Prof. Dik Lee (Univ. of Science and Tech, Hong Kong)
Transcript
Page 1: Performance Evaluation of Information Retrieval Systems

1

Performance Evaluationof Information Retrieval Systems

Many slides in this section are adapted from Prof. Joydeep Ghosh (UT ECE) who in turn adapted them from Prof. Dik Lee (Univ. of Science and Tech, Hong Kong)

Page 2: Performance Evaluation of Information Retrieval Systems

2

Why System Evaluation?

• There are many retrieval models/ algorithms/ systems, which one is the best?

• What is the best component for:– Ranking function (dot-product, cosine, …)– Term selection (stopword removal, stemming…)– Term weighting (TF, TF-IDF,…)

• How far down the ranked list will a user need to look to find some/all relevant documents?

Page 3: Performance Evaluation of Information Retrieval Systems

3

Difficulties in Evaluating IR Systems

• Effectiveness is related to the relevancy of retrieved items.

• Relevancy is not typically binary but continuous.• Even if relevancy is binary, it can be a difficult

judgment to make.• Relevancy, from a human standpoint, is:

– Subjective: Depends upon a specific user’s judgment.– Situational: Relates to user’s current needs.– Cognitive: Depends on human perception and behavior.– Dynamic: Changes over time.

Page 4: Performance Evaluation of Information Retrieval Systems

4

Human Labeled Corpora (Gold Standard)

• Start with a corpus of documents.• Collect a set of queries for this corpus.• Have one or more human experts

exhaustively label the relevant documents for each query.

• Typically assumes binary relevance judgments.

• Requires considerable human effort for large document/query corpora.

Page 5: Performance Evaluation of Information Retrieval Systems

5

documents relevant of number Total

retrieved documents relevant of Number recall

retrieved documents of number Total

retrieved documents relevant of Number precision

Relevant documents

Retrieved documents

Entire document collection

retrieved & relevant

not retrieved but relevant

retrieved & irrelevant

Not retrieved & irrelevant

retrieved not retrieved

rele

vant

irre

leva

nt

Precision and Recall

Page 6: Performance Evaluation of Information Retrieval Systems

6

Precision and Recall

• Precision– The ability to retrieve top-ranked documents

that are mostly relevant.

• Recall– The ability of the search to find all of the

relevant items in the corpus.

Page 7: Performance Evaluation of Information Retrieval Systems

7

Determining Recall is Difficult

• Total number of relevant items is sometimes not available:– Sample across the database and perform

relevance judgment on these items.– Apply different retrieval algorithms to the same

database for the same query. The aggregate of relevant items is taken as the total relevant set.

Page 8: Performance Evaluation of Information Retrieval Systems

8

Trade-off between Recall and Precision

10

1

Recall

Pre

cisi

on

The idealReturns relevant documents butmisses many useful ones too

Returns most relevantdocuments but includes lots of junk

Page 9: Performance Evaluation of Information Retrieval Systems

9

Computing Recall/Precision Points

• For a given query, produce the ranked list of retrievals.

• Adjusting a threshold on this ranked list produces different sets of retrieved documents, and therefore different recall/precision measures.

• Mark each document in the ranked list that is relevant according to the gold standard.

• Compute a recall/precision pair for each position in the ranked list that contains a relevant document.

Page 10: Performance Evaluation of Information Retrieval Systems

10

R=3/6=0.5; P=3/4=0.75

Computing Recall/Precision Points: An Example

n doc # relevant

1 588 x2 589 x3 5764 590 x5 9866 592 x7 9848 9889 57810 98511 10312 59113 772 x14 990

Let total # of relevant docs = 6Check each new recall point:

R=1/6=0.167; P=1/1=1

R=2/6=0.333; P=2/2=1

R=5/6=0.833; p=5/13=0.38

R=4/6=0.667; P=4/6=0.667

Missing one relevant document.

Never reach 100% recall

Page 11: Performance Evaluation of Information Retrieval Systems

11

Interpolating a Recall/Precision Curve

• Interpolate a precision value for each standard recall level:– rj {0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0}

– r0 = 0.0, r1 = 0.1, …, r10=1.0

• The interpolated precision at the j-th standard recall level is the maximum known precision at any recall level between the j-th and (j + 1)-th level:

)(max)(1

rPrPjj rrr

j

Page 12: Performance Evaluation of Information Retrieval Systems

12

Interpolating a Recall/Precision Curve:An Example

0.4 0.8

1.0

0.8

0.6

0.4

0.2

0.2 1.00.6 Recall

Prec

isio

n

Page 13: Performance Evaluation of Information Retrieval Systems

13

Average Recall/Precision Curve

• Typically average performance over a large set of queries.

• Compute average precision at each standard recall level across all queries.

• Plot average precision/recall curves to evaluate overall system performance on a document/query corpus.

Page 14: Performance Evaluation of Information Retrieval Systems

14

Compare Two or More Systems

• The curve closest to the upper right-hand corner of the graph indicates the best performance

0

0.2

0.4

0.6

0.8

1

0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1

Recall

Precision

NoStem Stem

Page 15: Performance Evaluation of Information Retrieval Systems

15

Sample RP Curve for CF Corpus

Page 16: Performance Evaluation of Information Retrieval Systems

16

Problems with Recall/Precision

• Recall/Precision and its related measures need a pair of numbers, not very intuitive

• Single-value measures– R-precision– F-measure– E-measure– Fallout rate– ESL– ASL

Page 17: Performance Evaluation of Information Retrieval Systems

17

R- Precision

• Precision at the R-th position in the ranking of results for a query that has R relevant documents.

n doc # relevant

1 588 x2 589 x3 5764 590 x5 9866 592 x7 9848 9889 57810 98511 10312 59113 772 x14 990

R = # of relevant docs = 6

R-Precision = 4/6 = 0.67

Page 18: Performance Evaluation of Information Retrieval Systems

18

F-Measure

• One measure of performance that takes into account both recall and precision.

• Harmonic mean of recall and precision:

• Compared to arithmetic mean, both need to be high for harmonic mean to be high.

PRRP

PRF 11

22

Page 19: Performance Evaluation of Information Retrieval Systems

19

E Measure (parameterized F Measure)

• A variant of F measure that allows weighting emphasis on precision over recall:

• Value of controls trade-off: = 1: Equally weight precision and recall (E=F). > 1: Weight precision more. < 1: Weight recall more.

PRRP

PRE

1

2

2

2

2

)1()1(

Page 20: Performance Evaluation of Information Retrieval Systems

20

Fallout Rate

• Problems with both precision and recall:– Number of irrelevant documents in the

collection is not taken into account.– Recall is undefined when there is no

relevant document in the collection.– Precision is undefined when no document is

retrieved.

collection the in items tnonrelevan of no. totalretrieved items tnonrelevan of no.

Fallout

Page 21: Performance Evaluation of Information Retrieval Systems

21

Other Measures

• Expected Search Length: [Cooper 1968] average number of documents that must be examined to retrieve a given number i of relevant documents

– N: maximum number of relevant documents

– ei: expected search length for i

N

i

N

i

i

i

eiESL

1

1

*

Page 22: Performance Evaluation of Information Retrieval Systems

22

Five Types of ESL

• Type 1: A user may just want the answer to a very specific factual question or a single statistics. Only one relevant document is needed to satisfy the search request.

• Type 2: A user may actually want only a fixed number, for example, six of relevant documents to a query.

• Type 3: A user may wish to see all documents relevant to the topic.

• Type 4: A user may want to sample a subject area as in 2, but wish to specify the ideal size for the sample as some proportion, say one-tenth, of the relevant documents.

• Type 5: A user may wish to read all relevant documents in case there should be less than five, and exactly five in case there exist more than five.

Page 23: Performance Evaluation of Information Retrieval Systems

23

Other Measures (cont.)

• Average Search Length: [Losee 1998] expected position of a relevant document in the ordered list of all documents

– N: total number of documents

– Q: probability that the ranking is optimal (perfect)

– A: expected proportion of all documents examined in order to reach the average position of a relevant document in an optimal ranking

)]1)(1([ AQQANASL

Page 24: Performance Evaluation of Information Retrieval Systems

24

Problems

• While they are single value measurements (F-measure, E-measure, ESL, ASL)– They are not easy to measure (compute)– Or they are not intuitive– Or the data required for the measure are

typically not available (e.g. ASL)– They don’t work well in web search

environment

Page 25: Performance Evaluation of Information Retrieval Systems

25

RankPower

• We propose a single, effective measure for interactive information search systems such as the web.

• Take into consideration both the placement of the relevant documents and the number of relevant documents in a set of retrieved documents for a given query.

Page 26: Performance Evaluation of Information Retrieval Systems

26

RankPower (cont.)

• Some definitions– For a given query, N

documents are returned

– Among the returned documents, RN are relevant documents, |RN| = CN < N

– Each of the relevant document in RN is placed at Li

– Average rank of returned relevant documents Ravg(N)

N

C

i

i

avgC

LNR

N

1)(

Page 27: Performance Evaluation of Information Retrieval Systems

27

RankPower (cont.)

• Some properties– A function of two variables, individual ranks of relevant

documents, and the number of relevant documents

– For a fixed CN, the more documents listed earlier, the more favorite the value is (smaller values are favored).

– If the size of returned documents N increases and the number of relevant documents in N also increases, the average rank increases (unbounded).

– In the idea case where every single returned document is relevant, the average rank is simply (N+1)/2

Page 28: Performance Evaluation of Information Retrieval Systems

28

RankPower (cont.)

• RankPower definition

21)(

)(N

C

i

i

N

avg

C

L

C

NRNRankPower

N

Page 29: Performance Evaluation of Information Retrieval Systems

29

RankPower (cont.)

• RankPower properties– It is a decreasing function of N since the rate of

increase of the denominator (CN2) is faster than the

numerator– It is bounded below by ½ so the measure can be

used as a benchmark to compare different systems– It weighs the placement very heavily (see an

example for explanation later), the ones placed earlier in the list are much favored.

– If two sets of returned documents have the same average rank, the one with more document is favored.

Page 30: Performance Evaluation of Information Retrieval Systems

30

Examples

• Compare two systems each of which returns a list of 10 documents.

• System A has two relevant documents listed as 1st and 2nd, with a RankPower of 0.75.

• Let’s examine some scenario in which system B can match or surpass system A.– If system B returns 3 relevant documents, unless two of

the three are listed 1st and 2nd, it is less favored than A since the two best cases (1+3+4)/32=0.89 and (2+3+4)/32=1 which are greater than that of A (0.75).

– System B needs to have 6 relevant documents in its top-10 list to beat A if it doesn’t capture 1st and 2nd places.

Page 31: Performance Evaluation of Information Retrieval Systems

31

Examples (cont.)

• The measure (RankPower) is tested in a real web search environment.

• We compare the results of sending 72 queries to AltaVista and MARS (one of our intelligent web search projects), limiting to the first 20 returned results.

Ravg CN RankPower

MARS 6.59 9.33 0.71

AltaVista 10.24 8.50 1.21

Page 32: Performance Evaluation of Information Retrieval Systems

32

RankPower– A Variation

21

)()(

N

N

ii

N

avg

C

S

C

NRNRankPower

NNRP 5.0)(

NN C

ii

NNC

ii

NN

S

CC

S

CC

NltRankPowerA

11

2

)1(2)1(

)(

Ravg(N) : average rank of relevant docs among N retrieved docs

CN: count of relevant docs among N retrieved docs

Si: position of the ith relevant document

NNRPAlt 0)(1

Page 33: Performance Evaluation of Information Retrieval Systems

33

Experiments Settings

• A set of 72 randomly selected queries were sent to AltaVista and MARS.

• Each of the first 200 returned URLs is examined manually to determine if the returned URL is relevant to the query.

• Measures of precision/recall, ESL, ASL, and RankPower are computed and compared to see the effectiveness of the measure.

Page 34: Performance Evaluation of Information Retrieval Systems

34

R/P 0.00 0.10 0.20 0.30 0.40 0.50 0.60 0.70 0.80 0.90 1.00 sum avg

0.00 4 0 0 0 0 0 0 0 0 0 0 4 0.00

0.10 0 2 1 1 3 0 0 1 1 1 1 11 0.48

0.20 0 6 4 1 1 4 2 5 0 3 4 30 0.52

0.30 0 0 1 2 8 4 1 1 0 0 0 17 0.43

0.40 0 1 0 0 2 1 0 0 1 1 0 6 0.52

0.50 0 0 0 0 0 0 1 0 0 0 0 1 0.60

0.60 0 0 0 0 0 0 0 0 0 0 0 0 0.00

0.70 0 1 0 1 0 0 0 0 0 0 0 2 0.20

0.80 0 0 0 0 0 0 0 0 0 0 0 0 0.00

0.90 0 0 0 0 0 0 0 0 0 0 0 0 0.00

1.00 0 1 0 0 0 0 0 0 0 0 0 1 0.10

sum 4 11 6 5 14 9 4 7 2 5 5 72

avg 0.00 0.32 0.20 0.32 0.26 0.27 0.30 0.20 0.25 0.22 0.18

Table 1. Precision and Recall at the First 20 Results from AltaVista Averaged Over 72 Queries

Page 35: Performance Evaluation of Information Retrieval Systems

35

R/P 0.00 0.10 0.20 0.30 0.40 0.50 0.60 0.70 0.80 0.90 1.00 sum avg

0.00 0 0 0 0 0 0 0 0 0 0 0 0 0.00

0.10 0 1 0 0 0 0 1 0 1 3 1 7 0.740.20 0 1 5 4 3 5 4 3 4 3 2 34 0.540.30 0 0 3 3 6 3 2 1 0 0 0 18 0.41

0.40 0 1 0 0 0 2 1 0 1 0 0 5 0.50

0.50 0 0 1 0 0 1 0 0 0 0 0 2 0.35

0.60 0 0 2 0 0 0 0 0 0 0 0 2 0.20

0.70 0 1 0 0 0 0 0 0 0 0 0 1 0.10

0.80 0 0 0 1 0 0 0 0 0 0 0 1 0.30

0.90 0 0 0 0 0 0 0 0 0 0 0 0 0.00

1.00 0 1 0 1 0 0 0 0 0 0 0 2 0.20

sum 0 5 11 9 9 11 8 4 6 6 3 72

avg 0.00 0.48 0.33 0.39 0.27 0.29 0.24 0.23 0.22 0.15 0.17

Table 2. Precision and Recall at the First 20 Results from MARS Averaged Over 72 Queries

Page 36: Performance Evaluation of Information Retrieval Systems

36

AV MARS

ESL

Type 1 3.78 0.014

Type 2 32.7 25.7

Type 3 124 113

Type 4 7.56 0.708

Type 5 25.7 17.3

ASLMeasured 82.2 77.6

Estimate 29.8 29.8

RankPower 3.29 2.53

Revised Rank Power 0.34 0.36

Table 3: Sing-value Measures of Performance for AltaVista and MARSAveraged Over 72 Queries

Page 37: Performance Evaluation of Information Retrieval Systems

37

AV MARS

Rel. Doc. Cnt. 8.38 9.33

Avg. Prec. At Seen Rel. Doc. 0.529 0.897

Avg. Rel. Doc. Cnt. At R 35.9 34.6

R-Precision 0.403 0.448

Table 4: Sing-value Measures of Performance for AltaVista and MARSAveraged Over 72 Queries (continue)

Page 38: Performance Evaluation of Information Retrieval Systems

38

Subjective Relevance Measure

• Novelty Ratio: The proportion of items retrieved and judged relevant by the user and of which they were previously unaware.– Ability to find new information on a topic.

• Coverage Ratio: The proportion of relevant items retrieved out of the total relevant documents known to a user prior to the search.– Relevant when the user wants to locate documents

which they have seen before (e.g., the budget report for Year 2000).

Page 39: Performance Evaluation of Information Retrieval Systems

39

Other Factors to Consider

• User effort: Work required from the user in formulating queries, conducting the search, and screening the output.

• Response time: Time interval between receipt of a user query and the presentation of system responses.

• Form of presentation: Influence of search output format on the user’s ability to utilize the retrieved materials.

• Collection coverage: Extent to which any/all relevant items are included in the document corpus.

Page 40: Performance Evaluation of Information Retrieval Systems

40

Experimental Setup for Benchmarking

• Analytical performance evaluation is difficult for document retrieval systems because many characteristics such as relevance, distribution of words, etc., are difficult to describe with mathematical precision.

• Performance is measured by benchmarking. That is, the retrieval effectiveness of a system is evaluated on a given set of documents, queries, and relevance judgments.

• Performance data is valid only for the environment under which the system is evaluated.

Page 41: Performance Evaluation of Information Retrieval Systems

41

Benchmarks

• A benchmark collection contains:– A set of standard documents and queries/topics.

– A list of relevant documents for each query.

• Standard collections for traditional IR:– Smart collection: ftp://ftp.cs.cornell.edu/pub/smart

– TREC: http://trec.nist.gov/

Standard document collection

Standard queries

Algorithm under test Evaluation

Standard result

Retrieved result

Precision and recall

Page 42: Performance Evaluation of Information Retrieval Systems

42

Benchmarking The Problems

• Performance data is valid only for a particular benchmark.

• Building a benchmark corpus is a difficult task.

• Benchmark web corpora are just starting to be developed.

• Benchmark foreign-language corpora are just starting to be developed.

Page 43: Performance Evaluation of Information Retrieval Systems

43

• Previous experiments were based on the SMART collection which is fairly small. (ftp://ftp.cs.cornell.edu/pub/smart)

Collection Number Of Number Of Raw Size Name Documents Queries (Mbytes) CACM 3,204 64 1.5 CISI 1,460 112 1.3 CRAN 1,400 225 1.6 MED 1,033 30 1.1 TIME 425 83 1.5

• Different researchers used different test collections and evaluation techniques.

Early Test Collections

Page 44: Performance Evaluation of Information Retrieval Systems

44

The TREC Benchmark • TREC: Text REtrieval Conference (http://trec.nist.gov/) Originated from the TIPSTER program sponsored by Defense Advanced Research Projects Agency (DARPA).

• Became an annual conference in 1992, co-sponsored by the National Institute of Standards and Technology (NIST) and DARPA.

• Participants are given parts of a standard set of documents and TOPICS (from which queries have to be derived) in different stages for training and testing.

• Participants submit the P/R values for the final document and query corpus and present their results at the conference.

Page 45: Performance Evaluation of Information Retrieval Systems

45

The TREC Objectives

• Provide a common ground for comparing different IR techniques.

– Same set of documents and queries, and same evaluation method.• Sharing of resources and experiences in developing the benchmark.

– With major sponsorship from government to develop large benchmark collections.

• Encourage participation from industry and academia.• Development of new evaluation techniques, particularly for new applications.

– Retrieval, routing/filtering, non-English collection, web-based collection, question answering.

Page 46: Performance Evaluation of Information Retrieval Systems

46

TREC Advantages

• Large scale (compared to a few MB in the SMART Collection).• Relevance judgments provided.• Under continuous development with support from the U.S.

Government.• Wide participation:

– TREC 1: 28 papers 360 pages. 1992– TREC 4: 37 papers 560 pages. 1995– TREC 7: 61 papers 600 pages. 1998– TREC 8: 74 papers. 1999– TREC 9: 2000– TREC 10: 2001

Page 47: Performance Evaluation of Information Retrieval Systems

47

TREC Tasks

• Ad hoc: New questions are being asked on a static set of data.

• Routing: Same questions are being asked, but new information is being searched. (news clipping, library profiling).

• New tasks added after TREC 5 - Interactive, multilingual, natural language, multiple database merging, filtering, very large corpus (20 GB, 7.5 million documents), question answering.

Page 48: Performance Evaluation of Information Retrieval Systems

48

Characteristics of the TREC Collection

• Both long and short documents (from a few hundred to over one thousand unique terms in a document).

• Test documents consist of: WSJ Wall Street Journal articles (1986-1992) 550 M AP Associate Press Newswire (1989) 514 M ZIFF Computer Select Disks (Ziff-Davis Publishing) 493 M FR Federal Register 469 M DOE Abstracts from Department of Energy reports 190 M

Page 49: Performance Evaluation of Information Retrieval Systems

49

More Details on Document Collections

• Volume 1 (Mar 1994) - Wall Street Journal (1987, 1988, 1989), Federal Register (1989), Associated Press (1989), Department of Energy abstracts, and Information from the Computer Select disks (1989, 1990)

• Volume 2 (Mar 1994) - Wall Street Journal (1990, 1991, 1992), the Federal Register (1988), Associated Press (1988) and Information from the Computer Select disks (1989, 1990)

• Volume 3 (Mar 1994) - San Jose Mercury News (1991), the Associated Press (1990), U.S. Patents (1983-1991), and Information from the Computer Select disks (1991, 1992)

• Volume 4 (May 1996) - Financial Times Limited (1991, 1992, 1993, 1994), the Congressional Record of the 103rd Congress (1993), and the Federal Register (1994).

• Volume 5 (Apr 1997) - Foreign Broadcast Information Service (1996) and the Los Angeles Times (1989, 1990).

Page 50: Performance Evaluation of Information Retrieval Systems

50

TREC Disk 4,5

TREC Disk 4 Congressional Record of the 103rd Congress approx. 30,000 documents approx. 235 MBFederal Register (1994) approx. 55,000 documents approx. 395 MBFinancial Times (1992-1994) approx. 210,000 documents approx. 565 MB

TREC Disk 5 Data provided from the Foreign Broadcast Information Service approx. 130,000 documents approx. 470 MBLos Angeles Times (randomly selected articles from 1989 & 1990) approx. 130,000 document approx. 475 MB

Page 51: Performance Evaluation of Information Retrieval Systems

51

Sample Document (with SGML)

<DOC> <DOCNO> WSJ870324-0001 </DOCNO> <HL> John Blair Is Near Accord To Sell Unit, Sources Say </HL> <DD> 03/24/87</DD> <SO> WALL STREET JOURNAL (J) </SO><IN> REL TENDER OFFERS, MERGERS, ACQUISITIONS (TNM)

MARKETING, ADVERTISING (MKT) TELECOMMUNICATIONS, BROADCASTING, TELEPHONE, TELEGRAPH (TEL) </IN>

<DATELINE> NEW YORK </DATELINE> <TEXT> John Blair &amp; Co. is close to an agreement to sell its TV station

advertising representation operation and program production unit to an investor group led by James H. Rosenfield, a former CBS Inc. executive, industry sources said. Industry sources put the value of the proposed acquisition at more than $100 million. ...

</TEXT> </DOC>

Page 52: Performance Evaluation of Information Retrieval Systems

52

Sample Query (with SGML)

<top> <head> Tipster Topic Description <num> Number: 066 <dom> Domain: Science and Technology <title> Topic: Natural Language Processing <desc> Description: Document will identify a type of natural language

processing technology which is being developed or marketed in the U.S. <narr> Narrative: A relevant document will identify a company or institution

developing or marketing a natural language processing technology, identify the technology, and identify one of more features of the company's product.

<con> Concept(s): 1. natural language processing ;2. translation, language, dictionary

<fac> Factor(s): <nat> Nationality: U.S.</nat></fac> <def> Definitions(s): </top>

Page 53: Performance Evaluation of Information Retrieval Systems

53

TREC Properties

• Both documents and queries contain many different kinds of information (fields).

• Generation of the formal queries (Boolean, Vector Space, etc.) is the responsibility of the system.– A system may be very good at querying and

ranking, but if it generates poor queries from the topic, its final P/R would be poor.

Page 54: Performance Evaluation of Information Retrieval Systems

54

Two more TREC Document Examples

Page 55: Performance Evaluation of Information Retrieval Systems

55

Another Example of TREC Topic/Query

Page 56: Performance Evaluation of Information Retrieval Systems

56

Evaluation

• Summary table statistics: Number of topics, number of documents retrieved, number of relevant documents.

• Recall-precision average: Average precision at 11 recall levels (0 to 1 at 0.1 increments).

• Document level average: Average precision when 5, 10, .., 100, … 1000 documents are retrieved.

• Average precision histogram: Difference of the R-precision for each topic and the average R-precision of all systems for that topic.

Page 57: Performance Evaluation of Information Retrieval Systems

57

Page 58: Performance Evaluation of Information Retrieval Systems

58

Cystic Fibrosis (CF) Collection

• 1,239 abstracts of medical journal articles on CF.

• 100 information requests (queries) in the form of complete English questions.

• Relevant documents determined and rated by 4 separate medical experts on 0-2 scale:– 0: Not relevant.– 1: Marginally relevant.– 2: Highly relevant.

Page 59: Performance Evaluation of Information Retrieval Systems

59

CF Document Fields

• MEDLINE access number• Author• Title• Source• Major subjects• Minor subjects• Abstract (or extract)• References to other documents• Citations to this document

Page 60: Performance Evaluation of Information Retrieval Systems

60

Sample CF Document

AN 74154352AU Burnell-R-H. Robertson-E-F.TI Cystic fibrosis in a patient with Kartagener syndrome.SO Am-J-Dis-Child. 1974 May. 127(5). P 746-7.MJ CYSTIC-FIBROSIS: co. KARTAGENER-TRIAD: co.MN CASE-REPORT. CHLORIDES: an. HUMAN. INFANT. LUNG: ra. MALE. SITUS-INVERSUS: co, ra. SODIUM: an. SWEAT: an.AB A patient exhibited the features of both Kartagener syndrome and cystic fibrosis. At most, to the authors' knowledge, this represents the third such report of the combination. Cystic fibrosis should be excluded before a diagnosis of Kartagener syndrome is made.RF 001 KARTAGENER M BEITR KLIN TUBERK 83 489 933 002 SCHWARZ V ARCH DIS CHILD 43 695 968 003 MACE JW CLIN PEDIATR 10 285 971 …CT 1 BOCHKOVA DN GENETIKA (SOVIET GENETICS) 11 154 975 2 WOOD RE AM REV RESPIR DIS 113 833 976 3 MOSSBERG B MT SINAI J MED 44 837 977 …

Page 61: Performance Evaluation of Information Retrieval Systems

61

Sample CF Queries

QN 00002QU Can one distinguish between the effects of mucus hypersecretion and infection on the submucosal glands of the respiratory tract in CF?NR 00007RD 169 1000 434 1001 454 0100 498 1000 499 1000 592 0002 875 1011

QN 00004QU What is the lipid composition of CF respiratory secretions?NR 00009RD 503 0001 538 0100 539 0100 540 0100 553 0001 604 2222 669 1010 711 2122 876 2222

NR: Number of Relevant documentsRD: Relevant Documents

Ratings code: Four 0-2 ratings, one from each expert

Page 62: Performance Evaluation of Information Retrieval Systems

62

Preprocessing for VSR Experiments

• Separate file for each document with just:– Author– Title– Major and Minor Topics– Abstract (Extract)

• Relevance judgment made binary by assuming that all documents rated 1 or 2 by any expert were relevant.


Recommended