Sequential Models

Creating a Model


Creating a new model is simple, once the tensor flow library has been loaded.


const model = tf.sequential();
				
Try it!

Contents