Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Narsil
/
pet-segmentation
like
9
Image Segmentation
google-tensorflow
TensorFlow
generic
License:
apache-2.0
Model card
Files
Files and versions
Community
2
be719e5
pet-segmentation
/
utils
/
h5_to_saved_pb.py
kongkip
added saved_model to allow loading from with huggingface hub pretrained models
be719e5
about 2 years ago
raw
Copy download link
history
blame
Safe
108 Bytes
import
tensorflow
as
tf
model = tf.keras.models.load_model(
"tf_model.h5"
)
tf.saved_model.save(model,
""
)