Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 libsvm 训练了一个 svm 模型,该模型是一个已以二进制格式序列化的 java 对象。现在我想知道是否可以将模型序列化为文本格式,以便“更好地理解它”?是否可以从 java 对象中读取模型?
任何帮助,将不胜感激。贺拉斯
如果您使用方法svm.svm_save_model(String model_file_name, svm_model model)来保存模型,它将生成一个相对容易理解的文本文件,并且可以在其他编程语言的其他版本的 libsvm 中加载。