Increase heap size in java for weka(在 Java 中为 weka 增加堆大小)
问题描述
我正在尝试为不断崩溃的 weka 增加 Java 中的堆大小.我使用了建议的行:
I'm trying to increase the heap size in java for weka which keeps crashing. I used the suggested line:
> java -Xmx500m -classpath
但我收到以下错误:
-classpath requires class path specification
我不确定这意味着什么.有什么建议吗?
I'm not sure what this means. Any suggestions?
推荐答案
我发现实际问题出在 'Program Files (x86)Weka-3-6'
.我用记事本打开它,文件中间有一行'maxheap = 512m'
.
What I found was the actual issue was in the file 'RunWeka.ini'
in 'Program Files (x86)Weka-3-6'
. I opened it with notepad and in the middle of the file there is a line 'maxheap = 512m'
.
我将行更改为读取 'maxheap=2000m'
,保存文件并重新加载 weka,这解决了我的问题.
I changed the line to read 'maxheap=2000m'
, saved the file and reloaded weka and this fixed my problems.
我不确定这是否是正确的做法,但它对我有用.
I'm not sure if this is the correct way to do it or not but it worked for me.
这篇关于在 Java 中为 weka 增加堆大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Java 中为 weka 增加堆大小
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01