I saved a tensorflow model in a frozen PB file which is suitable to be used by TensorFlow Lite. This file can be loaded in Android and works well by following code:
import org.tensorflow.contrib.android.TensorFlowInferenceInterface; … TensorFlowInferenceInterface inferenceInterface; inferenceInterface = new TensorFlowInferenceInterface(context.getAssets(), "MODEL_FILE.pb");
Is there any way to load the frozen graph in Node.js?