⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 validationchain.html

📁 数据挖掘方面最新软件
💻 HTML
📖 第 1 页 / 共 4 页
字号:
</TR></TABLE><A NAME="ValidationChain(com.rapidminer.operator.OperatorDescription)"><!-- --></A><H3>ValidationChain</H3><PRE>public <B>ValidationChain</B>(<A HREF="../../../../com/rapidminer/operator/OperatorDescription.html" title="class in com.rapidminer.operator">OperatorDescription</A>&nbsp;description)</PRE><DL></DL><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"><B>Method Detail</B></FONT></TH></TR></TABLE><A NAME="estimatePerformance(com.rapidminer.example.ExampleSet)"><!-- --></A><H3>estimatePerformance</H3><PRE>public abstract <A HREF="../../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A>[] <B>estimatePerformance</B>(<A HREF="../../../../com/rapidminer/example/ExampleSet.html" title="interface in com.rapidminer.example">ExampleSet</A>&nbsp;inputSet)                                        throws <A HREF="../../../../com/rapidminer/operator/OperatorException.html" title="class in com.rapidminer.operator">OperatorException</A></PRE><DL><DD>This is the main method of the validation chain and must be implemented to estimate a performance of inner operators on the given example set. The implementation can make use of the provided helper methods in this class.<P><DD><DL><DT><B>Throws:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/OperatorException.html" title="class in com.rapidminer.operator">OperatorException</A></CODE></DL></DD></DL><HR><A NAME="getMaxNumberOfInnerOperators()"><!-- --></A><H3>getMaxNumberOfInnerOperators</H3><PRE>public int <B>getMaxNumberOfInnerOperators</B>()</PRE><DL><DD>Returns the maximum number of innner operators.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/OperatorChain.html#getMaxNumberOfInnerOperators()">getMaxNumberOfInnerOperators</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/operator/OperatorChain.html" title="class in com.rapidminer.operator">OperatorChain</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getMinNumberOfInnerOperators()"><!-- --></A><H3>getMinNumberOfInnerOperators</H3><PRE>public int <B>getMinNumberOfInnerOperators</B>()</PRE><DL><DD>Returns the minimum number of innner operators.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/OperatorChain.html#getMinNumberOfInnerOperators()">getMinNumberOfInnerOperators</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/operator/OperatorChain.html" title="class in com.rapidminer.operator">OperatorChain</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getInputDescription(java.lang.Class)"><!-- --></A><H3>getInputDescription</H3><PRE>public <A HREF="../../../../com/rapidminer/operator/InputDescription.html" title="class in com.rapidminer.operator">InputDescription</A> <B>getInputDescription</B>(java.lang.Class&nbsp;cls)</PRE><DL><DD><B>Description copied from class: <CODE><A HREF="../../../../com/rapidminer/operator/Operator.html#getInputDescription(java.lang.Class)">Operator</A></CODE></B></DD><DD>The default implementation returns an input description that consumes the input IOObject without a user parameter. Subclasses may override this method to allow other input handling behaviors.<P><DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/Operator.html#getInputDescription(java.lang.Class)">getInputDescription</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/operator/Operator.html" title="class in com.rapidminer.operator">Operator</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getInputClasses()"><!-- --></A><H3>getInputClasses</H3><PRE>public java.lang.Class&lt;?&gt;[] <B>getInputClasses</B>()</PRE><DL><DD>Returns the the classes this operator provides as output.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/Operator.html#getInputClasses()">getInputClasses</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/operator/Operator.html" title="class in com.rapidminer.operator">Operator</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getOutputClasses()"><!-- --></A><H3>getOutputClasses</H3><PRE>public java.lang.Class&lt;?&gt;[] <B>getOutputClasses</B>()</PRE><DL><DD>Returns the the classes this operator expects as input.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/Operator.html#getOutputClasses()">getOutputClasses</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/operator/Operator.html" title="class in com.rapidminer.operator">Operator</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getInnerOperatorCondition()"><!-- --></A><H3>getInnerOperatorCondition</H3><PRE>public <A HREF="../../../../com/rapidminer/operator/condition/InnerOperatorCondition.html" title="interface in com.rapidminer.operator.condition">InnerOperatorCondition</A> <B>getInnerOperatorCondition</B>()</PRE><DL><DD><B>Description copied from class: <CODE><A HREF="../../../../com/rapidminer/operator/OperatorChain.html#getInnerOperatorCondition()">OperatorChain</A></CODE></B></DD><DD>Must return a condition of the IO behaviour of all desired inner operators. If there are no &quot;special&quot; conditions and the chain works similar to a simple operator chain this method should at least return a <A HREF="../../../../com/rapidminer/operator/condition/SimpleChainInnerOperatorCondition.html" title="class in com.rapidminer.operator.condition"><CODE>SimpleChainInnerOperatorCondition</CODE></A>. More than one condition should be combined with help of the class <A HREF="../../../../com/rapidminer/operator/condition/CombinedInnerOperatorCondition.html" title="class in com.rapidminer.operator.condition"><CODE>CombinedInnerOperatorCondition</CODE></A>.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/rapidminer/operator/OperatorChain.html#getInnerOperatorCondition()">getInnerOperatorCondition</A></CODE> in class <CODE><A HREF="../../../../com/rapidminer/operator/OperatorChain.html" title="class in com.rapidminer.operator">OperatorChain</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getLearner()"><!-- --></A><H3>getLearner</H3><PRE>protected <A HREF="../../../../com/rapidminer/operator/Operator.html" title="class in com.rapidminer.operator">Operator</A> <B>getLearner</B>()</PRE><DL><DD>Returns the first encapsulated inner operator (or operator chain), i.e. the learning operator (chain).<P><DD><DL></DL></DD></DL><HR><A NAME="setResult(com.rapidminer.operator.performance.PerformanceVector)"><!-- --></A><H3>setResult</H3><PRE>protected void <B>setResult</B>(<A HREF="../../../../com/rapidminer/operator/performance/PerformanceVector.html" title="class in com.rapidminer.operator.performance">PerformanceVector</A>&nbsp;pv)</PRE><DL><DD>Can be used by subclasses to set the performance of the example set.<P><DD><DL></DL></DD></DL><HR><A NAME="apply()"><!-- --></A><H3>

⌨️ 快捷键说明

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