Skip to content

Instantly share code, notes, and snippets.

@tbvinh
Created July 25, 2024 11:09
Show Gist options
  • Save tbvinh/a417ef1a06e26b5cbb7e065db508f4fa to your computer and use it in GitHub Desktop.
Save tbvinh/a417ef1a06e26b5cbb7e065db508f4fa to your computer and use it in GitHub Desktop.
Save model 'universal-sentence-encoder' to disk
import tensorflow as tf
import tensorflow_hub as hub
# Check if the Universal Sentence Encoder can be loaded from the provided link
model_url = "https://tfhub.dev/google/universal-sentence-encoder/4"
try:
model = hub.load(model_url)
# model.save('universal-sentence-encoder.model')
tf.saved_model.save(model, 'universal-sentence-encoder.model')
print("Model loaded successfully.")
except Exception as e:
print(f"Error loading model: {e}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment