Java Doc for QualityStats.java in  » Net » lucene-connector » org » apache » lucene » benchmark » quality » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » lucene connector » org.apache.lucene.benchmark.quality 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.lucene.benchmark.quality.QualityStats

QualityStats
public class QualityStats (Code)
Results of quality benchmark run for a single query or for a set of queries.

Inner Class :public static class RecallPoint

Field Summary
final public static  intMAX_POINTS
     Number of points for which precision is computed.

Constructor Summary
public  QualityStats(double maxGoodPoints, long searchTime)
     Construct a QualityStats object with anticipated maximal number of relevant hits.

Method Summary
public  voidaddResult(int n, boolean isRelevant, long docNameExtractTime)
     Add a (possibly relevant) doc.
public static  QualityStatsaverage(QualityStats[] stats)
     Create a QualityStats object that is the average of the input QualityStats objects.
public  doublegetAvp()
     Return the average precision at recall points.
public  longgetDocNamesExtractTime()
     Returns the time it took to extract doc names for judging the measured query, in milliseconds.
public  doublegetMRR()
     Returns the Mean reciprocal rank over the queries or RR for a single query.

Reciprocal rank is defined as 1/r where r is the rank of the first correct result, or 0 if there are no correct results within the top 5 results.

public  doublegetMaxGoodPoints()
     Returns the maximal number of good points.
public  doublegetNumGoodPoints()
     Returns the number of good points (only relevant points).
public  doublegetNumPoints()
     Returns the number of points (both relevant and irrelevant points).
public  doublegetPrecisionAt(int n)
     Return the precision at rank n: |{relevant hits within first n hits}| / n.
Parameters:
  n - requested precision point, must be at least 1 and at most QualityStats.MAX_POINTS.
public  doublegetRecall()
     Return the recall: |{relevant hits}| / |{hits}|.
public  RecallPoint[]getRecallPoints()
     Returns the recallPoints.
public  longgetSearchTime()
     Returns the search time in milliseconds for the measured query.
public  voidlog(String title, int paddLines, PrintWriter logger, String prefix)
     Log information on this QualityStats object.

Field Detail
MAX_POINTS
final public static int MAX_POINTS(Code)
Number of points for which precision is computed.




Constructor Detail
QualityStats
public QualityStats(double maxGoodPoints, long searchTime)(Code)
Construct a QualityStats object with anticipated maximal number of relevant hits.
Parameters:
  maxGoodPoints - maximal possible relevant hits.




Method Detail
addResult
public void addResult(int n, boolean isRelevant, long docNameExtractTime)(Code)
Add a (possibly relevant) doc.
Parameters:
  n - rank of the added doc (its ordinal position within the query results).
Parameters:
  isRelevant - true if the added doc is relevant, false otherwise.



average
public static QualityStats average(QualityStats[] stats)(Code)
Create a QualityStats object that is the average of the input QualityStats objects.
Parameters:
  stats - array of input stats to be averaged. an average over the input stats.



getAvp
public double getAvp()(Code)
Return the average precision at recall points.



getDocNamesExtractTime
public long getDocNamesExtractTime()(Code)
Returns the time it took to extract doc names for judging the measured query, in milliseconds.



getMRR
public double getMRR()(Code)
Returns the Mean reciprocal rank over the queries or RR for a single query.

Reciprocal rank is defined as 1/r where r is the rank of the first correct result, or 0 if there are no correct results within the top 5 results.

This follows the definition in Question Answering - CNLP at the TREC-10 Question Answering Track.




getMaxGoodPoints
public double getMaxGoodPoints()(Code)
Returns the maximal number of good points. This is the number of relevant docs known by the judge for the measured query.



getNumGoodPoints
public double getNumGoodPoints()(Code)
Returns the number of good points (only relevant points).



getNumPoints
public double getNumPoints()(Code)
Returns the number of points (both relevant and irrelevant points).



getPrecisionAt
public double getPrecisionAt(int n)(Code)
Return the precision at rank n: |{relevant hits within first n hits}| / n.
Parameters:
  n - requested precision point, must be at least 1 and at most QualityStats.MAX_POINTS.



getRecall
public double getRecall()(Code)
Return the recall: |{relevant hits}| / |{hits}|.



getRecallPoints
public RecallPoint[] getRecallPoints()(Code)
Returns the recallPoints.



getSearchTime
public long getSearchTime()(Code)
Returns the search time in milliseconds for the measured query.



log
public void log(String title, int paddLines, PrintWriter logger, String prefix)(Code)
Log information on this QualityStats object.
Parameters:
  logger - Logger.
Parameters:
  prefix - prefix before each log line.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.