- What is the serialization format used by the model definition file of SavedModel?
- What kind of file format does the Keras API export?
- Let's assume we want to convert the following model. Please describe the options for converting it using tfjs-converter:
- SavedModel
- The model tag is my_mobilenet1
- The output node name is y
- Write code to import a pretrained MobileNet into TensorFlow.js. The model is uploaded to TensorFlow Hub: https://tfhub.dev/google/imagenet/mobilenet_v2_100_224/classification/3.
- What is the recommended model size to import a model into web browsers in general? Do you think you can optimize the memory footprint of the SavedModel or Keras model?
- In order to achieve the best performance when loading the model via HTTP, how big should each shard of the weight variable file be in the web format?