Created
July 25, 2024 11:09
-
-
Save tbvinh/a417ef1a06e26b5cbb7e065db508f4fa to your computer and use it in GitHub Desktop.
Save model 'universal-sentence-encoder' to disk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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