Is there a way to know the arguments of the loaded layer?

I want to know the number of arguments in the picture (160, 16, 64 …)

Please help me.

You can access the internal attributes using the argument name, e.g. print(bn.num_features).

1 Like

Thank you for your kind reply.