change the Model: given automatically by keras in model.summary() output

后端 未结 2 1919
灰色年华
灰色年华 2021-01-21 17:35

When calling the command:

print(model.summary())

I get the following output:

How can I rena

2条回答
  •  独厮守ぢ
    2021-01-21 18:11

    If you want to rename an already built model, it can be done like this:

    model.name = 'yourname'
    

提交回复
热议问题