Last active
July 13, 2020 04:32
-
-
Save margaretmz/22a00660ef3acdeba479b19c24957557 to your computer and use it in GitHub Desktop.
selfie2anime-tflite-conversion
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
converter = tf.lite.TFLiteConverter.from_concrete_functions([concrete_func]) | |
converter.optimizations = [tf.lite.Optimize.OPTIMIZE_FOR_SIZE] | |
tflite_model = converter.convert() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment