gpt4 book ai didi

opennlp - 使用 OpenNLP POSTagger 时配置文件数据流的格式无效

转载 作者:行者123 更新时间:2023-12-02 04:37:15 24 4
gpt4 key购买 nike

我收到无效格式异常。我看到有人建议从 en-pos-maxent.bin 文件中删除 tags.tagdict 文件,但我不知道该怎么做。谁能给我解释一下

    ava.io.FileInputStream inputStream2 = new java.io.FileInputStream("D://Documents/7090/opennlp-models/en-pos-maxent.bin");
POSModel pModel = new POSModel(inputStream2);
POSTaggerME posDetector = new POSTaggerME(pModel);

最佳答案

en_pos_maxent.bin 中不做任何更改的情况下尝试此代码

System.setProperty("org.xml.sax.driver", "org.xmlpull.v1.sax2.Driver");
try {
AssetFileDescriptor fileDescriptor =
context.getAssets().openFd("en_pos_maxent.bin");
FileInputStream inputStream = fileDescriptor.createInputStream();
POSModel posModel = new POSModel(inputStream);
posTaggerME = new POSTaggerME(posModel);
} catch (Exception e) {}

关于opennlp - 使用 OpenNLP POSTagger 时配置文件数据流的格式无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21719266/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com