Deploy ML model to Javascripts

1 · Sy Tran Dung · June 18, 2022, midnight
Deploy trained model using Octave or Tensorflow to JS application. The idea Link to heading When we train a model, the outcome is ussually the weights of hidden layers. All predictions will be calculated by inputs and the weights. -> train model with training set -> export model's weights -> load exported weights to JS -> normalize input data and predict Octave model to csv Link to heading Setup a model with tensorflow Link to heading Save weights Link to heading Save entire model Link to headin...