无法打开 mallet logging.properties 文件

Couldn't open mallet logging.properties file

我尝试从 mallet 运行 ParallelTopicModel class,我正在使用 NetBeans 编译它,但是当我 运行 代码时,我得到这个错误声明:

Couldn't open cc.mallet.util.MalletLogger resources/logging.properties file. Perhaps the 'resources' directories weren't copied into the 'class' directory.

无论如何我都没有更改任何代码,仍然使用 class:

中的原始代码
public static void main (String[] args) {
    try {
        InstanceList training = InstanceList.load (new File(args[0]));

        int numTopics = args.length > 1 ? Integer.parseInt(args[1]) : 200;

        ParallelTopicModel lda = new ParallelTopicModel (numTopics, 50.0, 0.01);
        lda.printLogLikelihood = true;
        lda.setTopicDisplay(50, 7);
        lda.addInstances(training);

        lda.setNumThreads(Integer.parseInt(args[2]));
        lda.estimate();
        logger.info("printing state");
        lda.printState(new File("state.gz"));
        logger.info("finished printing");

    } catch (Exception e) {
        e.printStackTrace();
    }
}

我是 mallet 的新手,所以我不知道那是什么意思,我该如何解决?任何帮助将不胜感激。

Mallet 正在寻找 Java 属性 java.util.logging.config.file。如果没有找到,它会查找 resources/logging.properties 文件,如果没有找到,它会抛出您看到的错误。

默认的 Mallet 日志文件位于 https://github.com/mimno/Mallet/blob/master/src/cc/mallet/util/resources/logging.properties

您需要查阅 NetBeans 文档以了解如何设置 Java 属性。