简体   繁体   中英

How to use SVM trained on Weka for real time processing with python

I'm having trouble figuring out how to use a support vector machine trained on Weka for real time processing with python.

For example when you train a back propagation algorithm on Matlab, you can extract the weights and biases and use them to replicate the network on other programs (eg python) in feed-forward.

Thanks for your suggestions.

Assuming you want to continue using Python and Weka, the easiest way is to just call the Weka command line using subprocess (see https://docs.python.org/2/library/subprocess.html ). You can then train and save your models and use them as needed. See this reference: https://weka.wikispaces.com/Saving+and+loading+models

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM