Step 2

To enable use of the wGmdh classes from Weka gui:

  • edit GUIEditors.props and add entry:

# wGmdh components
wGmdh.jGmdh.oldskul.measures.Measure=weka.gui.GenericObjectEditor
wGmdh.jGmdh.oldskul.NodeFilter=weka.gui.GenericObjectEditor
wGmdh.jGmdh.util.supervised.DatasetSupervised=weka.gui.GenericObjectEditor

  • edit GenericObjectEditor.props (or GenericPropertiesCreator.props):
    • enter under weka.classifiers.Classifier=\
    wGmdh.AdditiveMsc,\
    wGmdh.Msc,\
    wGmdh.GmdhDepthSearch
    • add the entry (e.g. at the end of file)
    # wGmdh related
    wGmdh.jGmdh.oldskul.measures.Measure=\
     wGmdh.jGmdh.oldskul.measures.Sse,\
     wGmdh.jGmdh.oldskul.measures.Rrse,\
     wGmdh.jGmdh.oldskul.measures.CompoundError,\
     wGmdh.jGmdh.oldskul.measures.Omitted
    wGmdh.jGmdh.oldskul.NodeFilter=\
     wGmdh.jGmdh.oldskul.SlidingFilter
    wGmdh.jGmdh.util.supervised.DatasetSupervised=\
     wGmdh.jGmdh.util.supervised.CvHandler,\
     wGmdh.jGmdh.util.supervised.PercentageSplitHandler

For more general information on adding third-party modules to Weka, follow http://weka.wikispaces.com/GenericObjectEditor+(developer+version)