Reputation: 53
I need to train a One Class SVM model for an anomaly detection task in Python, export it (for ex. using pickle or tfjs-converter) and require it into a NodeJS function just for predictions.
I have tried using TensorflowJS library but it only works for Tensorflow/Keras models (ie. Deep Learning models) while OC-SVM is only included in Python's Scikit-Learn library.
I have found npm packages for training a One-Class SVM before using it for predictions through node, but thats not what I need.
I desperately need to find a way to do this. Any ideas?
Upvotes: 0
Views: 330