You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/usr/bin/env python3importtensorflowastfimportnumpyasnp# Get modelmodel=tf.keras.applications.ResNet50()
# Random inputx=np.random.rand(1,224,224,3).astype(np.float32)
# Run onceresult=model(x)
# Savetf.saved_model.save(model, "./resnet/1/")