- What is the benefit of building a machine learning model on the web?
- When we give the TensorHub model to tfjs-converter, what type of format will be generated?
- Layers model
- Graph model
- How many ways can we release the memory that's been allocated to a tensor in a model in TensorFlow.js?
- How can we inspect the structure of the model?
- Describe the major difference between the Core API and the Layers API. When should we use them?
- Construct a multilayer perceptron with the following layers:
- The input is a vector with 784 elements.
- The first intermediate layer is a fully connected layer whose output is a rectified linear unit and has a size of 32.
- The second intermediate layer is a fully connected layer whose output is a rectified linear unit and has a size of 16.
- The output is a softmax layer.
- Is it possible to save a model that contains a custom layer?





















































