HyperEfficientNet
类keras_tuner.applications.HyperEfficientNet(
input_shape=None, input_tensor=None, classes=None, augmentation_model=None, **kwargs
)
一个 EfficientNet 超模型。
由 HyperEfficientNet
生成的模型以形状为 (高度,宽度,通道) 的图像作为输入。输出是独热编码的,其长度与由 classes
参数指定类的数量匹配。
参数
(256, 256, 3)
。必须指定 input_shape
或 input_tensor
之一。layers.Input()
的输出),用作模型的图像输入。必须指定 input_shape
或 input_tensor
之一。include_top
为 True 且未指定 weights
参数时才指定。Model
或 HyperModel
实例,用于图像增强。keras_tuner.HyperModel
。