使用preprocess_input和decode_predictions分别需要调用什么库的什么函数
时间: 2024-05-21 15:12:48 浏览: 192
speex_preprocess.rar_Never Never
使用 preprocess_input 需要调用 keras.applications 中的对应模型的预处理函数,例如对于 ResNet50 模型,需要使用 preprocess_input 函数,调用方式为 from keras.applications.resnet50 import preprocess_input。
使用 decode_predictions 需要调用 keras.applications 中的对应模型的解码函数,例如对于 ResNet50 模型,需要使用 decode_predictions 函数,调用方式为 from keras.applications.resnet50 import decode_predictions。
阅读全文