Save TensorFlowJS MobileNet + KNN to TFLite
问题 I have trained a KNN on top of MobileNet logits results using TensorFlowJS. And I want to know how can I export the result of the MobileNet + KNN to a TFLite model. const knn = knnClassifier.create() const net = await mobilenet.load() const handleTrain = (imgEl, label) => { const image = tf.browser.fromPixels(imgEl); const activation = net.infer(image, true); knn.addExample(activation, label) } 回答1: 1. Save the model Save the model this example saves the file to the native file system or if