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
{{ message }}
This repository has been archived by the owner on May 5, 2020. It is now read-only.
in tflite,when excute import tensorflow as tf converter = tf.lite.TocoConverter.from_saved_model(saved_model_dir) converter.post_training_quantize = True tflite_quantized_model = converter.convert() open("quantized_model.tflite", "wb").write(tflite_quantized_model)
i can get a 8bit model and then i can move is to mobile devices.
is there any docs about caffe2 like this?i can't find any example or tutorial about quant a model and excute on mobile devices.
what's more, how caffe2 and pytorch support 8bit ops ?
The text was updated successfully, but these errors were encountered:
in tflite,when excute
import tensorflow as tf converter = tf.lite.TocoConverter.from_saved_model(saved_model_dir) converter.post_training_quantize = True tflite_quantized_model = converter.convert() open("quantized_model.tflite", "wb").write(tflite_quantized_model)
i can get a 8bit model and then i can move is to mobile devices.
is there any docs about caffe2 like this?i can't find any example or tutorial about quant a model and excute on mobile devices.
what's more, how caffe2 and pytorch support 8bit ops ?
The text was updated successfully, but these errors were encountered: