TensorFlow 的 EfficientNet preprocess_input()?



我使用的是EfficientNet,我想从我的代码中删除TensorFlow依赖项,为此,我想自己制作preprocess_input

from tensorflow.keras.applications.efficientnet import preprocess_input

谁能告诉我如何写preprocess_input函数的效率不使用TensorFlow?

def preprocess_input():
......
return 

到目前为止我找到了这个存储库。https://github.com/keras-team/keras-applications/blob/master/keras_applications/efficientnet.py但是我看不懂代码。

高效的网络模型期望图像的像素范围在0到255之间,因此如果图像的像素在该范围内,则不需要预处理输入

相关内容

  • 没有找到相关文章

最新更新