与主题中一样-keras中是否存在一个保存的模型(类似于https://keras.io/applications/),其输入不必为3通道图片?我知道我只能将两个通道留空,但这仍然会给性能造成沉重打击(如果我错了,请纠正我)。 例如,当我尝试MobiNet时,出现以下错误:
ValueError: The input must have 3 channels; got `input_shape=(63, 63, 1)`
我检查了类似的主题:
How to apply a pre-trained model of 3 channel images on single channel images?
Extending a Keras Pre-trained model to images with additional channels or bands
但是他们建议与其说是单通道架构,不如增加其他通道。
马克