Fork me on GitHub
#data-science
<
2018-08-31
>
ben08:08:05

Has anyone come up against model persistence in clojure? I’m familiar with it in python/sklearn, but I’m wondering if the conventions & challenges are different when it comes to clojure

ben08:08:31

Model persistence as in “I have a fitted model that I want to save and put into production”

gigasquid13:08:47

What are you using to train and do inference? For Example MXNet saves the model in json format. There is also the ONNX project that has the goal to make an open source format for models https://github.com/onnx/onnx

alan09:08:05

@torvaney you might use ARFF or ProtoBuf for persistence. The issues are basically the same as for other languages, really no differences

ben09:08:02

Amazing, okay thanks 🙂