Keras rename model and layers

前端 未结 8 870
情话喂你
情话喂你 2020-12-31 00:46

1) I try to rename a model and the layers in Keras with TF backend, since I am using multiple models in one script. Class Model seem to have the property model.name, but whe

8条回答
  •  被撕碎了的回忆
    2020-12-31 01:24

    To change only one layer name in a model you can use the following lines:

    my_model.layers[0]._name = 'my_new_name_for_the_first_layer'
    my_model.layers[1]._name = 'my_new_name_for_the_second_layer'
    my_model.layers[-1]._name = 'my_new_name_for_the_last_layer'
    

提交回复
热议问题