Package weka.core

Examples of weka.core.Option.description()


      log.error("\nOptions:\n");
      Enumeration<Option> en = kmb.listOptions();
      while (en.hasMoreElements()) {
        Option option = en.nextElement();
        log.error(option.synopsis());
        log.error(option.description());
      }
    }
  }
}
View Full Code Here


      System.err.println("\nOptions:\n");
      Enumeration<Option> en = modelBuilder.listOptions();
      while (en.hasMoreElements()) {
        Option option = (Option) en.nextElement();
        System.err.println(option.synopsis());
        System.err.println(option.description());
      }
    }
  }
}
View Full Code Here

      } catch (Exception e) {
  System.err.println("Options for weka.experiment.InstanceQuery:\n");
  Enumeration en = iq.listOptions();
  while (en.hasMoreElements()) {
    Option o = (Option)en.nextElement();
    System.err.println(o.synopsis()+"\n"+o.description());
  }
  System.exit(1);
      }
    
      Instances aha = iq.retrieveInstances();
View Full Code Here

    + ":\n\n");
      Enumeration enu = ((OptionHandler)classifier).listOptions();
      while (enu.hasMoreElements()) {
  Option option = (Option) enu.nextElement();
  optionsText.append(option.synopsis() + '\n');
  optionsText.append(option.description() + "\n");
      }
    }
   
    // Get global information (if available)
    if (globalInfo) {
View Full Code Here

      Enumeration enu = ((OptionHandler)clusterer).listOptions();

      while (enu.hasMoreElements()) {
  Option option = (Option)enu.nextElement();
  optionsText.append(option.synopsis() + '\n');
  optionsText.append(option.description() + "\n");
      }
    }
   
    // Get global information (if available)
    if (globalInfo) {
View Full Code Here

    while (enm.hasMoreElements()) {
      option = (Option) enm.nextElement();
      // skip option if on blacklist
      if (isOnBlacklist(option.name()))
        continue;
      result.append(option.synopsis() + "\n" + option.description() + "\n");
    }

    return result.toString();
  }
View Full Code Here

      result.append("\nOptions:\n\n");
      Enumeration enm = ((OptionHandler) loader).listOptions();
      while (enm.hasMoreElements()) {
  option = (Option) enm.nextElement();
  result.append(option.synopsis() + "\n");
  result.append(option.description() + "\n");
      }
    }
   
    return result.toString();
  }
View Full Code Here

  specificOptions += "\nEstimator options:\n\n";
  Enumeration enumOptions = ((OptionHandler)est).listOptions();
  while (enumOptions.hasMoreElements()) {
    Option option = (Option) enumOptions.nextElement();
    specificOptions += option.synopsis() + '\n'
      + option.description() + "\n";
  }
      }
     
      String genericOptions = "\nGeneral options:\n\n"
  + "-h\n"
View Full Code Here

        Enumeration enumi = listOptions();
       
        while (enumi.hasMoreElements()) {
          Option option = (Option)enumi.nextElement();
          text.append(option.synopsis()+'\n');
          text.append(option.description()+'\n');
        }
        System.out.println(text);
      }
    }
   
View Full Code Here

    result.append(" options:\n\n");
    Enumeration enm = saver.listOptions();
    while (enm.hasMoreElements()) {
      option = (Option) enm.nextElement();
      result.append(option.synopsis() + "\n");
      result.append(option.description() + "\n");
    }

    return result.toString();
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.