minmaxcriterion.html

来自「数据挖掘方面最新软件」· HTML 代码 · 共 566 行 · 第 1/3 页

HTML
566
字号
<A NAME="getDescription()"><!-- --></A><H3>getDescription</H3><PRE>public java.lang.String <B>getDescription</B>()</PRE><DL><DD>Returns a description of the performance criterion.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/performance/PerformanceCriterion.html#getDescription()">getDescription</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/operator/performance/PerformanceCriterion.html" title="class in com.rapidminer.operator.performance">PerformanceCriterion</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getName()"><!-- --></A><H3>getName</H3><PRE>public java.lang.String <B>getName</B>()</PRE><DL><DD><B>Description copied from class: <CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getName()">Averagable</A></CODE></B></DD><DD>Returns the name of this averagable. The returned string should only contain  lowercase letters and underscore (RapidMiner parameter format) since the names  will be automatically used for GUI purposes.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/ResultObject.html#getName()">getName</A></CODE> in interface <CODE><A HREF="../../../../com/rapidminer/operator/ResultObject.html" title="interface in com.rapidminer.operator">ResultObject</A></CODE><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getName()">getName</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html" title="class in com.rapidminer.tools.math">Averagable</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getMikroAverage()"><!-- --></A><H3>getMikroAverage</H3><PRE>public double <B>getMikroAverage</B>()</PRE><DL><DD><B>Description copied from class: <CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getMikroAverage()">Averagable</A></CODE></B></DD><DD>Returns the (current) value of the averagable (the average itself). If the   method <A HREF="../../../../com/rapidminer/tools/math/Averagable.html#buildSingleAverage(com.rapidminer.tools.math.Averagable)"><CODE>Averagable.buildSingleAverage(Averagable)</CODE></A> was used, this method must return the   micro average from both (or more) criteria. This is usually achieved by  correctly implementing <A HREF="../../../../com/rapidminer/tools/math/Averagable.html#buildSingleAverage(com.rapidminer.tools.math.Averagable)"><CODE>Averagable.buildSingleAverage(Averagable)</CODE></A>.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getMikroAverage()">getMikroAverage</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html" title="class in com.rapidminer.tools.math">Averagable</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getFitness()"><!-- --></A><H3>getFitness</H3><PRE>public double <B>getFitness</B>()</PRE><DL><DD><B>Description copied from class: <CODE><A HREF="../../../../com/rapidminer/operator/performance/PerformanceCriterion.html#getFitness()">PerformanceCriterion</A></CODE></B></DD><DD><p>Returns the fitness depending on the value. The fitness values will be used for all optimization purposes (feature space transformations, parameter optimizations...) and must always be maximized. Hence, if your criterion is better the smaller the value is you should return something like  (-1 * value) or (1 / value).</p>  <p>Subclasses should use <A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getAverage()"><CODE>Averagable.getAverage()</CODE></A> instead of <A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getMikroAverage()"><CODE>Averagable.getMikroAverage()</CODE></A> in this method  since usually the makro average (if available) should be optmized instead  of the mikro average. The mikro average should only be used in the (rare)  cases where no makro average is available but this is automatically done returned by <A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getAverage()"><CODE>Averagable.getAverage()</CODE></A> in these cases.</p><P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/performance/PerformanceCriterion.html#getFitness()">getFitness</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/operator/performance/PerformanceCriterion.html" title="class in com.rapidminer.operator.performance">PerformanceCriterion</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getMikroVariance()"><!-- --></A><H3>getMikroVariance</H3><PRE>public double <B>getMikroVariance</B>()</PRE><DL><DD><B>Description copied from class: <CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getMikroVariance()">Averagable</A></CODE></B></DD><DD>Returns the variance of the averagable. The returned value must not be negative. If the averagable does not define a variance this method should return Double.NaN.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getMikroVariance()">getMikroVariance</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html" title="class in com.rapidminer.tools.math">Averagable</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="buildSingleAverage(com.rapidminer.tools.math.Averagable)"><!-- --></A><H3>buildSingleAverage</H3><PRE>public void <B>buildSingleAverage</B>(<A HREF="../../../../com/rapidminer/tools/math/Averagable.html" title="class in com.rapidminer.tools.math">Averagable</A>&nbsp;avg)</PRE><DL><DD><B>Description copied from class: <CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html#buildSingleAverage(com.rapidminer.tools.math.Averagable)">Averagable</A></CODE></B></DD><DD>This method should build the average of this and another averagable of the same type. The next invocation of <A HREF="../../../../com/rapidminer/tools/math/Averagable.html#getMikroAverage()"><CODE>Averagable.getMikroAverage()</CODE></A> should return the average of this and the given averagable. Hence, this method is used to build the actual micro average value of two criteria. Please refer to <A HREF="../../../../com/rapidminer/operator/performance/SimpleCriterion.html" title="class in com.rapidminer.operator.performance"><CODE>SimpleCriterion</CODE></A> for a simple implementation example.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html#buildSingleAverage(com.rapidminer.tools.math.Averagable)">buildSingleAverage</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/tools/math/Averagable.html" title="class in com.rapidminer.tools.math">Averagable</A></CODE></DL></DD><DD><DL></DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/MinMaxCriterion.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=114160&amp;type=2" width="125" height="37" border="0" alt="SourceForge.net Logo" /></a></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;<A HREF="../../../../com/rapidminer/operator/performance/MeasuredPerformance.html" title="class in com.rapidminer.operator.performance"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../../../com/rapidminer/operator/performance/MinMaxWrapper.html" title="class in com.rapidminer.operator.performance"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../../../index.html?com/rapidminer/operator/performance/MinMaxCriterion.html" target="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="MinMaxCriterion.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;&nbsp;<SCRIPT type="text/javascript">  <!--  if(window==top) {    document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');  }  //--></SCRIPT><NOSCRIPT>  <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR><i>Copyright &#169; 2001-2008 by <a href="http://rapid-i.com" target="_blank">Rapid-I</a></i></BODY></HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?