-1

I need to Load a pre-trained model into Keras without the Weight and bias. I also just want to use the Architecture of the model alone for my training.

Example: I want to load coco_mobilenet model pre-trained without Weights and bias.

Any suggestions would be appreciated.

vestland
  • 55,229
  • 37
  • 187
  • 305
MJ029
  • 151
  • 1
  • 12

1 Answers1

0
net=keras.applications.MobileNet(weight=None)
net.summary()

view keras mobilenet api for detail

王佳欣
  • 96
  • 4