当前位置:主页 > 软件编程 > Python代码 >

PyTorch和Keras计算模型参数的例子

时间:2022-02-22 10:57:46 | 栏目:Python代码 | 点击:

Pytorch中,变量参数,用numel得到参数数目,累加

def get_parameter_number(net):
  total_num = sum(p.numel() for p in net.parameters())
  trainable_num = sum(p.numel() for p in net.parameters() if p.requires_grad)
  return {'Total': total_num, 'Trainable': trainable_num}

Keras中,直接使用model的summary函数

model = k_model()
model.summary() 

您可能感兴趣的文章:

相关文章