我正在使用EfficientNet
,我希望从代码中删除TensorFlow依赖项,为此,我希望自己创建preprocess_input
。
from tensorflow.keras.applications.efficientnet import preprocess_input
谁能告诉我如何在不使用TensorFlow的情况下编写efficientnet的preprocess_input
函数?
def preprocess_input():
......
return
到目前为止我找到了这个仓库。https://github.com/keras-team/keras-applications/blob/master/keras_applications/efficientnet.py但是我不能理解代码。
1条答案
按热度按时间64jmpszr1#
高效网络模型期望图像的像素范围为0到255,因此,如果图像的像素在该范围内,则无需对输入进行预处理