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

📄 clas_gen.hpp

📁 orange源码 数据挖掘技术
💻 HPP
字号:
/*
    This file is part of Orange.

    Orange 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.

    Orange 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 Orange; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    Authors: Janez Demsar, Blaz Zupan, 1996--2002
    Contact: janez.demsar@fri.uni-lj.si
*/


#ifndef __CLAS_GEN_HPP
#define __CLAS_GEN_HPP

#include "examplegen.hpp"


/*  TClassifier generator constructs examples. For each attribute in examples, values are set by using TVariable's
    firstValue and nextValue methods. The class of example is determined by using a TClassifier object. */
class ORANGE_API TClassifierGenerator : public TExampleGenerator {
public:
  __REGISTER_CLASS

  PClassifier classify; //P classifier

  TClassifierGenerator();
  TClassifierGenerator(PDomain &);
  TClassifierGenerator(PDomain &, PClassifier &clsf);

  virtual TExampleIterator begin();
  virtual bool randomExample(TExample &);

  virtual int numberOfExamples();

  virtual TValue operator()(const TExample &);

protected:
  virtual void increaseIterator(TExampleIterator &);
  virtual bool sameIterators(const TExampleIterator &, const TExampleIterator &);
  virtual void deleteIterator(TExampleIterator &data);
  virtual void copyIterator(const TExampleIterator &src, TExampleIterator &dest);
};


/*  TClassifier generator that constructs examples by choosing random values of attributes and determining the
    class a TClassifier object. The number of examples can be infinite or limited */
class ORANGE_API TClassifierRandomGenerator : public TExampleGenerator {
public:
  __REGISTER_CLASS

  PClassifier classify; //P classifier
  int noOfEx; //P number of examples

  TClassifierRandomGenerator();
  TClassifierRandomGenerator(PDomain &, int =-1);
  TClassifierRandomGenerator(PDomain &, PClassifier &clsf, int =-1);

  virtual TExampleIterator begin();
  virtual bool randomExample(TExample &);

  virtual int numberOfExamples();

protected:
  virtual void increaseIterator(TExampleIterator &);
  virtual bool sameIterators(const TExampleIterator &, const TExampleIterator &);
  virtual void deleteIterator(TExampleIterator &data);
  virtual void copyIterator(const TExampleIterator &src, TExampleIterator &dest);
};

#endif

⌨️ 快捷键说明

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