xieshenru
xieshenru
> C:\Users\\AppData\Local\Continuum\miniconda3 I cannot do "from pylibfreenect2 import Freenect2", where is miniconda3 path"C:\Users\\AppData\Local\Continuum\miniconda3"?I cannot find it.@jmarkow
When runing the line of converting to tflite in train.py,"the error of "ValueError: This converter can only convert a single ConcreteFunction. Converting multiple functions is under development"appears,I can't convert to...
wen I use "tf.keras.models.save_model(model=model, filepath=cfg.H5_MODEL_PATH, save_format='h5') to save model, the error of "NotImplementedError: Saving the model to HDF5 format requires the model to be a Functional model or a Sequential...
I used those codes to convert ShuffleNetV2 and mobilenetV2 model for Classification problem,use the code of train.py ,I can't convert to tflit.Here is the code used in your "train.py" tf.saved_model.save(model,...
@calmisential @yeyupiaoling Thanks for your help! I can try to use the following code from you to convert to lite . converter = tf.lite.TFLiteConverter.from_keras_model(model) tflite_model = converter.convert() open(TFLite_model_dir, "wb").write(tflite_model) but...
thank you for your help!