Hello,
I am beginner in Tensorflow.
I have already try tensorflow.js, mobilnet.js et knn-classifier in webbrowser for object classification.
I understand that, after training, I have to save the model.
But how to save and load “classifier” ?
// Sample of classification off pictures (img)
var _classifier = knnClassifier.create();
var _net = await mobilenet.load();
// add sample with manual classification of picture with 'classId':
const activation = _net.infer( img, true);
_classifier.addExample( activation, classId);
// ... then process add sample several times....
// Save informations on disk
await _net.model.save('downloads://my-model');
// HOW to save classifier ?
....
// Retry with previous performances...
// renew model (or HOW to create new model without experience ?)
_net = await mobilenet.load();
await _net.model.load('downloads://my-model');
// how to LOAD classifier ? or HOW to UPDATE it from model ?
....
Best regards