Аргументы stack_fn и last_point_ch в Keras - PullRequest
0 голосов
/ 05 мая 2020

Я пытался использовать MobileNetV3, который можно найти только в keras_applications

mobile = keras_applications.mobilenet_v3.MobileNetV3(include_top=Top,backend=k.backend ,
                                                     layers = keras.layers, 
                                                     models = k.models, utils = keras.utils,
                                                       pooling='avg', weights=weights)


TypeError: MobileNetV3() missing 2 required positional arguments: 'stack_fn' and 'last_point_ch'

Мне интересно, что такое функция stack_fn и last_point_ch, извините, я новый

...