RunWeka.ini
上传用户:wellsales
上传日期:2021-03-11
资源大小:10607k
文件大小:2k
源码类别:

工具条

开发平台:

Others

  1. # Contains the commands for running Weka either with a command prompt
  2. # ("cmd_console") or without the command prompt ("cmd_default").
  3. # One can also define custom commands, which can be used with the Weka
  4. # launcher "RunWeka.class". E.g., to run the launcher with a setup called
  5. # "custom1", you only need to specify a key "cmd_custom1" which contains the
  6. # command specification.
  7. #
  8. # Notes: 
  9. # - This file is not a DOS ini file, but a Java properties file.
  10. # - The settings listed here are key-value pairs, separated by a "=". Every
  11. #   key can only be listed ONCE.
  12. #
  13. # Author  FracPete (fracpete at waikato dot ac dot nz)
  14. # Version $Revision: 1.1.2.3 $
  15. # setups (prefixed with "cmd_")
  16. cmd_default=javaw -Xmx#maxheap# -classpath "#wekajar#;#cp#" #mainclass#
  17. cmd_console=cmd.exe /K start cmd.exe /K "java -Xmx#maxheap# -classpath "#wekajar#;#cp#" #mainclass#"
  18. cmd_explorer=javaw -Xmx#maxheap# -classpath "#wekajar#;#cp#" weka.gui.explorer.Explorer
  19. # placeholders ("#bla#" in command gets replaced with content of key "bla")
  20. # Note: "#wekajar#" gets replaced by the launcher class, since that jar gets
  21. #       provided as parameter
  22. maxheap=128m
  23. mainclass=weka.gui.GUIChooser
  24. # The classpath placeholder. Add any environment variables or jars to it that
  25. # you need for your Weka environment.
  26. # Example with an enviroment variable (e.g., THIRD_PARTY_LIBS):
  27. #   cp=%CLASSPATH%;%THIRD_PARTY_LIBS%
  28. # Example with an extra jar (located at D:librarieslibsvm.jar):
  29. #   cp=%CLASSPATH%;D:\\libraries\\libsvm.jar
  30. # Or in order to avoid quadrupled backslashes, you can also use slashes "/":
  31. #   cp=%CLASSPATH%;D:/libraries/libsvm.jar
  32. cp=%CLASSPATH%