You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can i load a Maxent classifier stored using "save" ?
const classifier = new MaxEntClassifier(featureSet, sample);
classifier.save(, function(err, classifier) {})
do i have to instantiate a classifier again to load with "new" ?
I don't see a static function available on MaxEntClassifier.
I am loading from a different file in a different process, so don't have access to the previous instance of classifier.
I am looking for something similar to the 1 below for log. regression
require('natural').LogisticRegressionClassifier.load(,
null,
function(err, classifier) {})
The text was updated successfully, but these errors were encountered:
How can i load a Maxent classifier stored using "save" ?
const classifier = new MaxEntClassifier(featureSet, sample);
classifier.save(, function(err, classifier) {})
do i have to instantiate a classifier again to load with "new" ?
I don't see a static function available on MaxEntClassifier.
I am loading from a different file in a different process, so don't have access to the previous instance of classifier.
I am looking for something similar to the 1 below for log. regression
require('natural').LogisticRegressionClassifier.load(,
null,
function(err, classifier) {})
The text was updated successfully, but these errors were encountered: