在 gate 工具中加载 svm 学习配置文件时出错
error loading svm learning configuration file in gate tool
我是机器学习的新手。当我尝试通过门学习时,它显示出一些错误。下面给出学习配置文件
<?xml version="1.0"?>
<ML-CONFIG>
<SURROUND value="false"/>
<FILTERING ratio='0.2' dis='far'/>
<EVALUATION method="holdout" runs="2" ratio="0.66"/>
<multiClassification2Binary method="one-vs-anothers" thread-pool-size="2"/>
<PARAMETER name="thresholdProbabilityBoundary" value="1.0"/>
<PARAMETER name="thresholdProbabilityEntity" value="1.0"/>
<PARAMETER name="thresholdProbabilityClassification" value="0.0"/>
<IS-LABEL-UPDATABLE value="true"/>
<IS-NLPFEATURELIST-UPDATABLE value="true"/>
<ENGINE nickname="SVM" implementationName="SVMLibSvmJava" options = "-s 0 -t 1 -d 4 -c 5 -tau 1.2"/>
</ML-CONFIG>
训练属性在此文件中。当我在没有包含 multiclass xml 标签的行进行训练时,它正在工作。添加此行时,会显示如下错误
Caused by: org.jdom.input.JDOMParseException: Error on line 6 of document file:/home/cognicor/vagateplugin/scripts/ML_script/learningsvm: Element type "multiClassi" must be followed by either attribute specifications, ">" or "/>".
我不知道这件事,也不知道为什么会发生,正在寻求解决方案。
问题出在 multiClassification2Binary
字符串中。有一个字形 fi
包含两个连接的字符 "fi" 在一起。您可能从某些 pdf 中复制了文本...只需将 fi
替换为 fi
,错误就会消失。
我是机器学习的新手。当我尝试通过门学习时,它显示出一些错误。下面给出学习配置文件
<?xml version="1.0"?>
<ML-CONFIG>
<SURROUND value="false"/>
<FILTERING ratio='0.2' dis='far'/>
<EVALUATION method="holdout" runs="2" ratio="0.66"/>
<multiClassification2Binary method="one-vs-anothers" thread-pool-size="2"/>
<PARAMETER name="thresholdProbabilityBoundary" value="1.0"/>
<PARAMETER name="thresholdProbabilityEntity" value="1.0"/>
<PARAMETER name="thresholdProbabilityClassification" value="0.0"/>
<IS-LABEL-UPDATABLE value="true"/>
<IS-NLPFEATURELIST-UPDATABLE value="true"/>
<ENGINE nickname="SVM" implementationName="SVMLibSvmJava" options = "-s 0 -t 1 -d 4 -c 5 -tau 1.2"/>
</ML-CONFIG>
训练属性在此文件中。当我在没有包含 multiclass xml 标签的行进行训练时,它正在工作。添加此行时,会显示如下错误
Caused by: org.jdom.input.JDOMParseException: Error on line 6 of document file:/home/cognicor/vagateplugin/scripts/ML_script/learningsvm: Element type "multiClassi" must be followed by either attribute specifications, ">" or "/>".
我不知道这件事,也不知道为什么会发生,正在寻求解决方案。
问题出在 multiClassification2Binary
字符串中。有一个字形 fi
包含两个连接的字符 "fi" 在一起。您可能从某些 pdf 中复制了文本...只需将 fi
替换为 fi
,错误就会消失。