📄 svmattributeeval.html
字号:
Set the value of P for SMO</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../weka/attributeSelection/SVMAttributeEval.html#setFilterType(weka.core.SelectedTag)">setFilterType</A></B>(<A HREF="../../weka/core/SelectedTag.html" title="class in weka.core">SelectedTag</A> newType)</CODE><BR> The filtering mode to pass to SMO</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../weka/attributeSelection/SVMAttributeEval.html#setOptions(java.lang.String[])">setOptions</A></B>(java.lang.String[] options)</CODE><BR> Parses a given list of options Valid options are: </TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../weka/attributeSelection/SVMAttributeEval.html#setPercentThreshold(int)">setPercentThreshold</A></B>(int pThresh)</CODE><BR> Set the threshold below which percentage elimination reverts to constant elimination.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../weka/attributeSelection/SVMAttributeEval.html#setPercentToEliminatePerIteration(int)">setPercentToEliminatePerIteration</A></B>(int pRate)</CODE><BR> Set the percentage of attributes to eliminate per iteration</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../weka/attributeSelection/SVMAttributeEval.html#setToleranceParameter(double)">setToleranceParameter</A></B>(double svmT)</CODE><BR> Set the value of T for SMO</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> java.lang.String</CODE></FONT></TD><TD><CODE><B><A HREF="../../weka/attributeSelection/SVMAttributeEval.html#toleranceParameterTipText()">toleranceParameterTipText</A></B>()</CODE><BR> Returns a tip text for this property suitable for display in the GUI</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> java.lang.String</CODE></FONT></TD><TD><CODE><B><A HREF="../../weka/attributeSelection/SVMAttributeEval.html#toString()">toString</A></B>()</CODE><BR> Return a description of the evaluator</TD></TR></TABLE> <A NAME="methods_inherited_from_class_weka.attributeSelection.ASEvaluation"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"><TD><B>Methods inherited from class weka.attributeSelection.<A HREF="../../weka/attributeSelection/ASEvaluation.html" title="class in weka.attributeSelection">ASEvaluation</A></B></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE><A HREF="../../weka/attributeSelection/ASEvaluation.html#forName(java.lang.String, java.lang.String[])">forName</A>, <A HREF="../../weka/attributeSelection/ASEvaluation.html#makeCopies(weka.attributeSelection.ASEvaluation, int)">makeCopies</A>, <A HREF="../../weka/attributeSelection/ASEvaluation.html#postProcess(int[])">postProcess</A></CODE></TD></TR></TABLE> <A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"><TD><B>Methods inherited from class java.lang.Object</B></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD></TR></TABLE> <P><!-- ============ FIELD DETAIL =========== --><!-- ========= CONSTRUCTOR DETAIL ======== --><A NAME="constructor_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Constructor Detail</B></FONT></TD></TR></TABLE><A NAME="SVMAttributeEval()"><!-- --></A><H3>SVMAttributeEval</H3><PRE>public <B>SVMAttributeEval</B>()</PRE><DL><DD>Constructor<P></DL><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Method Detail</B></FONT></TD></TR></TABLE><A NAME="globalInfo()"><!-- --></A><H3>globalInfo</H3><PRE>public java.lang.String <B>globalInfo</B>()</PRE><DL><DD>Returns a string describing this attribute evaluator<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>a description of the evaluator suitable for displaying in the explorer/experimenter gui</DL></DD></DL><HR><A NAME="listOptions()"><!-- --></A><H3>listOptions</H3><PRE>public java.util.Enumeration <B>listOptions</B>()</PRE><DL><DD>Returns an enumeration describing all the available options<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../weka/core/OptionHandler.html#listOptions()">listOptions</A></CODE> in interface <CODE><A HREF="../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>an enumeration of options</DL></DD></DL><HR><A NAME="setOptions(java.lang.String[])"><!-- --></A><H3>setOptions</H3><PRE>public void <B>setOptions</B>(java.lang.String[] options) throws java.lang.Exception</PRE><DL><DD>Parses a given list of options Valid options are: <p> -X <constant rate of elimination> <br> Specify constant rate at which attributes are eliminated per invocation of the support vector machine. Default = 1.<p> -Y <percent rate of elimination> <br> Specify the percentage rate at which attributes are eliminated per invocation of the support vector machine. This setting trumps the constant rate setting. Default = 0 (percentage rate ignored).<p> -Z <threshold for percent elimination> <br> Specify the threshold below which the percentage elimination method reverts to the constant elimination method.<p> -C <complexity parameter> <br> Specify the value of C - the complexity parameter to be passed on to the support vector machine. <p> -P <episilon> <br> Sets the epsilon for round-off error. (default 1.0e-25)<p> -T <tolerance> <br> Sets the tolerance parameter. (default 1.0e-10)<p> -N <0|1|2> <br> Whether the SVM should 0=normalize/1=standardize/2=neither. (default 0=normalize)<p><P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../weka/core/OptionHandler.html#setOptions(java.lang.String[])">setOptions</A></CODE> in interface <CODE><A HREF="../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>options</CODE> - the list of options as an array of strings<DT><B>Throws:</B><DD><CODE>java.lang.Exception</CODE> - if an error occurs</DL></DD></DL><HR><A NAME="getOptions()"><!-- --></A><H3>getOptions</H3><PRE>public java.lang.String[] <B>getOptions</B>()</PRE><DL><DD>Gets the current settings of SVMAttributeEval<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../weka/core/OptionHandler.html#getOptions()">getOptions</A></CODE> in interface <CODE><A HREF="../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>an array of strings suitable for passing to setOptions()</DL></DD></DL><HR><A NAME="attsToEliminatePerIterationTipText()"><!-- --></A><H3>attsToEliminatePerIterationTipText</H3><PRE>public java.lang.String <B>attsToEliminatePerIterationTipText</B>()</PRE><DL><DD>Returns a tip text for this property suitable for display in the GUI<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>tip text string describing this property</DL></DD></DL><HR><A NAME="percentToEliminatePerIterationTipText()"><!-- --></A><H3>percentToEliminatePerIterationTipText</H3><PRE>public java.lang.String <B>percentToEliminatePerIterationTipText</B>()</PRE><DL><DD>Returns a tip text for this property suitable for display in the GUI<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>tip text string describing this property</DL></DD></DL><HR><A NAME="percentThresholdTipText()"><!-- --></A><H3>percentThresholdTipText</H3><PRE>public java.lang.String <B>percentThresholdTipText</B>()</PRE><DL><DD>Returns a tip text for this property suitable for display in the GUI<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>tip text string describing this property</DL></DD></DL><HR><A NAME="epsilonParameterTipText()"><!-- --></A><H3>epsilonParameterTipText</H3><PRE>public java.lang.String <B>epsilonParameterTipText</B>()</PRE><DL><DD>Returns a tip text for this property suitable for display in the GUI<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>tip text string describing this property</DL></DD></DL><HR><A NAME="toleranceParameterTipText()"><!-- --></A><H3>toleranceParameterTipText</H3><PRE>public java.lang.String <B>toleranceParameterTipText</B>()</PRE><DL><DD>Returns a tip text for this property suitable for display in the GUI<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>tip text string describing this property</DL></DD></DL><HR><A NAME="complexityParameterTipText()"><!-- --></A><H3>complexityParameterTipText</H3><PRE>public java.lang.String <B>complexityParameterTipText</B>()</PRE><DL><DD>Returns a tip text for this property suitable for display in the GUI<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>tip text string describing this property</DL></DD></DL><HR><A NAME="filterTypeTipText()"><!-- --></A><H3>filterTypeTipText</H3><PRE>public java.lang.String <B>filterTypeTipText</B>()</PRE><DL><DD>Returns a tip text for this property suitable for display in the GUI<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>tip text string describing this property</DL></DD></DL><HR><A NAME="setAttsToEliminatePerIteration(int)"><!-- --></A><H3>setAttsToEliminatePerIteration</H3><PRE>public void <B>setAttsToEliminatePerIteration</B>(int cRate)</PRE><DL><DD>Set the constant rate of attribute elimination per iteration<P><DD><DL></DL></DD><DD><DL></DL></DD></DL>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -