Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
IBatchTypeClassifierResult は、ページに割り当てられた ClassName と各クラスの信頼度を含む、バッチタイプのページ分類結果を返します。
サンプル スクリプト
IBatchTypeClassifierResult res = BatchTypeClassifier.ClassifyPage( Page );
IClassConfidences classVars = res.Classes;
foreach( IClassConfidence c in classVars )
{
FCTools.ShowMessage( c.Name + " --> " + c.Confidence.ToString() );
}
このページは役に立ちましたか?