WEKA运行参数修改(RunWeka.ini文件)

一般使用weka进行数据挖掘的时候会碰到两个问题,一是内存不够,二是libsvm使用不了,这时就需要重新配置RunWeka.ini文件,解决上述问题。查看RunWeka.ini原文如下:

 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.3 $
15
16 # setups (prefixed with "cmd_")
17 cmd_default=javaw -Dfile.encoding=#fileEncoding# -Xmx#maxheap# #javaOpts# -classpath "#wekajar#;#cp#" #mainclass#
18 cmd_console=cmd.exe /K start cmd.exe /K "java -Dfile.encoding=#fileEncoding# -Xmx#maxheap# #javaOpts# -classpath \"#wekajar#;#cp#\" #mainclass#"
19 cmd_explorer=java -Dfile.encoding=#fileEncoding# -Xmx#maxheap# #javaOpts# -classpath "#wekajar#;#cp#" weka.gui.explorer.Explorer
20 cmd_knowledgeFlow=java -Dfile.encoding=#fileEncoding# -Xmx#maxheap# #javaOpts# -classpath "#wekajar#;#cp#" weka.gui.beans.KnowledgeFlow
21
22 # placeholders ("#bla#" in command gets replaced with content of key "bla")
23 # Note: "#wekajar#" gets replaced by the launcher class, since that jar gets
24 #       provided as parameter
25 maxheap=1024M
26 # The MDI GUI
27 #mainclass=weka.gui.Main
28 # The GUIChooser
29 mainclass=weka.gui.GUIChooser
30 # The file encoding; use "utf-8" instead of "Cp1252" to display UTF-8 characters in the
31 # GUI, e.g., the Explorer
32 fileEncoding=Cp1252
33 # The JAVA_OPTS environment variable (if set). Can be used as an alternative way to set
34 # the heap size (or any other JVM option)
35 javaOpts=%JAVA_OPTS%
36 # The classpath placeholder. Add any environment variables or jars to it that
37 # you need for your Weka environment.
38 # Example with an enviroment variable (e.g., THIRD_PARTY_LIBS):
39 #   cp=%CLASSPATH%;%THIRD_PARTY_LIBS%
40 # Example with an extra jar (located at D:\libraries\libsvm.jar):
41 #   cp=%CLASSPATH%;D:\\\\libraries\\\\libsvm.jar
42 # Or in order to avoid quadrupled backslashes, you can also use slashes "/":
43 #   cp=%CLASSPATH%;D:/libraries/libsvm.jar
44 cp=%CLASSPATH%

其中maxheap选项为配置weka最大使用内存,默认为1024M;

  cp选项为引入包所在路径,从注释中的说明可以看到libsvm包的添加方法;

  其他如:mainclass,fileEncoding,javaOpts分别为图形用户界面,文件编码,Java虚拟机选项。

WEKA运行参数修改(RunWeka.ini文件)

时间: 2024-11-23 19:57:44

WEKA运行参数修改(RunWeka.ini文件)的相关文章

如何修改php.ini参数

修改php的配置项都是在php.ini中,在php,ini中的修改会影响所有使用php的程序.如果想通过其他方式修改参数,需要怎么做? 1.ini_set()         说明:string ini_set ( string $varname , string $newvalue ).设置指定配置选项的值.这个选项会在脚本运行时保持新的值,并在脚本结束时恢复.注意:并不是所有有效的选项都能够用ini_set()来改变的. 2.php_flag.php_value.php_admin_flag

php.ini文件中的include_path设置

下面以安装smarty为例: 下面内容中,我们都是假设你的文件放在了D:\Appserv\www\Smarty下. 1.找到你的php.ini配置文件修改php.ini的include_path选项,把smarty的库文件路径加上,比如: include_path = "D:\Appserv\www\Smarty\libs" 提醒一下,php.ini中一共有两处include_path,一处是Unix下使用的,一处是windows下使用的,要修改windows下使用的: -------

mysql 存储中文显示???,通过修改my.ini解决

1.查看数据库的当前编码 show variables like '%character%'; 很显然,编码需要改成utf8 2.确定启动服务时加载的配置文件  打开[服务] 找到[mysql]服务.选择[属性] 得到配置文件的路径:(以自己的为准) C:\ProgramData\MySQL\MySQL Server 5.7\my.ini 3.修改my.ini文件 [mysql] default-character-set=utf8 [mysqld] default-character-set=

Delphi 实现Ini文件参数与TEdit和TCheckBox绑定(TSimpleParam)

本例程在 Delphi XE8 版本下运行 Delphi群:59129236 把Delphi做为工作的辅助技能,走向幸福人生! 晓不得2013 QQ:26562729 SimpleParamDemo 功能: 把ini文件的参数与控件绑定起来,以达到方便使用的目的. 本例程共有2个单元 uSimpleParam->TSimpleParam;//本功能 uSimpleList->TSimpleList;用泛型实现的TList,更实用一点 源码下载:http://files.cnblogs.com/

Windows 64 位 mysql 5.7以上版本包解压中没有data目录和my-default.ini和my.ini文件以及服务无法启动的解决办法以及修改初始密码的方法

下载解压mysql文件之后,中间出现了一些问题,终于解决,希望能帮助到需要的朋友. mysql官网下载地址:https://dev.mysql.com/downloads/mysql/点击打开链接 以8.0.12版本为例 首先安装包解压后,没有网上教程里面提到的data文件夹和my-default.ini 配置环境变量请参照网上教程(https://www.cnblogs.com/jqpy1994/p/9553118.html),这个一般没有问题,即在环境变量中Path中加入MYSQL解压包bi

inno setup通过用户配置修改ini文件

很多写软件的人都知道,当打包好安装时,想让用户自己来配置一些ini文件的东西.那么具体步骤如下: 1.必须有让用户有配置的界面. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [code] var   mypage:TwizardPage;   lbDatabase:TLabel;   edDatabase:TEdit; //这个是全局变量,要保存的网址<br>  <a href="http://i.

MySQL修改最大连接数,没有my.ini文件,只有my-default,这怎么改呀?

# For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the # *** default location during install, and will be

windows xp中boot.ini文件修改后电脑异常的解决办法

做个记录:boot.ini文件千万不要乱改,改过之后可能出现系统启动失败,或者启动后异常如屏幕显示异常等等. 因为工作需要,尝试改了一下,只是在最后面加上了一个/3g选项提高虚拟内存的分配而已. 于是出现了后一种问题,网上搜索相关的问题后决定恢复Boot.ini文件试试,果然成功了. 下面是boot.ini文件的内容: [boot loader] timeout=2 default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS [operating sy

mb_detect_encoding() 运行sitemap.php 字符编码不能转换修改php.ini

1.phpinfo() 找php.ini位置 2.备份然后 php.ini文件中顶部添加extension=php_mbstring.dll Call to undefined function mb_detect_encoding() 错误 分类: PHP wordpress 2014-08-08 20:51 1122人阅读 评论(0) 收藏 举报 一.Fatal error: Call to undefined function: iconv() in C:\Program Files\Ap