Given the following model, how to print all layers values ?
You could so something like
for(var i = 0; i < tf.layers.length; i++) model.predict(tf.layers[i].value).print(); // OR model.predict(tf.layers[i].inputs).print();
I don't know how is the structure of your array, but something like that could work.