我正在尝试使用 Stanford CoreNLP 库,并且我想序列化主要的 StanfordCoreNLP 管道对象,即使它抛出了 java.io.NotSerializableException。
全文:每当我运行我的实现时,将管道注释器和分类器加载到内存中大约需要 15 秒。最终进程在内存中大约有 600MB(很容易小到可以存储在我的案例中)。我想在第一次创建它之后保存这个管道,所以我可以稍后将它读入内存。
但是它会引发 NotSerializableException。我尝试制作一个实现 Serializable 的简单子类,但 StanfordCoreNLP 具有未实现此接口的注释器和分类器属性,并且我无法为所有它们创建子类。
是否有任何 Java 库可以序列化不实现 Serializable 的对象?我想它必须通过它的属性递归并对任何类似的对象做同样的事情。
我试过的序列化代码:
static StanfordCoreNLP pipeline;
static String file = "/Users/ME/Desktop/pipeline.sav";
static StanfordCoreNLP pipeline() {
if (pipeline == null) {
try {
FileInputStream saveFile = new FileInputStream(file);
ObjectInputStream read = new ObjectInputStream(saveFile);
pipeline = (StanfordCoreNLP) read.readObject();
System.out.println("Pipeline loaded from file.");
read.close();
} catch (FileNotFoundException e) {
System.out.println("Cached pipeline not found. Creating new pipeline...");
Properties props = new Properties();
props.put("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref");
pipeline = new StanfordCoreNLP(props);
savePipeline(pipeline);
} catch (IOException e) {
System.err.println(e.getLocalizedMessage());
} catch (Exception e) {
System.err.println(e.getLocalizedMessage());
}
}
return pipeline;
}
static void savePipeline(StanfordCoreNLP pipeline) {
try {
FileOutputStream saveFile = new FileOutputStream(file);
ObjectOutputStream save = new ObjectOutputStream(saveFile);
save.writeObject(pipeline);
System.out.println("Pipeline saved to file.");
save.close();
} catch (FileNotFoundException e) {
System.out.println("Pipeline file not found during save.");
} catch (IOException e) {
System.err.println(e.getLocalizedMessage());
}
}