文字识别模型 ocr_recognition 变长输入出错
Created by: yeyupiaoling
ocr_recognition 模型:https://github.com/PaddlePaddle/models/tree/develop/PaddleCV/ocr_recognition
在最新的代码下,使用的是输入接口是:
images = fluid.data(name='pixel', shape=data_shape, dtype='float32')
label = fluid.data(name='label', shape=[None, 1], dtype='int32', lod_level=1)
该接口好像不支持变长输入,为什么不使用fluid.layers.data()
接口呢?