tflight graph created wrongly

后端 未结 1 1215
忘了有多久
忘了有多久 2021-01-27 23:45

I have the following frozen inference graph. This is for semantic segmentation using Deeplab (download graph here). I converting this graph to tflite format

tfli         


        
1条回答
  •  伪装坚强ぢ
    2021-01-28 00:16

    tflite_convert \
      --output_file=test2.lite \
      --graph_def_file=frozen_inference_graph_3mbvoc.pb \
      --input_arrays=sub_2 \
      --output_arrays=ResizeBilinear_2 \
      --input_shapes=1,450,600,3 \
      --inference_input_type=QUANTIZED_UINT8 \
      --inference_type=FLOAT \
      --mean_values=128 \
      --std_dev_values=128
    

    This solved my question

    0 讨论(0)
提交回复
热议问题