All Downloads are FREE. Search and download functionalities are using the official Maven repository.

weka.datagenerators.classifiers.classification.BayesNet Maven / Gradle / Ivy

Go to download

The Waikato Environment for Knowledge Analysis (WEKA), a machine learning workbench. This version represents the developer version, the "bleeding edge" of development, you could say. New functionality gets added to this version.

There is a newer version: 3.9.6
Show newest version
/*
 *   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 3 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, see .
 */

/*
 * BayesNet.java
 * Copyright (C) 2005-2012,2015 University of Waikato, Hamilton, New Zealand
 *
 */

package weka.datagenerators.classifiers.classification;

import weka.classifiers.bayes.net.BayesNetGenerator;
import weka.core.Instance;
import weka.core.Instances;
import weka.core.Option;
import weka.core.RevisionUtils;
import weka.core.Utils;
import weka.datagenerators.ClassificationGenerator;

import java.util.Collections;
import java.util.Enumeration;
import java.util.Vector;

/**
 
 * Generates random instances based on a Bayes network.
 * 

* * Valid options are:

* *

 -h
 *  Prints this help.
* *
 -o <file>
 *  The name of the output file, otherwise the generated data is
 *  printed to stdout.
* *
 -r <name>
 *  The name of the relation.
* *
 -d
 *  Whether to print debug informations.
* *
 -S
 *  The seed for random function (default 1)
* *
 -n <num>
 *  The number of examples to generate (default 100)
* *
 -A <num>
 *  The number of arcs to use. (default 20)
* *
 -N <num>
 *  The number of attributes to generate. (default 10)
* *
 -C <num>
 *  The cardinality of the attributes and the class. (default 2)
* * * @author FracPete (fracpete at waikato dot ac dot nz) * @version $Revision: 11753 $ * @see BayesNetGenerator */ public class BayesNet extends ClassificationGenerator { /** for serialization */ static final long serialVersionUID = -796118162379901512L; /** the bayesian net generator, that produces the actual data */ protected BayesNetGenerator m_Generator; /** * initializes the generator */ public BayesNet() { super(); setNumAttributes(defaultNumAttributes()); setNumArcs(defaultNumArcs()); setCardinality(defaultCardinality()); } /** * Returns a string describing this data generator. * * @return a description of the data generator suitable for displaying in the * explorer/experimenter gui */ public String globalInfo() { return "Generates random instances based on a Bayes network."; } /** * Returns an enumeration describing the available options. * * @return an enumeration of all the available options */ @Override public Enumeration




© 2015 - 2024 Weber Informatics LLC | Privacy Policy