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

📄 sequencenumberassessment.java

📁 一个数据挖掘软件ALPHAMINERR的整个过程的JAVA版源代码
💻 JAVA
字号:
/*
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this program; if not, write to the Free Software
 *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

 /**
  * Title: XELOPES Data Mining Library
  * Description: The XELOPES library is an open platform-independent and data-source-independent library for Embedded Data Mining.
  * Copyright: Copyright (c) 2002 Prudential Systems Software GmbH
  * Company: ZSoft (www.zsoft.ru), Prudsys (www.prudsys.com)
  * @author Michael Thess
  * @version 1.1
  */
package com.prudsys.pdm.Models.Sequential;

import com.prudsys.pdm.Core.*;
import com.prudsys.pdm.Automat.*;

/**
 * Calculates sequence model assessment which is simply the
 * number of rules or large sequences.
 */
public class SequenceNumberAssessment extends IntrospectiveModelAssessment
{
  /** Assessment type (0 - number of rules, 1 - number of large sequences). */
  private int ruleType = 0;

  /**
   * Empty constructor.
   */
  public SequenceNumberAssessment()
  {
  }

  /**
   * Calculate assessment value for current model.
   * This is simply the number of rules or sequences depending on ruleType.
   *
   * @return number of rules or sequences
   * @exception MiningException if assessment could not be calculated
   */
  public double calculateAssessment() throws MiningException {

      if (miningModel == null)
        throw new MiningException("No mining model defined");

      if (! (miningModel instanceof SequentialMiningModel) )
        throw new MiningException("Mining model not instance of SequentialMiningModel");

      int numRule = 0;
      if (ruleType == 0)
        numRule = ((SequentialMiningModel) miningModel).getSequenceRules().size();
      else if (ruleType == 1)
        numRule = ((SequentialMiningModel) miningModel).getSequentialRules().size();

      return numRule;
  }

  /**
   * Returns rule type (0 - number of rules, 1 - number of large sequences).
   *
   * @return rule type
   */
  public int getRuleType()
  {
    return ruleType;
  }

  /**
   * Sets rule type (0 - number of rules, 1 - number of large sequences).
   *
   * @param ruleType new rule type
   */
  public void setRuleType(int ruleType)
  {
    this.ruleType = ruleType;
  }
}

⌨️ 快捷键说明

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