![JAR search and dependency download from the Maven repository](/logo.png)
meka.doc.AbstractOutputClassHierarchy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meka Show documentation
Show all versions of meka Show documentation
The MEKA project provides an open source implementation of methods for multi-label classification and evaluation. It is based on the WEKA Machine Learning Toolkit. Several benchmark methods are also included, as well as the pruned sets and classifier chains methods, other methods from the scientific literature, and a wrapper to the MULAN framework.
The 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 .
*/
/*
* OutputClassHierarchyMarkdown.java
* Copyright (C) 2018 University of Waikato, Hamilton, NZ
*/
package meka.doc;
import meka.classifiers.multilabel.MultiLabelClassifier;
import meka.gui.goe.GenericObjectEditor;
import weka.core.Option;
import weka.core.OptionHandler;
import weka.core.PluginManager;
import weka.core.Utils;
import weka.core.WekaPackageClassLoaderManager;
import java.io.File;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.Vector;
/**
* Ancestor for outputting documentation for class hierarchies in files.
*
* @author FracPete (fracpete at waikato dot ac dot nz)
*/
public abstract class AbstractOutputClassHierarchy
implements Serializable, OptionHandler {
private static final long serialVersionUID = -1269488196227028742L;
/** whether to output debugging information. */
protected boolean m_Debug = false;
/** the superclass. */
protected String m_Superclass = getDefaultSuperclass();
/** the output directory. */
protected File m_OutputDir = getDefaultOutputDir();
/**
* Returns an enumeration describing the available options.
*
* @return an enumeration of all the available options.
*/
@Override
public Enumeration
© 2015 - 2025 Weber Informatics LLC | Privacy Policy