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

工具条

开发平台:

Others

  1. @echo off
  2. REM Batch file for executing the RunWeka launcher class.
  3. REM   RunWeka.bat <command>
  4. REM Run with option "-h" to see available commands
  5. REM
  6. REM Notes: 
  7. REM - If you're getting an OutOfMemory Exception, increase the value of
  8. REM   "maxheap" in the RunWeka.ini file.
  9. REM - If you need more jars available in Weka, either include them in your
  10. REM   %CLASSPATH% environment variable or add them to the "cp" placeholder
  11. REM   in the RunWeka.ini file.
  12. REM
  13. REM Author:  FracPete (fracpete at waikato dot ac dot nz)
  14. REM Version: $Revision: 1.1.2.4 $
  15. set _cmd=%1
  16. set _java=javaw
  17. if "%_cmd%"=="" set _cmd=default
  18. if "%_cmd%"=="-h" set _java=java
  19. %_java% -classpath . RunWeka -i .RunWeka.ini -w .weka.jar -c %_cmd% "%2"